diff --git a/grammar.js b/grammar.js index b9baadf9..f03417f8 100644 --- a/grammar.js +++ b/grammar.js @@ -832,13 +832,10 @@ module.exports = grammar({ field('type_arguments', $.type_arguments), ), - bounded_type: $ => prec.left(-1, choice( - seq($.lifetime, '+', $._type), - seq($._type, '+', $._type), - seq($._type, '+', choice( - $.lifetime, - $.use_bounds, - )), + bounded_type: $ => prec.left(-1, seq( + choice($.lifetime, $._type, $.use_bounds), + '+', + choice($.lifetime, $._type, $.use_bounds), )), use_bounds: $ => seq( @@ -896,14 +893,15 @@ module.exports = grammar({ abstract_type: $ => seq( 'impl', optional(seq('for', $.type_parameters)), - field('trait', choice( + field('trait', prec(1, choice( $._type_identifier, $.scoped_type_identifier, $.removed_trait_bound, $.generic_type, $.function_type, $.tuple_type, - )), + $.bounded_type, + ))), ), dynamic_type: $ => seq( diff --git a/src/grammar.json b/src/grammar.json index 29be325f..53e0fd72 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4685,65 +4685,43 @@ "type": "PREC_LEFT", "value": -1, "content": { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "CHOICE", "members": [ { "type": "SYMBOL", "name": "lifetime" }, - { - "type": "STRING", - "value": "+" - }, { "type": "SYMBOL", "name": "_type" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "STRING", - "value": "+" }, { "type": "SYMBOL", - "name": "_type" + "name": "use_bounds" } ] }, { - "type": "SEQ", + "type": "STRING", + "value": "+" + }, + { + "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_type" + "name": "lifetime" }, { - "type": "STRING", - "value": "+" + "type": "SYMBOL", + "name": "_type" }, { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "lifetime" - }, - { - "type": "SYMBOL", - "name": "use_bounds" - } - ] + "type": "SYMBOL", + "name": "use_bounds" } ] } @@ -5118,33 +5096,41 @@ "type": "FIELD", "name": "trait", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_identifier" - }, - { - "type": "SYMBOL", - "name": "scoped_type_identifier" - }, - { - "type": "SYMBOL", - "name": "removed_trait_bound" - }, - { - "type": "SYMBOL", - "name": "generic_type" - }, - { - "type": "SYMBOL", - "name": "function_type" - }, - { - "type": "SYMBOL", - "name": "tuple_type" - } - ] + "type": "PREC", + "value": 1, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "scoped_type_identifier" + }, + { + "type": "SYMBOL", + "name": "removed_trait_bound" + }, + { + "type": "SYMBOL", + "name": "generic_type" + }, + { + "type": "SYMBOL", + "name": "function_type" + }, + { + "type": "SYMBOL", + "name": "tuple_type" + }, + { + "type": "SYMBOL", + "name": "bounded_type" + } + ] + } } } ] diff --git a/src/node-types.json b/src/node-types.json index b4492a1e..0ef0838c 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -479,6 +479,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "bounded_type", + "named": true + }, { "type": "function_type", "named": true diff --git a/src/parser.c b/src/parser.c index dc4632d7..ba87a65c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,8 +7,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3747 -#define LARGE_STATE_COUNT 1034 +#define STATE_COUNT 3785 +#define LARGE_STATE_COUNT 1054 #define SYMBOL_COUNT 349 #define ALIAS_COUNT 4 #define TOKEN_COUNT 155 @@ -2685,146 +2685,146 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [110] = {.index = 122, .length = 2}, [111] = {.index = 124, .length = 1}, [112] = {.index = 124, .length = 1}, - [113] = {.index = 125, .length = 3}, - [114] = {.index = 128, .length = 1}, - [115] = {.index = 125, .length = 3}, - [116] = {.index = 18, .length = 1}, - [117] = {.index = 129, .length = 2}, - [118] = {.index = 131, .length = 2}, + [114] = {.index = 125, .length = 3}, + [115] = {.index = 128, .length = 1}, + [116] = {.index = 125, .length = 3}, + [117] = {.index = 18, .length = 1}, + [118] = {.index = 129, .length = 2}, [119] = {.index = 131, .length = 2}, - [120] = {.index = 133, .length = 3}, - [121] = {.index = 136, .length = 3}, - [122] = {.index = 139, .length = 4}, - [123] = {.index = 143, .length = 3}, - [124] = {.index = 146, .length = 3}, - [125] = {.index = 149, .length = 2}, - [126] = {.index = 151, .length = 2}, - [127] = {.index = 153, .length = 2}, - [128] = {.index = 155, .length = 3}, - [129] = {.index = 158, .length = 3}, - [130] = {.index = 153, .length = 2}, - [131] = {.index = 155, .length = 3}, - [132] = {.index = 161, .length = 2}, - [134] = {.index = 163, .length = 3}, - [135] = {.index = 166, .length = 3}, - [136] = {.index = 169, .length = 4}, - [137] = {.index = 129, .length = 2}, - [138] = {.index = 173, .length = 3}, - [139] = {.index = 176, .length = 2}, - [140] = {.index = 178, .length = 3}, - [141] = {.index = 181, .length = 2}, - [142] = {.index = 183, .length = 2}, - [143] = {.index = 185, .length = 3}, - [144] = {.index = 188, .length = 3}, - [145] = {.index = 191, .length = 2}, + [120] = {.index = 131, .length = 2}, + [121] = {.index = 133, .length = 3}, + [122] = {.index = 136, .length = 3}, + [123] = {.index = 139, .length = 4}, + [124] = {.index = 143, .length = 3}, + [125] = {.index = 146, .length = 3}, + [126] = {.index = 149, .length = 2}, + [127] = {.index = 151, .length = 2}, + [128] = {.index = 153, .length = 2}, + [129] = {.index = 155, .length = 3}, + [130] = {.index = 158, .length = 3}, + [131] = {.index = 153, .length = 2}, + [132] = {.index = 155, .length = 3}, + [133] = {.index = 161, .length = 2}, + [135] = {.index = 163, .length = 3}, + [136] = {.index = 166, .length = 3}, + [137] = {.index = 169, .length = 4}, + [138] = {.index = 129, .length = 2}, + [139] = {.index = 173, .length = 3}, + [140] = {.index = 176, .length = 2}, + [141] = {.index = 178, .length = 3}, + [142] = {.index = 181, .length = 2}, + [143] = {.index = 183, .length = 2}, + [144] = {.index = 185, .length = 3}, + [145] = {.index = 188, .length = 3}, [146] = {.index = 191, .length = 2}, - [147] = {.index = 193, .length = 2}, - [148] = {.index = 195, .length = 3}, - [149] = {.index = 198, .length = 2}, - [150] = {.index = 200, .length = 2}, - [151] = {.index = 202, .length = 1}, - [152] = {.index = 203, .length = 2}, - [153] = {.index = 205, .length = 1}, - [154] = {.index = 206, .length = 2}, - [155] = {.index = 112, .length = 1}, - [156] = {.index = 208, .length = 2}, - [157] = {.index = 210, .length = 2}, - [158] = {.index = 212, .length = 1}, - [159] = {.index = 213, .length = 2}, - [160] = {.index = 215, .length = 3}, - [161] = {.index = 215, .length = 3}, - [162] = {.index = 218, .length = 2}, - [163] = {.index = 220, .length = 4}, - [164] = {.index = 224, .length = 3}, - [165] = {.index = 227, .length = 4}, - [166] = {.index = 231, .length = 2}, - [167] = {.index = 233, .length = 3}, + [147] = {.index = 191, .length = 2}, + [148] = {.index = 193, .length = 2}, + [149] = {.index = 195, .length = 3}, + [150] = {.index = 198, .length = 2}, + [151] = {.index = 200, .length = 2}, + [152] = {.index = 202, .length = 1}, + [153] = {.index = 203, .length = 2}, + [154] = {.index = 205, .length = 1}, + [155] = {.index = 206, .length = 2}, + [156] = {.index = 112, .length = 1}, + [157] = {.index = 208, .length = 2}, + [158] = {.index = 210, .length = 2}, + [159] = {.index = 212, .length = 1}, + [161] = {.index = 213, .length = 2}, + [162] = {.index = 215, .length = 3}, + [163] = {.index = 215, .length = 3}, + [164] = {.index = 218, .length = 2}, + [165] = {.index = 220, .length = 4}, + [166] = {.index = 224, .length = 3}, + [167] = {.index = 227, .length = 4}, [168] = {.index = 231, .length = 2}, [169] = {.index = 233, .length = 3}, - [170] = {.index = 236, .length = 3}, - [171] = {.index = 239, .length = 3}, - [172] = {.index = 242, .length = 3}, - [173] = {.index = 245, .length = 4}, + [170] = {.index = 231, .length = 2}, + [171] = {.index = 233, .length = 3}, + [172] = {.index = 236, .length = 3}, + [173] = {.index = 239, .length = 3}, [174] = {.index = 242, .length = 3}, [175] = {.index = 245, .length = 4}, - [176] = {.index = 239, .length = 3}, - [177] = {.index = 249, .length = 2}, - [178] = {.index = 251, .length = 2}, - [179] = {.index = 253, .length = 2}, - [180] = {.index = 255, .length = 2}, - [181] = {.index = 257, .length = 1}, - [182] = {.index = 258, .length = 2}, - [183] = {.index = 260, .length = 3}, - [184] = {.index = 263, .length = 2}, - [185] = {.index = 265, .length = 2}, - [186] = {.index = 206, .length = 2}, - [187] = {.index = 267, .length = 4}, - [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 = 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}, + [176] = {.index = 242, .length = 3}, + [177] = {.index = 245, .length = 4}, + [178] = {.index = 239, .length = 3}, + [179] = {.index = 249, .length = 2}, + [180] = {.index = 251, .length = 2}, + [181] = {.index = 253, .length = 2}, + [182] = {.index = 255, .length = 2}, + [183] = {.index = 257, .length = 1}, + [184] = {.index = 258, .length = 2}, + [185] = {.index = 260, .length = 3}, + [186] = {.index = 263, .length = 2}, + [187] = {.index = 265, .length = 2}, + [188] = {.index = 206, .length = 2}, + [189] = {.index = 267, .length = 4}, + [190] = {.index = 271, .length = 2}, + [191] = {.index = 273, .length = 3}, + [192] = {.index = 276, .length = 3}, + [193] = {.index = 279, .length = 3}, + [194] = {.index = 282, .length = 3}, + [195] = {.index = 285, .length = 4}, + [196] = {.index = 289, .length = 2}, + [197] = {.index = 291, .length = 2}, + [198] = {.index = 291, .length = 2}, + [199] = {.index = 293, .length = 3}, + [200] = {.index = 296, .length = 4}, + [201] = {.index = 300, .length = 3}, + [202] = {.index = 258, .length = 2}, + [203] = {.index = 303, .length = 2}, + [204] = {.index = 305, .length = 3}, + [205] = {.index = 308, .length = 3}, + [206] = {.index = 311, .length = 2}, + [207] = {.index = 313, .length = 3}, + [208] = {.index = 206, .length = 2}, + [209] = {.index = 316, .length = 3}, + [210] = {.index = 319, .length = 2}, + [211] = {.index = 321, .length = 2}, + [212] = {.index = 323, .length = 3}, + [213] = {.index = 326, .length = 3}, + [214] = {.index = 329, .length = 2}, + [215] = {.index = 331, .length = 4}, + [216] = {.index = 335, .length = 5}, + [217] = {.index = 340, .length = 4}, [218] = {.index = 344, .length = 3}, - [219] = {.index = 347, .length = 3}, - [220] = {.index = 350, .length = 4}, - [221] = {.index = 347, .length = 3}, - [222] = {.index = 350, .length = 4}, - [223] = {.index = 354, .length = 4}, + [219] = {.index = 344, .length = 3}, + [220] = {.index = 347, .length = 3}, + [221] = {.index = 350, .length = 4}, + [222] = {.index = 347, .length = 3}, + [223] = {.index = 350, .length = 4}, [224] = {.index = 354, .length = 4}, - [225] = {.index = 358, .length = 3}, - [226] = {.index = 361, .length = 3}, - [227] = {.index = 364, .length = 3}, - [228] = {.index = 367, .length = 2}, - [229] = {.index = 369, .length = 2}, - [230] = {.index = 129, .length = 2}, - [231] = {.index = 371, .length = 3}, - [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}, + [225] = {.index = 354, .length = 4}, + [226] = {.index = 358, .length = 3}, + [227] = {.index = 361, .length = 3}, + [228] = {.index = 364, .length = 3}, + [229] = {.index = 367, .length = 2}, + [230] = {.index = 369, .length = 2}, + [231] = {.index = 129, .length = 2}, + [232] = {.index = 371, .length = 3}, + [233] = {.index = 374, .length = 2}, + [234] = {.index = 376, .length = 3}, + [235] = {.index = 374, .length = 2}, + [236] = {.index = 376, .length = 3}, + [237] = {.index = 379, .length = 3}, + [238] = {.index = 382, .length = 4}, + [239] = {.index = 379, .length = 3}, + [240] = {.index = 382, .length = 4}, + [241] = {.index = 386, .length = 4}, + [242] = {.index = 390, .length = 4}, + [243] = {.index = 394, .length = 3}, + [244] = {.index = 397, .length = 4}, + [245] = {.index = 401, .length = 2}, + [246] = {.index = 403, .length = 3}, + [247] = {.index = 406, .length = 3}, + [248] = {.index = 409, .length = 3}, + [249] = {.index = 412, .length = 4}, + [250] = {.index = 416, .length = 2}, + [251] = {.index = 418, .length = 3}, + [252] = {.index = 421, .length = 4}, + [253] = {.index = 425, .length = 3}, + [254] = {.index = 428, .length = 3}, + [255] = {.index = 431, .length = 2}, [256] = {.index = 433, .length = 3}, [257] = {.index = 436, .length = 5}, [258] = {.index = 441, .length = 4}, @@ -3767,32 +3767,32 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [3] = alias_sym_type_identifier, }, [113] = { + [2] = alias_sym_type_identifier, + }, + [114] = { [0] = alias_sym_type_identifier, }, - [116] = { + [117] = { [0] = sym_identifier, }, - [119] = { + [120] = { [0] = alias_sym_type_identifier, }, - [120] = { + [121] = { [1] = alias_sym_type_identifier, }, - [126] = { + [127] = { [0] = alias_sym_type_identifier, }, - [127] = { + [128] = { [1] = alias_sym_type_identifier, }, - [128] = { + [129] = { [1] = alias_sym_type_identifier, }, - [133] = { + [134] = { [3] = sym_identifier, }, - [135] = { - [1] = alias_sym_type_identifier, - }, [136] = { [1] = alias_sym_type_identifier, }, @@ -3802,8 +3802,8 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [138] = { [1] = alias_sym_type_identifier, }, - [142] = { - [2] = alias_sym_type_identifier, + [139] = { + [1] = alias_sym_type_identifier, }, [143] = { [2] = alias_sym_type_identifier, @@ -3811,131 +3811,131 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [144] = { [2] = alias_sym_type_identifier, }, - [146] = { + [145] = { + [2] = alias_sym_type_identifier, + }, + [147] = { [0] = alias_sym_field_identifier, }, - [149] = { + [150] = { [2] = alias_sym_type_identifier, }, - [150] = { + [151] = { [3] = alias_sym_type_identifier, }, - [154] = { + [155] = { [0] = alias_sym_type_identifier, }, - [155] = { + [156] = { [2] = alias_sym_shorthand_field_identifier, }, - [156] = { + [157] = { [0] = alias_sym_field_identifier, }, [160] = { [1] = alias_sym_type_identifier, }, - [166] = { + [162] = { + [1] = alias_sym_type_identifier, + }, + [168] = { [2] = alias_sym_type_identifier, }, - [167] = { + [169] = { [2] = alias_sym_type_identifier, }, - [170] = { + [172] = { [0] = alias_sym_type_identifier, }, - [171] = { + [173] = { [1] = alias_sym_type_identifier, }, - [172] = { + [174] = { [2] = alias_sym_type_identifier, }, - [173] = { + [175] = { [2] = alias_sym_type_identifier, }, - [186] = { + [188] = { [0] = alias_sym_field_identifier, }, - [187] = { + [189] = { [1] = alias_sym_type_identifier, }, - [188] = { + [190] = { [1] = alias_sym_type_identifier, }, - [189] = { + [191] = { [1] = alias_sym_type_identifier, }, - [191] = { + [193] = { [2] = alias_sym_type_identifier, }, - [192] = { + [194] = { [2] = alias_sym_type_identifier, }, - [193] = { + [195] = { [2] = alias_sym_type_identifier, }, - [196] = { + [198] = { [1] = alias_sym_field_identifier, }, - [200] = { + [202] = { [2] = alias_sym_type_identifier, }, - [201] = { + [203] = { [3] = alias_sym_type_identifier, }, - [202] = { + [204] = { [3] = alias_sym_type_identifier, }, - [203] = { + [205] = { [3] = alias_sym_type_identifier, }, - [207] = { + [209] = { [0] = alias_sym_type_identifier, }, - [208] = { + [210] = { [1] = alias_sym_field_identifier, }, - [209] = { - [2] = alias_sym_type_identifier, - }, - [217] = { + [218] = { [2] = alias_sym_type_identifier, }, - [219] = { + [220] = { [3] = alias_sym_type_identifier, }, - [220] = { + [221] = { [3] = alias_sym_type_identifier, }, - [223] = { + [224] = { [2] = alias_sym_type_identifier, }, - [230] = { - [1] = alias_sym_field_identifier, - }, [231] = { - [1] = alias_sym_type_identifier, + [1] = alias_sym_field_identifier, }, [232] = { - [3] = alias_sym_type_identifier, + [1] = alias_sym_type_identifier, }, [233] = { [3] = alias_sym_type_identifier, }, - [236] = { + [234] = { [3] = alias_sym_type_identifier, }, [237] = { [3] = alias_sym_type_identifier, }, - [240] = { - [2] = alias_sym_type_identifier, + [238] = { + [3] = alias_sym_type_identifier, }, - [244] = { + [241] = { [2] = alias_sym_type_identifier, }, [245] = { [2] = alias_sym_type_identifier, }, [246] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [247] = { [3] = alias_sym_type_identifier, @@ -3943,11 +3943,11 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [248] = { [3] = alias_sym_type_identifier, }, - [254] = { - [2] = alias_sym_field_identifier, + [249] = { + [3] = alias_sym_type_identifier, }, [255] = { - [1] = alias_sym_type_identifier, + [2] = alias_sym_field_identifier, }, [258] = { [3] = alias_sym_type_identifier, @@ -3996,141 +3996,141 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7] = 7, [8] = 8, [9] = 3, - [10] = 2, + [10] = 5, [11] = 11, - [12] = 6, - [13] = 8, - [14] = 3, - [15] = 2, + [12] = 11, + [13] = 6, + [14] = 8, + [15] = 5, [16] = 11, [17] = 6, [18] = 3, - [19] = 2, + [19] = 5, [20] = 11, [21] = 6, [22] = 3, - [23] = 2, + [23] = 5, [24] = 11, [25] = 6, [26] = 3, - [27] = 2, + [27] = 5, [28] = 11, [29] = 6, [30] = 3, - [31] = 2, + [31] = 5, [32] = 11, [33] = 6, - [34] = 11, + [34] = 3, [35] = 35, [36] = 36, [37] = 37, - [38] = 36, - [39] = 37, - [40] = 40, + [38] = 38, + [39] = 39, + [40] = 39, [41] = 41, - [42] = 42, + [42] = 41, [43] = 35, - [44] = 42, - [45] = 35, - [46] = 41, - [47] = 40, + [44] = 41, + [45] = 39, + [46] = 35, + [47] = 38, [48] = 36, [49] = 37, - [50] = 36, - [51] = 37, - [52] = 35, - [53] = 36, - [54] = 42, - [55] = 40, - [56] = 41, - [57] = 42, - [58] = 36, + [50] = 35, + [51] = 39, + [52] = 41, + [53] = 41, + [54] = 39, + [55] = 38, + [56] = 36, + [57] = 41, + [58] = 39, [59] = 41, - [60] = 40, - [61] = 37, - [62] = 36, + [60] = 39, + [61] = 41, + [62] = 39, [63] = 37, [64] = 37, - [65] = 36, - [66] = 37, + [65] = 38, + [66] = 36, [67] = 67, [68] = 68, [69] = 69, [70] = 70, - [71] = 71, - [72] = 72, + [71] = 68, + [72] = 69, [73] = 73, [74] = 74, - [75] = 75, + [75] = 73, [76] = 76, - [77] = 77, - [78] = 74, - [79] = 72, - [80] = 71, - [81] = 75, - [82] = 76, - [83] = 77, + [77] = 74, + [78] = 78, + [79] = 79, + [80] = 76, + [81] = 81, + [82] = 82, + [83] = 70, [84] = 84, - [85] = 84, + [85] = 85, [86] = 86, [87] = 87, [88] = 88, [89] = 89, - [90] = 90, - [91] = 88, - [92] = 89, - [93] = 90, + [90] = 84, + [91] = 91, + [92] = 91, + [93] = 93, [94] = 94, [95] = 95, - [96] = 96, - [97] = 84, - [98] = 98, - [99] = 99, - [100] = 100, - [101] = 86, - [102] = 87, - [103] = 94, - [104] = 98, + [96] = 95, + [97] = 97, + [98] = 84, + [99] = 97, + [100] = 95, + [101] = 97, + [102] = 91, + [103] = 93, + [104] = 94, [105] = 105, - [106] = 88, - [107] = 89, - [108] = 90, - [109] = 95, - [110] = 96, + [106] = 95, + [107] = 97, + [108] = 105, + [109] = 85, + [110] = 86, [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, + [112] = 91, + [113] = 93, + [114] = 94, + [115] = 87, + [116] = 95, + [117] = 97, + [118] = 84, + [119] = 88, + [120] = 89, + [121] = 121, + [122] = 91, + [123] = 93, + [124] = 94, + [125] = 93, + [126] = 95, + [127] = 97, + [128] = 91, + [129] = 129, + [130] = 94, + [131] = 93, + [132] = 94, + [133] = 84, [134] = 134, [135] = 135, - [136] = 134, + [136] = 136, [137] = 137, [138] = 135, [139] = 139, - [140] = 140, + [140] = 134, [141] = 141, - [142] = 139, + [142] = 141, [143] = 143, - [144] = 137, + [144] = 139, [145] = 145, [146] = 146, [147] = 147, @@ -4141,113 +4141,113 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [152] = 152, [153] = 153, [154] = 154, - [155] = 147, + [155] = 155, [156] = 156, - [157] = 157, + [157] = 145, [158] = 158, [159] = 159, [160] = 160, - [161] = 161, + [161] = 158, [162] = 162, [163] = 163, [164] = 164, [165] = 165, - [166] = 166, + [166] = 160, [167] = 167, - [168] = 152, - [169] = 153, + [168] = 168, + [169] = 169, [170] = 170, [171] = 171, - [172] = 165, + [172] = 143, [173] = 173, [174] = 174, [175] = 175, - [176] = 176, - [177] = 158, + [176] = 173, + [177] = 177, [178] = 178, - [179] = 164, - [180] = 180, + [179] = 162, + [180] = 164, [181] = 181, [182] = 182, [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, + [184] = 184, + [185] = 171, + [186] = 175, + [187] = 153, + [188] = 168, + [189] = 189, + [190] = 189, + [191] = 153, + [192] = 168, + [193] = 189, + [194] = 153, + [195] = 168, + [196] = 189, [197] = 197, - [198] = 178, - [199] = 180, - [200] = 182, + [198] = 198, + [199] = 199, + [200] = 200, [201] = 201, - [202] = 202, + [202] = 170, [203] = 203, - [204] = 204, - [205] = 159, - [206] = 206, - [207] = 207, - [208] = 208, + [204] = 177, + [205] = 147, + [206] = 149, + [207] = 151, + [208] = 152, [209] = 209, [210] = 210, - [211] = 203, - [212] = 175, - [213] = 201, - [214] = 176, + [211] = 211, + [212] = 199, + [213] = 213, + [214] = 213, [215] = 215, - [216] = 215, + [216] = 216, [217] = 217, - [218] = 215, + [218] = 218, [219] = 219, - [220] = 220, + [220] = 219, [221] = 221, - [222] = 220, - [223] = 221, - [224] = 220, + [222] = 222, + [223] = 216, + [224] = 215, [225] = 221, [226] = 226, - [227] = 227, - [228] = 228, - [229] = 228, - [230] = 215, - [231] = 226, - [232] = 220, - [233] = 228, - [234] = 227, - [235] = 217, - [236] = 236, - [237] = 236, - [238] = 220, - [239] = 228, + [227] = 226, + [228] = 216, + [229] = 229, + [230] = 216, + [231] = 231, + [232] = 217, + [233] = 218, + [234] = 234, + [235] = 231, + [236] = 231, + [237] = 229, + [238] = 229, + [239] = 239, [240] = 240, - [241] = 221, - [242] = 242, - [243] = 242, - [244] = 228, - [245] = 219, - [246] = 215, - [247] = 247, - [248] = 248, - [249] = 249, - [250] = 250, - [251] = 251, - [252] = 252, + [241] = 239, + [242] = 240, + [243] = 231, + [244] = 234, + [245] = 216, + [246] = 219, + [247] = 234, + [248] = 229, + [249] = 219, + [250] = 231, + [251] = 226, + [252] = 229, [253] = 253, [254] = 254, [255] = 255, - [256] = 256, - [257] = 257, - [258] = 258, - [259] = 259, - [260] = 260, - [261] = 261, + [256] = 253, + [257] = 255, + [258] = 253, + [259] = 254, + [260] = 254, + [261] = 255, [262] = 262, [263] = 263, [264] = 264, @@ -4261,7 +4261,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [272] = 272, [273] = 273, [274] = 274, - [275] = 275, + [275] = 263, [276] = 276, [277] = 277, [278] = 278, @@ -4271,110 +4271,110 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [282] = 282, [283] = 283, [284] = 284, - [285] = 280, + [285] = 285, [286] = 286, - [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, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 290, [300] = 300, - [301] = 301, - [302] = 302, - [303] = 286, - [304] = 259, - [305] = 261, - [306] = 262, - [307] = 247, - [308] = 263, - [309] = 264, - [310] = 265, - [311] = 272, - [312] = 273, - [313] = 274, - [314] = 275, - [315] = 276, + [301] = 265, + [302] = 266, + [303] = 270, + [304] = 274, + [305] = 276, + [306] = 277, + [307] = 278, + [308] = 279, + [309] = 280, + [310] = 281, + [311] = 282, + [312] = 289, + [313] = 296, + [314] = 314, + [315] = 315, [316] = 316, - [317] = 284, - [318] = 286, + [317] = 300, + [318] = 300, [319] = 319, - [320] = 286, - [321] = 321, - [322] = 259, - [323] = 261, - [324] = 262, - [325] = 247, - [326] = 263, - [327] = 264, - [328] = 265, - [329] = 272, - [330] = 273, - [331] = 274, - [332] = 275, - [333] = 276, - [334] = 284, - [335] = 276, - [336] = 276, - [337] = 276, + [320] = 265, + [321] = 266, + [322] = 270, + [323] = 274, + [324] = 276, + [325] = 277, + [326] = 278, + [327] = 279, + [328] = 280, + [329] = 281, + [330] = 282, + [331] = 296, + [332] = 332, + [333] = 300, + [334] = 265, + [335] = 266, + [336] = 270, + [337] = 274, [338] = 276, - [339] = 339, - [340] = 280, - [341] = 301, - [342] = 342, - [343] = 343, - [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] = 381, - [382] = 377, - [383] = 376, - [384] = 384, - [385] = 377, - [386] = 376, - [387] = 384, - [388] = 384, + [339] = 277, + [340] = 278, + [341] = 279, + [342] = 280, + [343] = 281, + [344] = 282, + [345] = 289, + [346] = 296, + [347] = 289, + [348] = 348, + [349] = 289, + [350] = 289, + [351] = 289, + [352] = 290, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 354, + [357] = 357, + [358] = 358, + [359] = 290, + [360] = 354, + [361] = 314, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 315, + [366] = 262, + [367] = 291, + [368] = 316, + [369] = 332, + [370] = 353, + [371] = 355, + [372] = 362, + [373] = 264, + [374] = 268, + [375] = 271, + [376] = 263, + [377] = 285, + [378] = 287, + [379] = 288, + [380] = 295, + [381] = 298, + [382] = 315, + [383] = 316, + [384] = 355, + [385] = 263, + [386] = 315, + [387] = 316, + [388] = 289, [389] = 389, [390] = 390, [391] = 391, @@ -4385,16 +4385,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [396] = 396, [397] = 397, [398] = 398, - [399] = 396, + [399] = 399, [400] = 400, - [401] = 401, - [402] = 209, - [403] = 396, + [401] = 200, + [402] = 402, + [403] = 403, [404] = 404, [405] = 405, [406] = 406, - [407] = 210, - [408] = 408, + [407] = 394, + [408] = 198, [409] = 409, [410] = 410, [411] = 411, @@ -4405,79 +4405,79 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [416] = 416, [417] = 417, [418] = 418, - [419] = 411, + [419] = 394, [420] = 420, - [421] = 420, - [422] = 420, - [423] = 423, + [421] = 421, + [422] = 422, + [423] = 416, [424] = 424, [425] = 425, - [426] = 425, + [426] = 426, [427] = 427, - [428] = 428, + [428] = 425, [429] = 429, - [430] = 427, - [431] = 427, - [432] = 428, - [433] = 429, - [434] = 429, + [430] = 429, + [431] = 429, + [432] = 426, + [433] = 427, + [434] = 426, [435] = 435, [436] = 435, [437] = 437, [438] = 438, [439] = 439, - [440] = 439, - [441] = 441, - [442] = 439, - [443] = 443, + [440] = 440, + [441] = 439, + [442] = 442, + [443] = 442, [444] = 439, - [445] = 441, - [446] = 443, - [447] = 443, - [448] = 443, - [449] = 441, - [450] = 441, + [445] = 440, + [446] = 440, + [447] = 442, + [448] = 440, + [449] = 442, + [450] = 439, [451] = 451, - [452] = 452, - [453] = 452, - [454] = 452, - [455] = 452, + [452] = 451, + [453] = 453, + [454] = 451, + [455] = 451, [456] = 456, [457] = 456, [458] = 456, - [459] = 456, - [460] = 319, - [461] = 461, - [462] = 389, - [463] = 380, - [464] = 381, - [465] = 379, - [466] = 461, - [467] = 461, - [468] = 378, - [469] = 461, - [470] = 470, - [471] = 415, + [459] = 319, + [460] = 456, + [461] = 392, + [462] = 462, + [463] = 389, + [464] = 390, + [465] = 391, + [466] = 462, + [467] = 393, + [468] = 462, + [469] = 462, + [470] = 421, + [471] = 471, [472] = 472, - [473] = 413, - [474] = 414, - [475] = 406, - [476] = 404, - [477] = 412, - [478] = 395, - [479] = 391, - [480] = 480, - [481] = 417, - [482] = 416, - [483] = 405, - [484] = 393, + [473] = 473, + [474] = 399, + [475] = 405, + [476] = 397, + [477] = 420, + [478] = 400, + [479] = 414, + [480] = 415, + [481] = 410, + [482] = 413, + [483] = 418, + [484] = 412, [485] = 409, - [486] = 400, - [487] = 390, - [488] = 410, - [489] = 418, - [490] = 397, - [491] = 408, + [486] = 406, + [487] = 395, + [488] = 411, + [489] = 403, + [490] = 398, + [491] = 422, [492] = 492, [493] = 492, [494] = 494, @@ -4617,7 +4617,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [628] = 628, [629] = 629, [630] = 630, - [631] = 631, + [631] = 391, [632] = 632, [633] = 633, [634] = 634, @@ -4630,20 +4630,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [641] = 641, [642] = 642, [643] = 643, - [644] = 644, + [644] = 393, [645] = 645, [646] = 646, - [647] = 647, + [647] = 392, [648] = 648, - [649] = 649, - [650] = 650, + [649] = 389, + [650] = 390, [651] = 651, [652] = 652, [653] = 653, [654] = 654, [655] = 655, [656] = 656, - [657] = 381, + [657] = 657, [658] = 658, [659] = 659, [660] = 660, @@ -4654,41 +4654,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [665] = 665, [666] = 666, [667] = 667, - [668] = 389, + [668] = 668, [669] = 669, - [670] = 380, - [671] = 379, - [672] = 378, + [670] = 670, + [671] = 671, + [672] = 584, [673] = 673, [674] = 674, [675] = 675, - [676] = 676, + [676] = 664, [677] = 677, [678] = 678, [679] = 679, - [680] = 680, + [680] = 679, [681] = 681, [682] = 682, [683] = 683, [684] = 684, [685] = 685, - [686] = 686, + [686] = 589, [687] = 687, - [688] = 660, + [688] = 688, [689] = 689, [690] = 690, [691] = 691, [692] = 692, - [693] = 685, + [693] = 693, [694] = 694, [695] = 695, [696] = 696, [697] = 697, [698] = 698, [699] = 699, - [700] = 696, + [700] = 700, [701] = 701, - [702] = 664, + [702] = 702, [703] = 703, [704] = 704, [705] = 705, @@ -4773,35 +4773,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [784] = 784, [785] = 785, [786] = 786, - [787] = 786, - [788] = 783, + [787] = 787, + [788] = 788, [789] = 789, - [790] = 789, + [790] = 790, [791] = 791, [792] = 792, - [793] = 793, + [793] = 792, [794] = 794, [795] = 795, [796] = 796, [797] = 797, - [798] = 797, - [799] = 791, - [800] = 795, - [801] = 796, + [798] = 796, + [799] = 795, + [800] = 800, + [801] = 801, [802] = 802, - [803] = 803, - [804] = 792, - [805] = 793, - [806] = 806, + [803] = 800, + [804] = 804, + [805] = 805, + [806] = 802, [807] = 807, [808] = 808, [809] = 809, [810] = 810, - [811] = 811, + [811] = 801, [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, + [813] = 805, + [814] = 807, + [815] = 809, [816] = 816, [817] = 817, [818] = 818, @@ -4810,81 +4810,81 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [821] = 821, [822] = 822, [823] = 823, - [824] = 823, + [824] = 824, [825] = 825, [826] = 826, - [827] = 826, + [827] = 827, [828] = 828, - [829] = 825, - [830] = 828, + [829] = 822, + [830] = 830, [831] = 831, [832] = 832, - [833] = 833, - [834] = 815, - [835] = 819, - [836] = 836, - [837] = 836, - [838] = 838, - [839] = 820, - [840] = 821, + [833] = 819, + [834] = 817, + [835] = 818, + [836] = 826, + [837] = 816, + [838] = 820, + [839] = 824, + [840] = 825, [841] = 841, - [842] = 838, - [843] = 833, - [844] = 838, - [845] = 833, - [846] = 838, - [847] = 833, - [848] = 816, + [842] = 831, + [843] = 823, + [844] = 819, + [845] = 823, + [846] = 819, + [847] = 823, + [848] = 841, [849] = 849, - [850] = 850, - [851] = 850, - [852] = 852, - [853] = 850, - [854] = 850, + [850] = 849, + [851] = 849, + [852] = 849, + [853] = 853, + [854] = 849, [855] = 855, - [856] = 852, + [856] = 856, [857] = 857, - [858] = 857, + [858] = 858, [859] = 859, - [860] = 860, + [860] = 859, [861] = 861, - [862] = 862, + [862] = 857, [863] = 863, - [864] = 864, - [865] = 864, - [866] = 861, + [864] = 863, + [865] = 859, + [866] = 855, [867] = 867, - [868] = 862, + [868] = 868, [869] = 867, - [870] = 870, - [871] = 860, - [872] = 862, - [873] = 857, - [874] = 860, - [875] = 875, - [876] = 876, + [870] = 859, + [871] = 871, + [872] = 867, + [873] = 856, + [874] = 874, + [875] = 863, + [876] = 859, [877] = 877, - [878] = 861, - [879] = 857, - [880] = 880, + [878] = 863, + [879] = 856, + [880] = 863, [881] = 881, [882] = 882, [883] = 883, [884] = 884, - [885] = 885, + [885] = 882, [886] = 886, [887] = 887, [888] = 888, - [889] = 889, + [889] = 884, [890] = 890, [891] = 891, [892] = 892, [893] = 893, [894] = 894, - [895] = 895, + [895] = 891, [896] = 896, [897] = 897, - [898] = 882, + [898] = 898, [899] = 899, [900] = 900, [901] = 901, @@ -4899,607 +4899,607 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [910] = 910, [911] = 911, [912] = 912, - [913] = 913, - [914] = 914, - [915] = 905, - [916] = 887, + [913] = 888, + [914] = 883, + [915] = 915, + [916] = 916, [917] = 917, [918] = 918, - [919] = 914, - [920] = 889, + [919] = 882, + [920] = 920, [921] = 921, [922] = 922, [923] = 923, - [924] = 924, + [924] = 906, [925] = 925, - [926] = 926, + [926] = 888, [927] = 927, [928] = 928, [929] = 929, - [930] = 930, + [930] = 907, [931] = 931, [932] = 932, [933] = 933, - [934] = 887, - [935] = 897, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 882, - [941] = 899, - [942] = 901, - [943] = 943, - [944] = 884, - [945] = 914, - [946] = 889, - [947] = 897, - [948] = 909, - [949] = 911, - [950] = 887, + [934] = 934, + [935] = 882, + [936] = 887, + [937] = 884, + [938] = 894, + [939] = 891, + [940] = 940, + [941] = 941, + [942] = 908, + [943] = 911, + [944] = 944, + [945] = 928, + [946] = 946, + [947] = 947, + [948] = 948, + [949] = 949, + [950] = 950, [951] = 951, - [952] = 907, - [953] = 882, - [954] = 912, + [952] = 952, + [953] = 899, + [954] = 887, [955] = 955, - [956] = 899, + [956] = 908, [957] = 957, - [958] = 883, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 962, - [963] = 963, - [964] = 895, - [965] = 896, - [966] = 886, - [967] = 890, - [968] = 951, - [969] = 969, - [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, + [958] = 911, + [959] = 941, + [960] = 922, + [961] = 923, + [962] = 901, + [963] = 957, + [964] = 922, + [965] = 923, + [966] = 888, + [967] = 967, + [968] = 900, + [969] = 881, + [970] = 952, + [971] = 971, + [972] = 971, + [973] = 973, + [974] = 974, + [975] = 975, + [976] = 976, + [977] = 922, + [978] = 973, + [979] = 906, + [980] = 882, + [981] = 884, + [982] = 887, + [983] = 883, + [984] = 884, + [985] = 894, + [986] = 891, + [987] = 910, + [988] = 917, + [989] = 918, + [990] = 921, + [991] = 925, + [992] = 929, + [993] = 923, + [994] = 994, + [995] = 932, + [996] = 933, + [997] = 944, + [998] = 946, + [999] = 976, [1000] = 1000, - [1001] = 961, - [1002] = 917, - [1003] = 918, - [1004] = 933, - [1005] = 909, - [1006] = 959, - [1007] = 979, - [1008] = 1000, - [1009] = 911, - [1010] = 943, - [1011] = 912, - [1012] = 991, - [1013] = 1013, - [1014] = 962, - [1015] = 985, - [1016] = 983, - [1017] = 923, - [1018] = 955, - [1019] = 1019, - [1020] = 922, - [1021] = 914, - [1022] = 889, - [1023] = 1023, - [1024] = 901, - [1025] = 1013, - [1026] = 905, - [1027] = 922, - [1028] = 1013, - [1029] = 1029, - [1030] = 717, - [1031] = 1031, + [1001] = 908, + [1002] = 911, + [1003] = 928, + [1004] = 1004, + [1005] = 904, + [1006] = 912, + [1007] = 886, + [1008] = 907, + [1009] = 950, + [1010] = 949, + [1011] = 897, + [1012] = 898, + [1013] = 902, + [1014] = 903, + [1015] = 909, + [1016] = 1016, + [1017] = 931, + [1018] = 1018, + [1019] = 949, + [1020] = 1020, + [1021] = 1016, + [1022] = 994, + [1023] = 1004, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 890, + [1028] = 896, + [1029] = 916, + [1030] = 1024, + [1031] = 928, [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 717, + [1033] = 967, + [1034] = 957, + [1035] = 1026, [1036] = 1036, - [1037] = 1037, - [1038] = 1038, - [1039] = 1039, - [1040] = 1040, - [1041] = 1041, - [1042] = 381, - [1043] = 379, - [1044] = 378, - [1045] = 210, - [1046] = 380, - [1047] = 394, - [1048] = 209, + [1037] = 974, + [1038] = 922, + [1039] = 1000, + [1040] = 923, + [1041] = 949, + [1042] = 975, + [1043] = 906, + [1044] = 1044, + [1045] = 907, + [1046] = 894, + [1047] = 1018, + [1048] = 883, [1049] = 1049, - [1050] = 401, - [1051] = 1051, + [1050] = 1050, + [1051] = 691, [1052] = 1052, [1053] = 1053, - [1054] = 389, - [1055] = 1055, + [1054] = 1054, + [1055] = 691, [1056] = 1056, [1057] = 1057, [1058] = 1058, - [1059] = 620, + [1059] = 1059, [1060] = 1060, [1061] = 1061, [1062] = 1062, [1063] = 1063, [1064] = 1064, - [1065] = 521, - [1066] = 718, - [1067] = 563, - [1068] = 1068, - [1069] = 1069, - [1070] = 745, - [1071] = 1071, - [1072] = 1071, - [1073] = 1073, - [1074] = 1029, - [1075] = 1075, + [1065] = 390, + [1066] = 200, + [1067] = 393, + [1068] = 404, + [1069] = 389, + [1070] = 402, + [1071] = 392, + [1072] = 1072, + [1073] = 391, + [1074] = 198, + [1075] = 753, [1076] = 1076, [1077] = 1077, [1078] = 1078, - [1079] = 1079, - [1080] = 1079, - [1081] = 1071, + [1079] = 1049, + [1080] = 1080, + [1081] = 694, [1082] = 1082, - [1083] = 1083, + [1083] = 514, [1084] = 1084, - [1085] = 1079, - [1086] = 1040, + [1085] = 1085, + [1086] = 1086, [1087] = 1087, [1088] = 1088, - [1089] = 1089, + [1089] = 634, [1090] = 1090, - [1091] = 1091, + [1091] = 724, [1092] = 1092, [1093] = 1093, [1094] = 1094, [1095] = 1095, - [1096] = 435, + [1096] = 1096, [1097] = 1097, - [1098] = 497, - [1099] = 1038, + [1098] = 1098, + [1099] = 1099, [1100] = 1100, [1101] = 1101, [1102] = 1102, - [1103] = 659, - [1104] = 663, - [1105] = 1039, + [1103] = 1103, + [1104] = 1060, + [1105] = 1105, [1106] = 1106, - [1107] = 1037, + [1107] = 1107, [1108] = 1108, [1109] = 1109, - [1110] = 1036, + [1110] = 1110, [1111] = 1111, - [1112] = 1112, + [1112] = 435, [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 630, - [1117] = 319, - [1118] = 654, - [1119] = 655, - [1120] = 656, - [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] = 1136, - [1137] = 1137, - [1138] = 1138, - [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] = 768, - [1394] = 1394, - [1395] = 1395, - [1396] = 1396, - [1397] = 717, - [1398] = 717, - [1399] = 1399, - [1400] = 1040, - [1401] = 1401, - [1402] = 1402, - [1403] = 725, - [1404] = 1404, - [1405] = 404, - [1406] = 405, - [1407] = 409, - [1408] = 400, - [1409] = 418, - [1410] = 414, - [1411] = 1411, - [1412] = 389, - [1413] = 379, - [1414] = 408, - [1415] = 1415, + [1114] = 685, + [1115] = 1050, + [1116] = 1057, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 583, + [1121] = 585, + [1122] = 1059, + [1123] = 1123, + [1124] = 1058, + [1125] = 1125, + [1126] = 1126, + [1127] = 1056, + [1128] = 1128, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 588, + [1134] = 319, + [1135] = 607, + [1136] = 609, + [1137] = 616, + [1138] = 629, + [1139] = 630, + [1140] = 633, + [1141] = 643, + [1142] = 646, + [1143] = 648, + [1144] = 651, + [1145] = 653, + [1146] = 663, + [1147] = 666, + [1148] = 667, + [1149] = 673, + [1150] = 674, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, + [1156] = 699, + [1157] = 700, + [1158] = 701, + [1159] = 702, + [1160] = 704, + [1161] = 711, + [1162] = 712, + [1163] = 713, + [1164] = 714, + [1165] = 715, + [1166] = 725, + [1167] = 726, + [1168] = 727, + [1169] = 728, + [1170] = 729, + [1171] = 730, + [1172] = 731, + [1173] = 732, + [1174] = 733, + [1175] = 734, + [1176] = 735, + [1177] = 736, + [1178] = 737, + [1179] = 738, + [1180] = 739, + [1181] = 740, + [1182] = 744, + [1183] = 751, + [1184] = 763, + [1185] = 765, + [1186] = 768, + [1187] = 773, + [1188] = 777, + [1189] = 780, + [1190] = 597, + [1191] = 687, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 569, + [1197] = 570, + [1198] = 587, + [1199] = 591, + [1200] = 592, + [1201] = 593, + [1202] = 595, + [1203] = 596, + [1204] = 598, + [1205] = 599, + [1206] = 601, + [1207] = 622, + [1208] = 625, + [1209] = 626, + [1210] = 628, + [1211] = 661, + [1212] = 684, + [1213] = 689, + [1214] = 697, + [1215] = 746, + [1216] = 748, + [1217] = 750, + [1218] = 499, + [1219] = 500, + [1220] = 501, + [1221] = 512, + [1222] = 534, + [1223] = 556, + [1224] = 561, + [1225] = 562, + [1226] = 563, + [1227] = 564, + [1228] = 565, + [1229] = 566, + [1230] = 567, + [1231] = 568, + [1232] = 571, + [1233] = 572, + [1234] = 573, + [1235] = 574, + [1236] = 575, + [1237] = 576, + [1238] = 577, + [1239] = 578, + [1240] = 579, + [1241] = 580, + [1242] = 581, + [1243] = 582, + [1244] = 590, + [1245] = 594, + [1246] = 1246, + [1247] = 1247, + [1248] = 600, + [1249] = 602, + [1250] = 603, + [1251] = 604, + [1252] = 605, + [1253] = 606, + [1254] = 608, + [1255] = 610, + [1256] = 611, + [1257] = 612, + [1258] = 613, + [1259] = 614, + [1260] = 615, + [1261] = 617, + [1262] = 618, + [1263] = 619, + [1264] = 620, + [1265] = 621, + [1266] = 623, + [1267] = 624, + [1268] = 632, + [1269] = 635, + [1270] = 636, + [1271] = 637, + [1272] = 781, + [1273] = 639, + [1274] = 640, + [1275] = 641, + [1276] = 1276, + [1277] = 645, + [1278] = 652, + [1279] = 654, + [1280] = 494, + [1281] = 656, + [1282] = 657, + [1283] = 658, + [1284] = 659, + [1285] = 660, + [1286] = 662, + [1287] = 665, + [1288] = 668, + [1289] = 669, + [1290] = 670, + [1291] = 675, + [1292] = 677, + [1293] = 678, + [1294] = 681, + [1295] = 682, + [1296] = 683, + [1297] = 690, + [1298] = 692, + [1299] = 1299, + [1300] = 1300, + [1301] = 695, + [1302] = 696, + [1303] = 698, + [1304] = 703, + [1305] = 705, + [1306] = 706, + [1307] = 707, + [1308] = 708, + [1309] = 709, + [1310] = 710, + [1311] = 716, + [1312] = 717, + [1313] = 718, + [1314] = 719, + [1315] = 721, + [1316] = 722, + [1317] = 723, + [1318] = 741, + [1319] = 742, + [1320] = 743, + [1321] = 745, + [1322] = 749, + [1323] = 752, + [1324] = 754, + [1325] = 755, + [1326] = 756, + [1327] = 757, + [1328] = 758, + [1329] = 759, + [1330] = 760, + [1331] = 761, + [1332] = 762, + [1333] = 764, + [1334] = 766, + [1335] = 767, + [1336] = 769, + [1337] = 770, + [1338] = 771, + [1339] = 772, + [1340] = 774, + [1341] = 775, + [1342] = 776, + [1343] = 778, + [1344] = 779, + [1345] = 655, + [1346] = 638, + [1347] = 671, + [1348] = 495, + [1349] = 496, + [1350] = 497, + [1351] = 498, + [1352] = 1352, + [1353] = 1353, + [1354] = 502, + [1355] = 503, + [1356] = 504, + [1357] = 505, + [1358] = 506, + [1359] = 507, + [1360] = 508, + [1361] = 509, + [1362] = 510, + [1363] = 511, + [1364] = 513, + [1365] = 515, + [1366] = 516, + [1367] = 517, + [1368] = 518, + [1369] = 519, + [1370] = 520, + [1371] = 521, + [1372] = 522, + [1373] = 523, + [1374] = 524, + [1375] = 525, + [1376] = 526, + [1377] = 527, + [1378] = 528, + [1379] = 529, + [1380] = 530, + [1381] = 531, + [1382] = 532, + [1383] = 533, + [1384] = 535, + [1385] = 536, + [1386] = 537, + [1387] = 538, + [1388] = 539, + [1389] = 540, + [1390] = 541, + [1391] = 542, + [1392] = 543, + [1393] = 544, + [1394] = 545, + [1395] = 546, + [1396] = 547, + [1397] = 548, + [1398] = 549, + [1399] = 550, + [1400] = 551, + [1401] = 552, + [1402] = 553, + [1403] = 554, + [1404] = 555, + [1405] = 557, + [1406] = 558, + [1407] = 559, + [1408] = 560, + [1409] = 1409, + [1410] = 691, + [1411] = 569, + [1412] = 1412, + [1413] = 1413, + [1414] = 691, + [1415] = 691, [1416] = 1416, - [1417] = 1417, + [1417] = 1060, [1418] = 1418, - [1419] = 1419, - [1420] = 1420, + [1419] = 642, + [1420] = 1060, [1421] = 1421, [1422] = 1422, [1423] = 1423, - [1424] = 1424, - [1425] = 176, + [1424] = 147, + [1425] = 1425, [1426] = 1426, [1427] = 1427, [1428] = 1428, - [1429] = 1429, + [1429] = 198, [1430] = 1430, [1431] = 1431, - [1432] = 395, - [1433] = 401, + [1432] = 1432, + [1433] = 1433, [1434] = 1434, - [1435] = 391, - [1436] = 406, + [1435] = 1435, + [1436] = 415, [1437] = 1437, - [1438] = 417, + [1438] = 1438, [1439] = 1439, [1440] = 1440, - [1441] = 1441, + [1441] = 390, [1442] = 1442, [1443] = 1443, - [1444] = 393, - [1445] = 394, - [1446] = 1446, - [1447] = 182, - [1448] = 378, + [1444] = 1444, + [1445] = 1445, + [1446] = 391, + [1447] = 1447, + [1448] = 1448, [1449] = 1449, [1450] = 1450, - [1451] = 1451, - [1452] = 1452, - [1453] = 380, - [1454] = 1454, + [1451] = 421, + [1452] = 410, + [1453] = 411, + [1454] = 412, [1455] = 1455, [1456] = 1456, - [1457] = 1457, + [1457] = 409, [1458] = 1458, [1459] = 1459, - [1460] = 1460, + [1460] = 397, [1461] = 1461, [1462] = 1462, [1463] = 1463, - [1464] = 209, + [1464] = 398, [1465] = 1465, - [1466] = 390, - [1467] = 1467, - [1468] = 410, - [1469] = 415, - [1470] = 1470, - [1471] = 1471, + [1466] = 1466, + [1467] = 200, + [1468] = 393, + [1469] = 1469, + [1470] = 418, + [1471] = 406, [1472] = 1472, - [1473] = 175, + [1473] = 1473, [1474] = 1474, [1475] = 1475, [1476] = 1476, [1477] = 1477, - [1478] = 1478, - [1479] = 1479, + [1478] = 395, + [1479] = 413, [1480] = 1480, - [1481] = 397, + [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1484, + [1484] = 152, [1485] = 1485, - [1486] = 1486, - [1487] = 1487, + [1486] = 399, + [1487] = 404, [1488] = 1488, - [1489] = 1489, + [1489] = 405, [1490] = 1490, - [1491] = 210, - [1492] = 412, - [1493] = 413, - [1494] = 1031, - [1495] = 381, - [1496] = 717, - [1497] = 1497, - [1498] = 1040, - [1499] = 416, + [1491] = 170, + [1492] = 1492, + [1493] = 420, + [1494] = 1494, + [1495] = 1495, + [1496] = 400, + [1497] = 402, + [1498] = 389, + [1499] = 403, [1500] = 1500, [1501] = 1501, - [1502] = 178, + [1502] = 1502, [1503] = 1503, [1504] = 1504, [1505] = 1505, [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 1509, + [1509] = 392, [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 1513, + [1513] = 149, [1514] = 1514, [1515] = 1515, [1516] = 1516, @@ -5508,660 +5508,660 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1519] = 1519, [1520] = 1520, [1521] = 1521, - [1522] = 180, + [1522] = 1522, [1523] = 1523, [1524] = 1524, [1525] = 1525, [1526] = 1526, [1527] = 1527, [1528] = 1528, - [1529] = 1528, + [1529] = 1529, [1530] = 1530, - [1531] = 1040, + [1531] = 1531, [1532] = 1532, - [1533] = 1528, - [1534] = 1040, + [1533] = 151, + [1534] = 1534, [1535] = 1535, - [1536] = 1536, + [1536] = 422, [1537] = 1537, - [1538] = 1535, - [1539] = 1539, + [1538] = 1538, + [1539] = 414, [1540] = 1540, - [1541] = 1541, - [1542] = 1542, - [1543] = 1543, + [1541] = 1540, + [1542] = 1060, + [1543] = 1060, [1544] = 1544, [1545] = 1545, - [1546] = 1546, - [1547] = 1547, + [1546] = 1540, + [1547] = 1540, [1548] = 1548, [1549] = 1549, [1550] = 1550, [1551] = 1551, - [1552] = 1078, - [1553] = 1041, - [1554] = 1536, + [1552] = 1062, + [1553] = 1063, + [1554] = 1061, [1555] = 1555, [1556] = 1556, [1557] = 1557, [1558] = 1558, [1559] = 1559, [1560] = 1560, - [1561] = 1556, + [1561] = 1561, [1562] = 1562, - [1563] = 1053, - [1564] = 1564, - [1565] = 1051, + [1563] = 1563, + [1564] = 1100, + [1565] = 1565, [1566] = 1566, - [1567] = 1049, + [1567] = 1567, [1568] = 1568, - [1569] = 1078, + [1569] = 1566, [1570] = 1570, [1571] = 1571, - [1572] = 1078, - [1573] = 1068, - [1574] = 1089, - [1575] = 1094, - [1576] = 1258, - [1577] = 1091, - [1578] = 1258, - [1579] = 1062, - [1580] = 1060, - [1581] = 1089, - [1582] = 1057, - [1583] = 1056, - [1584] = 1069, - [1585] = 1091, - [1586] = 1061, - [1587] = 1520, - [1588] = 1094, - [1589] = 1428, - [1590] = 1058, - [1591] = 1520, - [1592] = 1476, - [1593] = 1392, - [1594] = 1594, - [1595] = 1459, - [1596] = 1075, - [1597] = 1459, - [1598] = 1084, - [1599] = 1520, - [1600] = 1175, - [1601] = 1601, - [1602] = 1602, - [1603] = 1229, - [1604] = 1282, - [1605] = 1335, - [1606] = 319, - [1607] = 1428, - [1608] = 1608, - [1609] = 1609, - [1610] = 1601, - [1611] = 1608, - [1612] = 1602, - [1613] = 1609, - [1614] = 1077, - [1615] = 1476, - [1616] = 1602, - [1617] = 1609, - [1618] = 1602, - [1619] = 1609, - [1620] = 1532, - [1621] = 1530, - [1622] = 1073, - [1623] = 1594, - [1624] = 1594, - [1625] = 1392, - [1626] = 1100, - [1627] = 1548, - [1628] = 1336, - [1629] = 1541, - [1630] = 1630, - [1631] = 1530, - [1632] = 1134, - [1633] = 1537, - [1634] = 1135, - [1635] = 1542, - [1636] = 1539, - [1637] = 381, - [1638] = 389, - [1639] = 380, - [1640] = 1136, - [1641] = 379, - [1642] = 378, - [1643] = 1109, - [1644] = 1644, - [1645] = 1101, - [1646] = 1102, - [1647] = 1647, - [1648] = 1543, - [1649] = 1137, - [1650] = 1550, - [1651] = 1551, - [1652] = 1555, - [1653] = 1558, - [1654] = 1111, - [1655] = 1138, - [1656] = 1544, - [1657] = 1657, - [1658] = 1647, - [1659] = 1399, - [1660] = 1660, - [1661] = 1545, - [1662] = 1546, - [1663] = 1114, - [1664] = 1547, - [1665] = 1092, - [1666] = 1660, - [1667] = 1093, - [1668] = 1549, - [1669] = 1115, - [1670] = 1176, - [1671] = 1401, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1565, + [1576] = 1576, + [1577] = 1570, + [1578] = 1578, + [1579] = 1579, + [1580] = 1580, + [1581] = 1581, + [1582] = 1100, + [1583] = 1100, + [1584] = 1072, + [1585] = 1585, + [1586] = 1080, + [1587] = 1105, + [1588] = 1107, + [1589] = 1531, + [1590] = 1276, + [1591] = 1084, + [1592] = 1105, + [1593] = 1276, + [1594] = 1078, + [1595] = 1508, + [1596] = 1082, + [1597] = 1087, + [1598] = 1085, + [1599] = 1110, + [1600] = 1086, + [1601] = 1531, + [1602] = 1110, + [1603] = 1090, + [1604] = 1107, + [1605] = 1605, + [1606] = 1409, + [1607] = 1605, + [1608] = 1409, + [1609] = 1430, + [1610] = 1610, + [1611] = 1246, + [1612] = 1299, + [1613] = 1352, + [1614] = 1614, + [1615] = 319, + [1616] = 1488, + [1617] = 1092, + [1618] = 1094, + [1619] = 1619, + [1620] = 1531, + [1621] = 1192, + [1622] = 1610, + [1623] = 1508, + [1624] = 1614, + [1625] = 1619, + [1626] = 1610, + [1627] = 1614, + [1628] = 1610, + [1629] = 1614, + [1630] = 1545, + [1631] = 1544, + [1632] = 1093, + [1633] = 1488, + [1634] = 1605, + [1635] = 1097, + [1636] = 1430, + [1637] = 1637, + [1638] = 1605, + [1639] = 1637, + [1640] = 1418, + [1641] = 1300, + [1642] = 1109, + [1643] = 1123, + [1644] = 1193, + [1645] = 1416, + [1646] = 1125, + [1647] = 1571, + [1648] = 1573, + [1649] = 1555, + [1650] = 1563, + [1651] = 1353, + [1652] = 1108, + [1653] = 1545, + [1654] = 1654, + [1655] = 1655, + [1656] = 1656, + [1657] = 1117, + [1658] = 1658, + [1659] = 1126, + [1660] = 1194, + [1661] = 1247, + [1662] = 1128, + [1663] = 1580, + [1664] = 1658, + [1665] = 1568, + [1666] = 1129, + [1667] = 1549, + [1668] = 1579, + [1669] = 1130, + [1670] = 1548, + [1671] = 1131, [1672] = 1560, - [1673] = 1177, - [1674] = 1532, - [1675] = 1675, - [1676] = 1540, - [1677] = 1178, - [1678] = 1657, - [1679] = 1112, - [1680] = 1113, - [1681] = 1230, - [1682] = 1106, - [1683] = 1108, - [1684] = 1559, - [1685] = 1283, - [1686] = 1557, - [1687] = 1542, - [1688] = 1461, - [1689] = 1462, - [1690] = 1514, - [1691] = 1504, - [1692] = 1437, - [1693] = 1507, - [1694] = 1557, - [1695] = 1513, - [1696] = 1483, - [1697] = 1501, - [1698] = 1485, - [1699] = 1475, - [1700] = 1486, + [1673] = 1132, + [1674] = 1655, + [1675] = 1574, + [1676] = 1118, + [1677] = 1677, + [1678] = 1678, + [1679] = 1119, + [1680] = 1551, + [1681] = 1654, + [1682] = 1576, + [1683] = 391, + [1684] = 1557, + [1685] = 393, + [1686] = 392, + [1687] = 1558, + [1688] = 1572, + [1689] = 1544, + [1690] = 389, + [1691] = 390, + [1692] = 1151, + [1693] = 1578, + [1694] = 1152, + [1695] = 1195, + [1696] = 1153, + [1697] = 1154, + [1698] = 1155, + [1699] = 1567, + [1700] = 1550, [1701] = 1701, - [1702] = 1702, - [1703] = 1525, - [1704] = 1487, - [1705] = 1465, - [1706] = 1490, - [1707] = 1419, - [1708] = 1463, - [1709] = 1474, - [1710] = 1417, - [1711] = 1418, - [1712] = 1439, - [1713] = 1420, - [1714] = 1421, - [1715] = 1422, - [1716] = 1716, - [1717] = 1423, - [1718] = 1467, - [1719] = 1506, - [1720] = 1449, - [1721] = 1450, - [1722] = 1451, - [1723] = 1723, - [1724] = 1724, - [1725] = 1471, - [1726] = 1472, - [1727] = 1488, - [1728] = 1489, - [1729] = 1729, - [1730] = 1730, - [1731] = 435, - [1732] = 404, - [1733] = 409, - [1734] = 400, - [1735] = 418, - [1736] = 414, - [1737] = 1555, - [1738] = 1560, + [1702] = 1448, + [1703] = 1524, + [1704] = 1449, + [1705] = 1705, + [1706] = 1473, + [1707] = 1707, + [1708] = 1574, + [1709] = 1485, + [1710] = 1537, + [1711] = 1515, + [1712] = 1480, + [1713] = 1474, + [1714] = 1475, + [1715] = 1056, + [1716] = 1490, + [1717] = 1481, + [1718] = 1422, + [1719] = 1434, + [1720] = 1483, + [1721] = 1492, + [1722] = 1447, + [1723] = 1568, + [1724] = 1572, + [1725] = 1495, + [1726] = 1726, + [1727] = 1576, + [1728] = 1578, + [1729] = 1579, + [1730] = 1580, + [1731] = 1549, + [1732] = 1550, + [1733] = 1548, + [1734] = 1551, + [1735] = 1557, + [1736] = 1558, + [1737] = 1567, + [1738] = 1738, [1739] = 1739, - [1740] = 1427, - [1741] = 395, - [1742] = 1559, - [1743] = 391, - [1744] = 1515, - [1745] = 417, - [1746] = 1746, - [1747] = 1548, - [1748] = 393, - [1749] = 1441, - [1750] = 1537, - [1751] = 1539, - [1752] = 1540, - [1753] = 1541, - [1754] = 1754, - [1755] = 1543, - [1756] = 1544, - [1757] = 1545, - [1758] = 1546, - [1759] = 1547, - [1760] = 1549, - [1761] = 1456, - [1762] = 1457, + [1740] = 1516, + [1741] = 1520, + [1742] = 1571, + [1743] = 1423, + [1744] = 1744, + [1745] = 1426, + [1746] = 1512, + [1747] = 1433, + [1748] = 1560, + [1749] = 1455, + [1750] = 1573, + [1751] = 1458, + [1752] = 1427, + [1753] = 1459, + [1754] = 1431, + [1755] = 1461, + [1756] = 1462, + [1757] = 1428, + [1758] = 1463, + [1759] = 1759, + [1760] = 1432, + [1761] = 1465, + [1762] = 1435, [1763] = 1763, - [1764] = 390, - [1765] = 410, - [1766] = 1557, - [1767] = 397, - [1768] = 1484, - [1769] = 1497, - [1770] = 412, - [1771] = 413, - [1772] = 416, - [1773] = 408, - [1774] = 406, - [1775] = 415, - [1776] = 175, - [1777] = 176, - [1778] = 405, - [1779] = 178, - [1780] = 1560, - [1781] = 180, - [1782] = 1442, - [1783] = 401, - [1784] = 1548, - [1785] = 182, - [1786] = 394, - [1787] = 1526, - [1788] = 1404, - [1789] = 1557, - [1790] = 1503, - [1791] = 1431, - [1792] = 1509, - [1793] = 1560, - [1794] = 1505, - [1795] = 209, - [1796] = 210, - [1797] = 1511, - [1798] = 1512, - [1799] = 1440, - [1800] = 1550, - [1801] = 1801, - [1802] = 1802, - [1803] = 1424, - [1804] = 1804, - [1805] = 1805, - [1806] = 1426, - [1807] = 1807, - [1808] = 1808, - [1809] = 1036, - [1810] = 1434, - [1811] = 1804, - [1812] = 1516, - [1813] = 1429, - [1814] = 1517, - [1815] = 1519, - [1816] = 1518, - [1817] = 1817, - [1818] = 1818, - [1819] = 1430, - [1820] = 1723, - [1821] = 1821, - [1822] = 1822, - [1823] = 1823, - [1824] = 1739, - [1825] = 1825, - [1826] = 1411, + [1764] = 1438, + [1765] = 1500, + [1766] = 1501, + [1767] = 1502, + [1768] = 1503, + [1769] = 1504, + [1770] = 1505, + [1771] = 1506, + [1772] = 1772, + [1773] = 1442, + [1774] = 1443, + [1775] = 1444, + [1776] = 1555, + [1777] = 435, + [1778] = 410, + [1779] = 412, + [1780] = 409, + [1781] = 397, + [1782] = 398, + [1783] = 1563, + [1784] = 1574, + [1785] = 1785, + [1786] = 1476, + [1787] = 399, + [1788] = 1568, + [1789] = 405, + [1790] = 1425, + [1791] = 420, + [1792] = 1572, + [1793] = 400, + [1794] = 1576, + [1795] = 1578, + [1796] = 1579, + [1797] = 1580, + [1798] = 1549, + [1799] = 1550, + [1800] = 1548, + [1801] = 1551, + [1802] = 1557, + [1803] = 1558, + [1804] = 1567, + [1805] = 1526, + [1806] = 1421, + [1807] = 414, + [1808] = 415, + [1809] = 1560, + [1810] = 421, + [1811] = 1456, + [1812] = 1507, + [1813] = 418, + [1814] = 406, + [1815] = 395, + [1816] = 403, + [1817] = 422, + [1818] = 413, + [1819] = 170, + [1820] = 147, + [1821] = 411, + [1822] = 149, + [1823] = 1514, + [1824] = 1574, + [1825] = 151, + [1826] = 404, [1827] = 1827, - [1828] = 1482, - [1829] = 1829, - [1830] = 1559, - [1831] = 1702, - [1832] = 1754, - [1833] = 1833, - [1834] = 1834, - [1835] = 1548, - [1836] = 1833, - [1837] = 1701, - [1838] = 1470, - [1839] = 1446, - [1840] = 1730, - [1841] = 1452, - [1842] = 1508, - [1843] = 1558, - [1844] = 1415, - [1845] = 1550, - [1846] = 1551, - [1847] = 1804, - [1848] = 1555, - [1849] = 1558, - [1850] = 1817, - [1851] = 1527, - [1852] = 1827, - [1853] = 1537, - [1854] = 1539, - [1855] = 1477, - [1856] = 1540, - [1857] = 1827, - [1858] = 1541, - [1859] = 1754, - [1860] = 1542, - [1861] = 1730, - [1862] = 1804, - [1863] = 1817, - [1864] = 1864, - [1865] = 1829, - [1866] = 1543, - [1867] = 1827, - [1868] = 1478, - [1869] = 1754, - [1870] = 1544, - [1871] = 1545, - [1872] = 1479, - [1873] = 1730, - [1874] = 1817, - [1875] = 1827, - [1876] = 1754, - [1877] = 1730, - [1878] = 1817, - [1879] = 1521, - [1880] = 1827, - [1881] = 1754, - [1882] = 1730, - [1883] = 1817, - [1884] = 1827, - [1885] = 1754, - [1886] = 1546, - [1887] = 1547, - [1888] = 1549, - [1889] = 1480, - [1890] = 1416, - [1891] = 1510, - [1892] = 1523, - [1893] = 1524, - [1894] = 1454, - [1895] = 1551, - [1896] = 1455, - [1897] = 1500, - [1898] = 1458, + [1828] = 1572, + [1829] = 152, + [1830] = 402, + [1831] = 1560, + [1832] = 1518, + [1833] = 1523, + [1834] = 1525, + [1835] = 198, + [1836] = 200, + [1837] = 1530, + [1838] = 1437, + [1839] = 1494, + [1840] = 1532, + [1841] = 1534, + [1842] = 1535, + [1843] = 1827, + [1844] = 1439, + [1845] = 1772, + [1846] = 1440, + [1847] = 1445, + [1848] = 1848, + [1849] = 1744, + [1850] = 1538, + [1851] = 1851, + [1852] = 1852, + [1853] = 1853, + [1854] = 1854, + [1855] = 1855, + [1856] = 1510, + [1857] = 1785, + [1858] = 1511, + [1859] = 1859, + [1860] = 1860, + [1861] = 1861, + [1862] = 1862, + [1863] = 1738, + [1864] = 1862, + [1865] = 1865, + [1866] = 1772, + [1867] = 1853, + [1868] = 1571, + [1869] = 1573, + [1870] = 1744, + [1871] = 1555, + [1872] = 1563, + [1873] = 1852, + [1874] = 1859, + [1875] = 1701, + [1876] = 1876, + [1877] = 1859, + [1878] = 1862, + [1879] = 1772, + [1880] = 1744, + [1881] = 1852, + [1882] = 1517, + [1883] = 1860, + [1884] = 1859, + [1885] = 1862, + [1886] = 1450, + [1887] = 1772, + [1888] = 1852, + [1889] = 1859, + [1890] = 1862, + [1891] = 1772, + [1892] = 1852, + [1893] = 1859, + [1894] = 1862, + [1895] = 1772, + [1896] = 1852, + [1897] = 1859, + [1898] = 1862, [1899] = 1899, - [1900] = 1817, - [1901] = 1834, - [1902] = 1805, - [1903] = 1460, - [1904] = 1730, - [1905] = 1905, - [1906] = 1906, + [1900] = 1900, + [1901] = 1901, + [1902] = 1519, + [1903] = 1521, + [1904] = 1522, + [1905] = 1466, + [1906] = 1527, [1907] = 1907, - [1908] = 1908, - [1909] = 1909, - [1910] = 1910, - [1911] = 1911, - [1912] = 1899, - [1913] = 1913, + [1908] = 1528, + [1909] = 1529, + [1910] = 1852, + [1911] = 1469, + [1912] = 1865, + [1913] = 1472, [1914] = 1914, - [1915] = 1908, - [1916] = 1916, + [1915] = 1861, + [1916] = 1477, [1917] = 1917, [1918] = 1918, [1919] = 1919, - [1920] = 1920, + [1920] = 1917, [1921] = 1921, - [1922] = 1920, - [1923] = 1923, + [1922] = 1922, + [1923] = 1763, [1924] = 1924, - [1925] = 1910, - [1926] = 1724, - [1927] = 1923, - [1928] = 1716, - [1929] = 1905, - [1930] = 1914, - [1931] = 1917, - [1932] = 1919, - [1933] = 1911, - [1934] = 1934, - [1935] = 1918, - [1936] = 1906, - [1937] = 1905, - [1938] = 1938, + [1925] = 1925, + [1926] = 1926, + [1927] = 1707, + [1928] = 1928, + [1929] = 1929, + [1930] = 1919, + [1931] = 1931, + [1932] = 1932, + [1933] = 1928, + [1934] = 1907, + [1935] = 1935, + [1936] = 1936, + [1937] = 1937, + [1938] = 1931, [1939] = 1939, - [1940] = 1924, - [1941] = 1921, - [1942] = 1942, - [1943] = 1942, - [1944] = 1944, + [1940] = 1940, + [1941] = 1931, + [1942] = 1937, + [1943] = 1943, + [1944] = 1924, [1945] = 1945, - [1946] = 1946, - [1947] = 1946, - [1948] = 1944, - [1949] = 1945, - [1950] = 1950, - [1951] = 1951, - [1952] = 1952, - [1953] = 1953, + [1946] = 1922, + [1947] = 1932, + [1948] = 1925, + [1949] = 1949, + [1950] = 1926, + [1951] = 1921, + [1952] = 1918, + [1953] = 1936, [1954] = 1954, - [1955] = 1954, - [1956] = 1953, - [1957] = 1954, - [1958] = 1953, + [1955] = 1955, + [1956] = 1956, + [1957] = 1955, + [1958] = 1958, [1959] = 1954, - [1960] = 1954, - [1961] = 1954, + [1960] = 1958, + [1961] = 1956, [1962] = 1962, - [1963] = 1962, - [1964] = 178, - [1965] = 182, - [1966] = 1041, - [1967] = 1057, - [1968] = 1069, - [1969] = 1056, - [1970] = 1970, - [1971] = 1061, - [1972] = 1051, - [1973] = 1049, - [1974] = 1053, - [1975] = 1058, - [1976] = 1061, - [1977] = 1282, - [1978] = 1062, - [1979] = 1229, - [1980] = 1056, - [1981] = 1069, - [1982] = 1335, - [1983] = 1175, - [1984] = 1060, - [1985] = 1057, - [1986] = 1068, - [1987] = 1987, - [1988] = 1077, - [1989] = 1073, - [1990] = 1075, - [1991] = 1134, - [1992] = 1084, - [1993] = 1109, - [1994] = 1106, - [1995] = 1995, - [1996] = 1996, - [1997] = 1996, - [1998] = 1998, - [1999] = 1108, - [2000] = 1113, - [2001] = 1102, - [2002] = 1138, - [2003] = 2003, - [2004] = 209, - [2005] = 1101, - [2006] = 1115, - [2007] = 1230, - [2008] = 210, - [2009] = 401, - [2010] = 1136, - [2011] = 1336, - [2012] = 1135, - [2013] = 394, - [2014] = 1283, - [2015] = 1564, - [2016] = 2016, - [2017] = 1114, - [2018] = 2003, - [2019] = 1112, - [2020] = 1176, - [2021] = 2003, - [2022] = 1177, - [2023] = 1178, - [2024] = 1137, - [2025] = 1100, - [2026] = 1995, - [2027] = 1111, - [2028] = 1460, - [2029] = 1457, - [2030] = 1526, - [2031] = 1568, - [2032] = 1455, - [2033] = 1424, - [2034] = 1488, - [2035] = 1429, - [2036] = 1420, - [2037] = 1426, - [2038] = 1421, - [2039] = 1418, - [2040] = 1483, - [2041] = 1566, - [2042] = 1484, - [2043] = 1422, - [2044] = 1449, - [2045] = 1485, - [2046] = 1417, - [2047] = 1486, - [2048] = 2048, - [2049] = 1450, - [2050] = 1497, - [2051] = 1487, - [2052] = 1490, - [2053] = 1461, - [2054] = 1462, - [2055] = 1471, - [2056] = 1427, - [2057] = 1571, - [2058] = 1456, - [2059] = 1515, - [2060] = 1451, - [2061] = 1472, - [2062] = 1423, - [2063] = 1454, - [2064] = 1995, - [2065] = 1489, - [2066] = 1430, - [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 2070, - [2071] = 176, - [2072] = 180, + [1963] = 1963, + [1964] = 1964, + [1965] = 1965, + [1966] = 1966, + [1967] = 1965, + [1968] = 1966, + [1969] = 1966, + [1970] = 1965, + [1971] = 1965, + [1972] = 1965, + [1973] = 1965, + [1974] = 1974, + [1975] = 1974, + [1976] = 149, + [1977] = 152, + [1978] = 1078, + [1979] = 1082, + [1980] = 1084, + [1981] = 1080, + [1982] = 1982, + [1983] = 1063, + [1984] = 1192, + [1985] = 1352, + [1986] = 1246, + [1987] = 1080, + [1988] = 1084, + [1989] = 1082, + [1990] = 1078, + [1991] = 1061, + [1992] = 1299, + [1993] = 1062, + [1994] = 1994, + [1995] = 1093, + [1996] = 1097, + [1997] = 1092, + [1998] = 1151, + [1999] = 1072, + [2000] = 1094, + [2001] = 2001, + [2002] = 2002, + [2003] = 1123, + [2004] = 2004, + [2005] = 2002, + [2006] = 1125, + [2007] = 1085, + [2008] = 1126, + [2009] = 1087, + [2010] = 1086, + [2011] = 1090, + [2012] = 1247, + [2013] = 1562, + [2014] = 2014, + [2015] = 1130, + [2016] = 1300, + [2017] = 2014, + [2018] = 200, + [2019] = 1194, + [2020] = 404, + [2021] = 1117, + [2022] = 402, + [2023] = 1353, + [2024] = 1119, + [2025] = 1193, + [2026] = 1129, + [2027] = 1152, + [2028] = 2004, + [2029] = 2014, + [2030] = 198, + [2031] = 1118, + [2032] = 2032, + [2033] = 1462, + [2034] = 1442, + [2035] = 1443, + [2036] = 1444, + [2037] = 1500, + [2038] = 1501, + [2039] = 1559, + [2040] = 1556, + [2041] = 2041, + [2042] = 1516, + [2043] = 1561, + [2044] = 1502, + [2045] = 1503, + [2046] = 1504, + [2047] = 1505, + [2048] = 1449, + [2049] = 2004, + [2050] = 1474, + [2051] = 1423, + [2052] = 1475, + [2053] = 1476, + [2054] = 1426, + [2055] = 2055, + [2056] = 1481, + [2057] = 1520, + [2058] = 1526, + [2059] = 1421, + [2060] = 1483, + [2061] = 1455, + [2062] = 1456, + [2063] = 1458, + [2064] = 1459, + [2065] = 1461, + [2066] = 1507, + [2067] = 1463, + [2068] = 1465, + [2069] = 1448, + [2070] = 1506, + [2071] = 1132, + [2072] = 147, [2073] = 2073, [2074] = 2074, - [2075] = 1970, - [2076] = 2076, - [2077] = 1069, - [2078] = 1069, - [2079] = 1057, - [2080] = 1056, - [2081] = 1061, - [2082] = 1056, - [2083] = 1061, - [2084] = 1069, - [2085] = 1056, - [2086] = 1057, - [2087] = 1057, - [2088] = 1061, - [2089] = 2089, - [2090] = 2090, - [2091] = 2091, - [2092] = 2092, - [2093] = 2089, - [2094] = 2094, - [2095] = 2091, - [2096] = 2092, - [2097] = 2097, - [2098] = 2098, + [2075] = 151, + [2076] = 1155, + [2077] = 1153, + [2078] = 2078, + [2079] = 1131, + [2080] = 1128, + [2081] = 1154, + [2082] = 1195, + [2083] = 1080, + [2084] = 2084, + [2085] = 1082, + [2086] = 1078, + [2087] = 2087, + [2088] = 1084, + [2089] = 1082, + [2090] = 1084, + [2091] = 1080, + [2092] = 1082, + [2093] = 1080, + [2094] = 1078, + [2095] = 1084, + [2096] = 2096, + [2097] = 1982, + [2098] = 1078, [2099] = 2099, - [2100] = 379, - [2101] = 2098, + [2100] = 2100, + [2101] = 2101, [2102] = 2102, [2103] = 2103, - [2104] = 2104, + [2104] = 2100, [2105] = 2105, - [2106] = 2106, - [2107] = 2107, - [2108] = 381, + [2106] = 2105, + [2107] = 2103, + [2108] = 2108, [2109] = 2109, - [2110] = 2110, + [2110] = 392, [2111] = 2111, - [2112] = 389, - [2113] = 378, + [2112] = 2112, + [2113] = 2113, [2114] = 2114, - [2115] = 2115, + [2115] = 1062, [2116] = 2116, - [2117] = 1998, + [2117] = 2117, [2118] = 2118, [2119] = 2119, [2120] = 2120, [2121] = 2121, - [2122] = 2122, - [2123] = 2121, - [2124] = 380, - [2125] = 2125, - [2126] = 2111, - [2127] = 2127, - [2128] = 2120, - [2129] = 2129, + [2122] = 2117, + [2123] = 391, + [2124] = 2124, + [2125] = 1061, + [2126] = 2126, + [2127] = 1078, + [2128] = 2128, + [2129] = 2121, [2130] = 2130, - [2131] = 2129, - [2132] = 2122, - [2133] = 2133, - [2134] = 2109, - [2135] = 2110, + [2131] = 2131, + [2132] = 1082, + [2133] = 389, + [2134] = 2134, + [2135] = 2001, [2136] = 2136, - [2137] = 1069, - [2138] = 1057, - [2139] = 1056, - [2140] = 2136, - [2141] = 1061, - [2142] = 2142, + [2137] = 1084, + [2138] = 2138, + [2139] = 2139, + [2140] = 390, + [2141] = 2141, + [2142] = 2141, [2143] = 2143, [2144] = 2144, [2145] = 2145, - [2146] = 2146, - [2147] = 2147, - [2148] = 2148, - [2149] = 2149, - [2150] = 2150, + [2146] = 1080, + [2147] = 2144, + [2148] = 2128, + [2149] = 2118, + [2150] = 2143, [2151] = 2151, - [2152] = 2152, - [2153] = 2153, - [2154] = 2154, - [2155] = 2155, + [2152] = 393, + [2153] = 2120, + [2154] = 1063, + [2155] = 2114, [2156] = 2156, [2157] = 2157, - [2158] = 2149, + [2158] = 2158, [2159] = 2159, [2160] = 2160, [2161] = 2161, - [2162] = 2162, - [2163] = 2162, + [2162] = 2158, + [2163] = 2163, [2164] = 2164, - [2165] = 2165, - [2166] = 2166, + [2165] = 411, + [2166] = 2164, [2167] = 2167, [2168] = 2168, - [2169] = 2155, - [2170] = 2159, + [2169] = 2169, + [2170] = 2170, [2171] = 2171, - [2172] = 405, + [2172] = 2172, [2173] = 2173, [2174] = 2174, - [2175] = 2155, + [2175] = 2175, [2176] = 2176, [2177] = 2177, [2178] = 2178, @@ -6172,409 +6172,409 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2183] = 2183, [2184] = 2184, [2185] = 2185, - [2186] = 2186, + [2186] = 1072, [2187] = 2187, [2188] = 2188, [2189] = 2189, [2190] = 2190, - [2191] = 2016, - [2192] = 1998, - [2193] = 2193, - [2194] = 2164, - [2195] = 1998, - [2196] = 1077, - [2197] = 2197, - [2198] = 2198, + [2191] = 2191, + [2192] = 2192, + [2193] = 2001, + [2194] = 2194, + [2195] = 2160, + [2196] = 2196, + [2197] = 2172, + [2198] = 2172, [2199] = 2199, - [2200] = 2200, - [2201] = 2201, - [2202] = 2202, - [2203] = 2203, + [2200] = 2032, + [2201] = 2168, + [2202] = 2001, + [2203] = 2172, [2204] = 2204, [2205] = 2205, [2206] = 2206, [2207] = 2207, - [2208] = 1073, - [2209] = 2197, - [2210] = 2210, + [2208] = 2208, + [2209] = 2209, + [2210] = 2172, [2211] = 2211, - [2212] = 2199, + [2212] = 2001, [2213] = 2213, [2214] = 2214, - [2215] = 2198, - [2216] = 2207, - [2217] = 1084, - [2218] = 2016, - [2219] = 2199, - [2220] = 2211, - [2221] = 2221, + [2215] = 2215, + [2216] = 1085, + [2217] = 2217, + [2218] = 1093, + [2219] = 1097, + [2220] = 2220, + [2221] = 2213, [2222] = 2222, - [2223] = 2210, - [2224] = 2213, - [2225] = 2202, + [2223] = 2220, + [2224] = 2224, + [2225] = 2225, [2226] = 2226, - [2227] = 2227, - [2228] = 2228, - [2229] = 2203, - [2230] = 1998, - [2231] = 2231, + [2227] = 2225, + [2228] = 2225, + [2229] = 1086, + [2230] = 2230, + [2231] = 2220, [2232] = 2232, - [2233] = 2214, - [2234] = 2211, - [2235] = 2206, + [2233] = 1094, + [2234] = 2217, + [2235] = 1090, [2236] = 2236, - [2237] = 2016, - [2238] = 2222, - [2239] = 2231, - [2240] = 2200, - [2241] = 2232, - [2242] = 2201, - [2243] = 1075, - [2244] = 2244, + [2237] = 1087, + [2238] = 2214, + [2239] = 2032, + [2240] = 2240, + [2241] = 2241, + [2242] = 2242, + [2243] = 2241, + [2244] = 2215, [2245] = 2245, [2246] = 2246, - [2247] = 2247, + [2247] = 2245, [2248] = 2248, - [2249] = 2249, + [2249] = 2032, [2250] = 2250, - [2251] = 2251, + [2251] = 2236, [2252] = 2252, - [2253] = 2253, - [2254] = 2244, + [2253] = 2226, + [2254] = 2254, [2255] = 2255, - [2256] = 2256, - [2257] = 2257, - [2258] = 2258, - [2259] = 2259, - [2260] = 2260, - [2261] = 2261, - [2262] = 2245, + [2256] = 2232, + [2257] = 2255, + [2258] = 2252, + [2259] = 2246, + [2260] = 1092, + [2261] = 2250, + [2262] = 2254, [2263] = 2263, [2264] = 2264, [2265] = 2265, - [2266] = 2250, + [2266] = 2266, [2267] = 2267, - [2268] = 2267, + [2268] = 2268, [2269] = 2269, [2270] = 2270, - [2271] = 2271, + [2271] = 2269, [2272] = 2272, - [2273] = 2016, + [2273] = 2266, [2274] = 2274, [2275] = 2275, - [2276] = 2253, + [2276] = 2276, [2277] = 2277, [2278] = 2278, - [2279] = 2271, - [2280] = 2261, - [2281] = 2256, + [2279] = 2279, + [2280] = 2280, + [2281] = 2277, [2282] = 2282, - [2283] = 2263, - [2284] = 2249, - [2285] = 2257, + [2283] = 2283, + [2284] = 2282, + [2285] = 2264, [2286] = 2286, - [2287] = 2275, + [2287] = 2287, [2288] = 2288, - [2289] = 2246, - [2290] = 2272, + [2289] = 2289, + [2290] = 2290, [2291] = 2291, - [2292] = 2286, - [2293] = 2251, - [2294] = 2255, + [2292] = 2292, + [2293] = 2289, + [2294] = 2280, [2295] = 2295, - [2296] = 2248, - [2297] = 2258, - [2298] = 2298, - [2299] = 2269, - [2300] = 2300, - [2301] = 2301, + [2296] = 2283, + [2297] = 2297, + [2298] = 2291, + [2299] = 2299, + [2300] = 2263, + [2301] = 2286, [2302] = 2302, - [2303] = 2303, - [2304] = 2304, + [2303] = 2290, + [2304] = 2292, [2305] = 2305, - [2306] = 2306, - [2307] = 2307, + [2306] = 2272, + [2307] = 2295, [2308] = 2308, - [2309] = 2069, - [2310] = 2310, - [2311] = 2311, - [2312] = 2312, - [2313] = 2312, - [2314] = 2314, - [2315] = 2315, - [2316] = 2307, - [2317] = 2311, - [2318] = 2302, + [2309] = 2032, + [2310] = 2305, + [2311] = 2268, + [2312] = 2275, + [2313] = 2313, + [2314] = 2302, + [2315] = 2267, + [2316] = 2316, + [2317] = 2317, + [2318] = 2318, [2319] = 2319, [2320] = 2320, [2321] = 2321, [2322] = 2322, - [2323] = 2323, + [2323] = 2322, [2324] = 2324, [2325] = 2325, [2326] = 2326, - [2327] = 2301, - [2328] = 2314, - [2329] = 2303, - [2330] = 2304, - [2331] = 2308, - [2332] = 2310, + [2327] = 2327, + [2328] = 2317, + [2329] = 2329, + [2330] = 2330, + [2331] = 2331, + [2332] = 2318, [2333] = 2333, - [2334] = 2300, - [2335] = 2333, + [2334] = 2320, + [2335] = 2321, [2336] = 2336, - [2337] = 2320, - [2338] = 2322, - [2339] = 2323, - [2340] = 2305, + [2337] = 2337, + [2338] = 2338, + [2339] = 2339, + [2340] = 2340, [2341] = 2324, - [2342] = 2325, - [2343] = 2306, + [2342] = 2342, + [2343] = 2078, [2344] = 2344, - [2345] = 2321, + [2345] = 2331, [2346] = 2346, [2347] = 2347, [2348] = 2348, [2349] = 2349, - [2350] = 2350, - [2351] = 2300, - [2352] = 2352, + [2350] = 2329, + [2351] = 2351, + [2352] = 2337, [2353] = 2353, - [2354] = 2347, + [2354] = 2324, [2355] = 2355, - [2356] = 2315, + [2356] = 2346, [2357] = 2357, - [2358] = 2358, + [2358] = 2319, [2359] = 2359, [2360] = 2360, [2361] = 2361, - [2362] = 2362, - [2363] = 2363, - [2364] = 2364, - [2365] = 178, - [2366] = 2366, - [2367] = 2367, + [2362] = 2340, + [2363] = 2349, + [2364] = 2336, + [2365] = 2342, + [2366] = 2347, + [2367] = 2351, [2368] = 2368, - [2369] = 2369, - [2370] = 2370, + [2369] = 2326, + [2370] = 2353, [2371] = 2371, - [2372] = 2372, - [2373] = 2373, - [2374] = 180, - [2375] = 2373, - [2376] = 2360, + [2372] = 2333, + [2373] = 2357, + [2374] = 2359, + [2375] = 2375, + [2376] = 2376, [2377] = 2377, [2378] = 2378, [2379] = 2379, [2380] = 2380, - [2381] = 2381, - [2382] = 2382, - [2383] = 2378, - [2384] = 2382, - [2385] = 2367, - [2386] = 2386, + [2381] = 147, + [2382] = 2378, + [2383] = 2383, + [2384] = 149, + [2385] = 2377, + [2386] = 151, [2387] = 2387, [2388] = 2388, - [2389] = 2074, - [2390] = 2390, + [2389] = 2389, + [2390] = 1195, [2391] = 2391, - [2392] = 2392, - [2393] = 2393, - [2394] = 2358, + [2392] = 2380, + [2393] = 2379, + [2394] = 2087, [2395] = 2395, - [2396] = 2379, - [2397] = 176, - [2398] = 2398, - [2399] = 182, - [2400] = 2377, - [2401] = 2076, - [2402] = 2362, - [2403] = 2070, - [2404] = 2371, - [2405] = 2372, + [2396] = 2396, + [2397] = 1128, + [2398] = 2383, + [2399] = 2399, + [2400] = 2400, + [2401] = 2401, + [2402] = 2402, + [2403] = 2403, + [2404] = 2404, + [2405] = 2405, [2406] = 2406, [2407] = 2407, [2408] = 2408, - [2409] = 2409, + [2409] = 2376, [2410] = 2410, - [2411] = 2361, - [2412] = 2410, - [2413] = 2413, - [2414] = 2364, - [2415] = 2371, - [2416] = 2372, + [2411] = 2411, + [2412] = 2412, + [2413] = 2410, + [2414] = 2411, + [2415] = 152, + [2416] = 2416, [2417] = 2417, - [2418] = 2369, - [2419] = 2373, - [2420] = 2359, - [2421] = 2387, + [2418] = 2379, + [2419] = 2419, + [2420] = 2420, + [2421] = 2421, [2422] = 2422, - [2423] = 2380, - [2424] = 2386, + [2423] = 2423, + [2424] = 2424, [2425] = 2425, - [2426] = 2407, - [2427] = 2427, - [2428] = 2363, - [2429] = 2429, - [2430] = 2430, + [2426] = 2383, + [2427] = 2375, + [2428] = 2420, + [2429] = 2404, + [2430] = 2074, [2431] = 2431, - [2432] = 2371, + [2432] = 2416, [2433] = 2433, - [2434] = 2434, + [2434] = 2399, [2435] = 2433, - [2436] = 2434, - [2437] = 2372, - [2438] = 2373, - [2439] = 2429, - [2440] = 2381, - [2441] = 2393, - [2442] = 2430, - [2443] = 2408, - [2444] = 2417, - [2445] = 2429, - [2446] = 2390, - [2447] = 2447, - [2448] = 2406, - [2449] = 2392, - [2450] = 2388, - [2451] = 2398, - [2452] = 2427, - [2453] = 2378, - [2454] = 2368, - [2455] = 2395, - [2456] = 2456, - [2457] = 2457, - [2458] = 2458, + [2436] = 2407, + [2437] = 2417, + [2438] = 2423, + [2439] = 2439, + [2440] = 2440, + [2441] = 1132, + [2442] = 2442, + [2443] = 2443, + [2444] = 2444, + [2445] = 2431, + [2446] = 2446, + [2447] = 2388, + [2448] = 2439, + [2449] = 1153, + [2450] = 2425, + [2451] = 2380, + [2452] = 2433, + [2453] = 2402, + [2454] = 2444, + [2455] = 2387, + [2456] = 2395, + [2457] = 2412, + [2458] = 2443, [2459] = 2459, - [2460] = 2458, - [2461] = 2461, - [2462] = 2462, - [2463] = 2463, - [2464] = 2464, - [2465] = 2461, - [2466] = 2466, - [2467] = 2467, - [2468] = 2468, + [2460] = 2422, + [2461] = 2396, + [2462] = 1131, + [2463] = 2389, + [2464] = 2383, + [2465] = 2096, + [2466] = 2421, + [2467] = 2424, + [2468] = 1154, [2469] = 2469, - [2470] = 2470, - [2471] = 2471, - [2472] = 2472, - [2473] = 2473, - [2474] = 2474, - [2475] = 2475, + [2470] = 1155, + [2471] = 2401, + [2472] = 2419, + [2473] = 2406, + [2474] = 2380, + [2475] = 2442, [2476] = 2476, [2477] = 2477, [2478] = 2478, [2479] = 2479, [2480] = 2480, - [2481] = 2476, - [2482] = 2469, - [2483] = 2483, + [2481] = 2481, + [2482] = 2482, + [2483] = 1056, [2484] = 2484, - [2485] = 1088, + [2485] = 2485, [2486] = 2486, - [2487] = 1402, - [2488] = 2488, + [2487] = 2487, + [2488] = 1102, [2489] = 2489, [2490] = 2490, - [2491] = 2489, - [2492] = 2473, - [2493] = 2472, + [2491] = 1192, + [2492] = 1246, + [2493] = 1299, [2494] = 2494, - [2495] = 2488, + [2495] = 1352, [2496] = 2496, - [2497] = 2456, - [2498] = 1175, - [2499] = 2489, - [2500] = 2486, - [2501] = 2094, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, + [2500] = 2500, + [2501] = 2501, [2502] = 2502, - [2503] = 1229, - [2504] = 2488, + [2503] = 2503, + [2504] = 2504, [2505] = 2505, [2506] = 2506, - [2507] = 1282, - [2508] = 2097, - [2509] = 1335, + [2507] = 2507, + [2508] = 1099, + [2509] = 2509, [2510] = 2510, [2511] = 2511, [2512] = 2512, - [2513] = 2513, + [2513] = 2498, [2514] = 2514, - [2515] = 2473, + [2515] = 2515, [2516] = 2516, - [2517] = 2517, + [2517] = 2512, [2518] = 2518, - [2519] = 2513, - [2520] = 2520, - [2521] = 2466, + [2519] = 2487, + [2520] = 2516, + [2521] = 2478, [2522] = 2522, - [2523] = 2479, + [2523] = 2499, [2524] = 2524, - [2525] = 2525, + [2525] = 1103, [2526] = 2526, - [2527] = 2489, - [2528] = 2496, - [2529] = 2529, - [2530] = 2473, - [2531] = 2467, + [2527] = 2527, + [2528] = 2528, + [2529] = 2514, + [2530] = 2515, + [2531] = 2531, [2532] = 2532, - [2533] = 2533, - [2534] = 2469, - [2535] = 2512, - [2536] = 2475, - [2537] = 2537, - [2538] = 1036, - [2539] = 2539, - [2540] = 2525, - [2541] = 2541, - [2542] = 2542, - [2543] = 2543, - [2544] = 2517, + [2533] = 2518, + [2534] = 2528, + [2535] = 2535, + [2536] = 2536, + [2537] = 2532, + [2538] = 2489, + [2539] = 2494, + [2540] = 2503, + [2541] = 2507, + [2542] = 2498, + [2543] = 2515, + [2544] = 2516, [2545] = 2478, [2546] = 2546, - [2547] = 2547, - [2548] = 2480, - [2549] = 2549, - [2550] = 2517, + [2547] = 2526, + [2548] = 2548, + [2549] = 2516, + [2550] = 2535, [2551] = 2551, - [2552] = 2466, - [2553] = 2496, - [2554] = 2456, - [2555] = 2555, - [2556] = 2546, - [2557] = 2459, - [2558] = 1087, - [2559] = 1394, - [2560] = 2471, - [2561] = 2561, - [2562] = 2532, - [2563] = 2563, - [2564] = 2477, + [2552] = 2552, + [2553] = 2553, + [2554] = 2554, + [2555] = 2479, + [2556] = 2556, + [2557] = 2557, + [2558] = 2526, + [2559] = 2509, + [2560] = 2560, + [2561] = 2099, + [2562] = 2562, + [2563] = 2102, + [2564] = 2564, [2565] = 2565, [2566] = 2566, [2567] = 2567, - [2568] = 2568, - [2569] = 2569, - [2570] = 2570, - [2571] = 2571, + [2568] = 2527, + [2569] = 2531, + [2570] = 2478, + [2571] = 2510, [2572] = 2572, - [2573] = 2572, - [2574] = 2574, - [2575] = 2575, - [2576] = 2576, + [2573] = 2573, + [2574] = 2507, + [2575] = 2510, + [2576] = 1098, [2577] = 2577, - [2578] = 2578, + [2578] = 2536, [2579] = 2579, - [2580] = 2578, - [2581] = 2581, - [2582] = 2582, - [2583] = 2583, - [2584] = 2570, + [2580] = 2579, + [2581] = 2479, + [2582] = 2522, + [2583] = 2515, + [2584] = 2477, [2585] = 2585, [2586] = 2586, [2587] = 2587, - [2588] = 2104, + [2588] = 2588, [2589] = 2589, [2590] = 2590, [2591] = 2591, @@ -6589,282 +6589,282 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2600] = 2600, [2601] = 2601, [2602] = 2602, - [2603] = 2603, - [2604] = 2105, - [2605] = 2566, - [2606] = 2565, + [2603] = 2601, + [2604] = 2604, + [2605] = 2605, + [2606] = 2606, [2607] = 2607, - [2608] = 2583, - [2609] = 2106, + [2608] = 2608, + [2609] = 2609, [2610] = 2610, - [2611] = 2572, - [2612] = 2578, - [2613] = 2107, + [2611] = 2593, + [2612] = 2612, + [2613] = 2613, [2614] = 2614, [2615] = 2615, [2616] = 2616, - [2617] = 2568, - [2618] = 2618, - [2619] = 2571, - [2620] = 2620, - [2621] = 2621, + [2617] = 2617, + [2618] = 2592, + [2619] = 2597, + [2620] = 2607, + [2621] = 2608, [2622] = 2622, [2623] = 2623, [2624] = 2624, [2625] = 2625, - [2626] = 2614, - [2627] = 2570, - [2628] = 166, + [2626] = 2589, + [2627] = 2627, + [2628] = 2628, [2629] = 2629, - [2630] = 2615, + [2630] = 2605, [2631] = 2631, [2632] = 2632, - [2633] = 2602, - [2634] = 2603, - [2635] = 2602, + [2633] = 2633, + [2634] = 2634, + [2635] = 2635, [2636] = 2636, - [2637] = 2565, - [2638] = 2572, - [2639] = 2578, - [2640] = 2640, - [2641] = 2614, - [2642] = 2615, - [2643] = 2616, - [2644] = 2568, - [2645] = 2616, - [2646] = 2646, + [2637] = 2637, + [2638] = 2599, + [2639] = 2639, + [2640] = 2631, + [2641] = 2641, + [2642] = 2642, + [2643] = 2643, + [2644] = 2627, + [2645] = 2610, + [2646] = 2616, [2647] = 2647, - [2648] = 2648, + [2648] = 2642, [2649] = 2649, - [2650] = 2602, - [2651] = 2651, - [2652] = 2572, - [2653] = 2567, - [2654] = 2616, - [2655] = 2568, - [2656] = 2656, - [2657] = 2657, - [2658] = 2594, - [2659] = 2568, - [2660] = 2596, - [2661] = 2597, + [2650] = 2635, + [2651] = 2595, + [2652] = 2652, + [2653] = 2653, + [2654] = 2654, + [2655] = 2604, + [2656] = 2606, + [2657] = 2643, + [2658] = 2658, + [2659] = 2659, + [2660] = 2660, + [2661] = 2661, [2662] = 2662, - [2663] = 2582, - [2664] = 2664, - [2665] = 2575, + [2663] = 2663, + [2664] = 2659, + [2665] = 2665, [2666] = 2666, [2667] = 2667, - [2668] = 2616, - [2669] = 2568, + [2668] = 2668, + [2669] = 2669, [2670] = 2670, [2671] = 2671, - [2672] = 2581, - [2673] = 2574, + [2672] = 2671, + [2673] = 2673, [2674] = 2674, - [2675] = 2567, + [2675] = 2675, [2676] = 2676, - [2677] = 2623, - [2678] = 2678, - [2679] = 2679, - [2680] = 2651, + [2677] = 2677, + [2678] = 2637, + [2679] = 182, + [2680] = 2680, [2681] = 2681, - [2682] = 2682, - [2683] = 2587, - [2684] = 2666, - [2685] = 2569, - [2686] = 2686, - [2687] = 2603, - [2688] = 2688, - [2689] = 2568, - [2690] = 2585, - [2691] = 2691, - [2692] = 2566, - [2693] = 2640, - [2694] = 2596, + [2682] = 2112, + [2683] = 2622, + [2684] = 2124, + [2685] = 2108, + [2686] = 2136, + [2687] = 2660, + [2688] = 2662, + [2689] = 2665, + [2690] = 2690, + [2691] = 2661, + [2692] = 2674, + [2693] = 2653, + [2694] = 2639, [2695] = 2695, - [2696] = 2600, - [2697] = 2565, - [2698] = 2698, - [2699] = 2571, - [2700] = 2597, - [2701] = 2695, - [2702] = 2702, - [2703] = 2571, - [2704] = 2598, - [2705] = 2705, - [2706] = 2706, - [2707] = 2599, - [2708] = 2708, - [2709] = 2616, + [2696] = 2696, + [2697] = 2649, + [2698] = 2632, + [2699] = 2699, + [2700] = 2633, + [2701] = 2598, + [2702] = 2599, + [2703] = 2600, + [2704] = 2704, + [2705] = 2601, + [2706] = 2602, + [2707] = 2609, + [2708] = 2625, + [2709] = 2593, [2710] = 2710, - [2711] = 2702, - [2712] = 2712, - [2713] = 2679, - [2714] = 167, - [2715] = 2587, - [2716] = 2118, - [2717] = 2717, - [2718] = 2575, + [2711] = 2612, + [2712] = 2613, + [2713] = 2614, + [2714] = 2592, + [2715] = 2597, + [2716] = 2607, + [2717] = 2608, + [2718] = 2623, [2719] = 2719, - [2720] = 2601, - [2721] = 2607, - [2722] = 2602, - [2723] = 2723, - [2724] = 2624, - [2725] = 2590, - [2726] = 2130, - [2727] = 2119, - [2728] = 2676, - [2729] = 2589, - [2730] = 2730, - [2731] = 2591, - [2732] = 2115, - [2733] = 2116, - [2734] = 2577, - [2735] = 2723, - [2736] = 2600, - [2737] = 2601, - [2738] = 2602, - [2739] = 2600, - [2740] = 2682, - [2741] = 2741, - [2742] = 2603, - [2743] = 2625, - [2744] = 2744, - [2745] = 2583, - [2746] = 2744, - [2747] = 2747, - [2748] = 2610, - [2749] = 2705, - [2750] = 2750, - [2751] = 2603, - [2752] = 2622, - [2753] = 2648, - [2754] = 2577, - [2755] = 2678, - [2756] = 2698, - [2757] = 2710, - [2758] = 2670, - [2759] = 2625, + [2720] = 2589, + [2721] = 2627, + [2722] = 2628, + [2723] = 2676, + [2724] = 2631, + [2725] = 2632, + [2726] = 2633, + [2727] = 2663, + [2728] = 2641, + [2729] = 2729, + [2730] = 2595, + [2731] = 2600, + [2732] = 2732, + [2733] = 2663, + [2734] = 2734, + [2735] = 2666, + [2736] = 2667, + [2737] = 2668, + [2738] = 2738, + [2739] = 2680, + [2740] = 2681, + [2741] = 2598, + [2742] = 2599, + [2743] = 2600, + [2744] = 2601, + [2745] = 2593, + [2746] = 2612, + [2747] = 2613, + [2748] = 2614, + [2749] = 2592, + [2750] = 2597, + [2751] = 2607, + [2752] = 2589, + [2753] = 2627, + [2754] = 2631, + [2755] = 2633, + [2756] = 2641, + [2757] = 183, + [2758] = 2663, + [2759] = 2600, [2760] = 2601, - [2761] = 2761, - [2762] = 2762, - [2763] = 2566, - [2764] = 2764, - [2765] = 2765, - [2766] = 2099, - [2767] = 2598, - [2768] = 2768, - [2769] = 2587, - [2770] = 2620, - [2771] = 2647, - [2772] = 2599, - [2773] = 2695, - [2774] = 2616, - [2775] = 2565, - [2776] = 2670, - [2777] = 2691, - [2778] = 2778, - [2779] = 2607, - [2780] = 2741, - [2781] = 2607, - [2782] = 2570, - [2783] = 2587, + [2761] = 2641, + [2762] = 2612, + [2763] = 2597, + [2764] = 2607, + [2765] = 2589, + [2766] = 2627, + [2767] = 2631, + [2768] = 2633, + [2769] = 2769, + [2770] = 2600, + [2771] = 2597, + [2772] = 2631, + [2773] = 2633, + [2774] = 2774, + [2775] = 2775, + [2776] = 2623, + [2777] = 2777, + [2778] = 2613, + [2779] = 2779, + [2780] = 2631, + [2781] = 2633, + [2782] = 2680, + [2783] = 2609, [2784] = 2784, - [2785] = 2785, - [2786] = 2695, - [2787] = 2621, - [2788] = 2583, - [2789] = 2133, - [2790] = 2688, - [2791] = 2103, - [2792] = 2610, - [2793] = 2579, - [2794] = 2794, - [2795] = 2730, - [2796] = 2796, - [2797] = 2615, - [2798] = 2717, - [2799] = 2761, - [2800] = 2674, - [2801] = 2768, - [2802] = 2802, - [2803] = 2590, - [2804] = 2572, - [2805] = 2578, - [2806] = 2581, - [2807] = 2594, - [2808] = 2708, - [2809] = 2636, - [2810] = 2595, - [2811] = 2747, - [2812] = 2614, - [2813] = 2785, - [2814] = 2814, - [2815] = 2615, - [2816] = 2632, - [2817] = 2632, - [2818] = 2717, - [2819] = 2614, - [2820] = 2764, - [2821] = 2610, - [2822] = 2778, - [2823] = 2823, + [2785] = 2605, + [2786] = 2786, + [2787] = 2704, + [2788] = 2681, + [2789] = 2789, + [2790] = 2628, + [2791] = 2791, + [2792] = 2614, + [2793] = 2791, + [2794] = 2131, + [2795] = 2634, + [2796] = 2139, + [2797] = 2151, + [2798] = 2798, + [2799] = 2799, + [2800] = 2800, + [2801] = 2109, + [2802] = 2666, + [2803] = 2610, + [2804] = 2616, + [2805] = 2156, + [2806] = 2667, + [2807] = 2690, + [2808] = 2668, + [2809] = 2126, + [2810] = 2145, + [2811] = 2116, + [2812] = 2699, + [2813] = 2799, + [2814] = 2729, + [2815] = 2585, + [2816] = 2816, + [2817] = 2817, + [2818] = 2800, + [2819] = 2817, + [2820] = 2784, + [2821] = 2654, + [2822] = 2609, + [2823] = 2609, [2824] = 2824, - [2825] = 2825, - [2826] = 2826, - [2827] = 2827, - [2828] = 2828, - [2829] = 2829, - [2830] = 2830, - [2831] = 2831, - [2832] = 2832, + [2825] = 2605, + [2826] = 2791, + [2827] = 2598, + [2828] = 2612, + [2829] = 2605, + [2830] = 2791, + [2831] = 2673, + [2832] = 2732, [2833] = 2833, - [2834] = 2834, - [2835] = 2835, - [2836] = 2836, - [2837] = 2837, + [2834] = 2586, + [2835] = 2789, + [2836] = 2636, + [2837] = 2629, [2838] = 2838, - [2839] = 2839, - [2840] = 2840, - [2841] = 2841, - [2842] = 2842, - [2843] = 2843, - [2844] = 2844, - [2845] = 2845, + [2839] = 2615, + [2840] = 2670, + [2841] = 2696, + [2842] = 2602, + [2843] = 2632, + [2844] = 2624, + [2845] = 2675, [2846] = 2846, [2847] = 2847, [2848] = 2848, - [2849] = 2848, + [2849] = 2849, [2850] = 2850, [2851] = 2851, - [2852] = 2852, + [2852] = 2176, [2853] = 2853, - [2854] = 2824, + [2854] = 2854, [2855] = 2855, [2856] = 2856, [2857] = 2857, - [2858] = 2858, + [2858] = 2194, [2859] = 2859, - [2860] = 2860, + [2860] = 2199, [2861] = 2861, - [2862] = 2829, + [2862] = 2862, [2863] = 2863, - [2864] = 2837, + [2864] = 2864, [2865] = 2865, [2866] = 2866, [2867] = 2867, [2868] = 2868, - [2869] = 2869, - [2870] = 2870, + [2869] = 2209, + [2870] = 2157, [2871] = 2871, [2872] = 2872, - [2873] = 2873, + [2873] = 2190, [2874] = 2874, - [2875] = 2875, + [2875] = 2187, [2876] = 2876, [2877] = 2877, - [2878] = 2865, + [2878] = 2850, [2879] = 2879, [2880] = 2880, [2881] = 2881, @@ -6872,297 +6872,297 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2883] = 2883, [2884] = 2884, [2885] = 2885, - [2886] = 2886, + [2886] = 170, [2887] = 2887, [2888] = 2888, [2889] = 2889, - [2890] = 2890, + [2890] = 2879, [2891] = 2891, - [2892] = 2892, + [2892] = 2884, [2893] = 2893, [2894] = 2894, [2895] = 2895, [2896] = 2896, - [2897] = 2144, - [2898] = 2147, + [2897] = 2851, + [2898] = 2898, [2899] = 2899, [2900] = 2900, [2901] = 2901, [2902] = 2902, [2903] = 2903, [2904] = 2904, - [2905] = 2152, + [2905] = 2905, [2906] = 2906, - [2907] = 2153, + [2907] = 2874, [2908] = 2908, - [2909] = 2850, - [2910] = 2874, + [2909] = 2909, + [2910] = 2910, [2911] = 2911, - [2912] = 2165, - [2913] = 2166, + [2912] = 2912, + [2913] = 2913, [2914] = 2914, - [2915] = 2171, - [2916] = 2892, + [2915] = 2915, + [2916] = 2916, [2917] = 2917, - [2918] = 2173, - [2919] = 2177, - [2920] = 2180, + [2918] = 2918, + [2919] = 2868, + [2920] = 2920, [2921] = 2921, [2922] = 2922, - [2923] = 2168, - [2924] = 2868, - [2925] = 2867, - [2926] = 2148, + [2923] = 2923, + [2924] = 2924, + [2925] = 2925, + [2926] = 2926, [2927] = 2927, [2928] = 2928, [2929] = 2929, - [2930] = 2930, - [2931] = 2931, - [2932] = 2932, - [2933] = 2933, + [2930] = 2885, + [2931] = 2889, + [2932] = 2182, + [2933] = 2204, [2934] = 2934, - [2935] = 2935, + [2935] = 2846, [2936] = 2936, - [2937] = 2937, + [2937] = 2181, [2938] = 2938, - [2939] = 2835, - [2940] = 2933, + [2939] = 2939, + [2940] = 2940, [2941] = 2941, - [2942] = 2942, - [2943] = 2825, - [2944] = 2944, + [2942] = 2903, + [2943] = 2943, + [2944] = 2173, [2945] = 2945, - [2946] = 2946, + [2946] = 2180, [2947] = 2947, - [2948] = 2826, - [2949] = 2827, - [2950] = 2843, - [2951] = 2900, - [2952] = 2914, - [2953] = 2151, + [2948] = 2948, + [2949] = 2949, + [2950] = 2208, + [2951] = 2948, + [2952] = 2952, + [2953] = 2953, [2954] = 2954, - [2955] = 2932, - [2956] = 2936, + [2955] = 2171, + [2956] = 2956, [2957] = 2957, - [2958] = 2838, - [2959] = 2944, + [2958] = 2958, + [2959] = 2959, [2960] = 2960, - [2961] = 2917, + [2961] = 2945, [2962] = 2962, [2963] = 2963, - [2964] = 2852, + [2964] = 2943, [2965] = 2965, - [2966] = 2853, + [2966] = 2920, [2967] = 2967, [2968] = 2968, - [2969] = 2957, - [2970] = 2970, + [2969] = 2969, + [2970] = 2939, [2971] = 2971, - [2972] = 2873, - [2973] = 2855, - [2974] = 2974, - [2975] = 2975, + [2972] = 2972, + [2973] = 2973, + [2974] = 2936, + [2975] = 2888, [2976] = 2976, [2977] = 2977, [2978] = 2978, - [2979] = 2979, + [2979] = 2929, [2980] = 2980, - [2981] = 2181, - [2982] = 2182, - [2983] = 2856, - [2984] = 2185, - [2985] = 2186, - [2986] = 2927, + [2981] = 2183, + [2982] = 2853, + [2983] = 2983, + [2984] = 2871, + [2985] = 2985, + [2986] = 2986, [2987] = 2987, - [2988] = 2988, + [2988] = 2978, [2989] = 2989, - [2990] = 2990, - [2991] = 2991, + [2990] = 2167, + [2991] = 2877, [2992] = 2992, - [2993] = 2843, - [2994] = 2928, - [2995] = 2883, - [2996] = 2884, - [2997] = 2929, + [2993] = 2855, + [2994] = 2994, + [2995] = 2859, + [2996] = 2862, + [2997] = 2863, [2998] = 2998, - [2999] = 2891, - [3000] = 2156, - [3001] = 2893, - [3002] = 2157, - [3003] = 3003, - [3004] = 2962, - [3005] = 2867, - [3006] = 2927, - [3007] = 2928, - [3008] = 2929, - [3009] = 2160, - [3010] = 2946, - [3011] = 3011, - [3012] = 2947, - [3013] = 2963, - [3014] = 2161, - [3015] = 3015, - [3016] = 2957, - [3017] = 2174, - [3018] = 2176, - [3019] = 2183, - [3020] = 2987, - [3021] = 2188, - [3022] = 2987, - [3023] = 2193, - [3024] = 2146, - [3025] = 2145, - [3026] = 2883, - [3027] = 2884, - [3028] = 2911, - [3029] = 2867, - [3030] = 2857, - [3031] = 3031, - [3032] = 2957, + [2999] = 2999, + [3000] = 3000, + [3001] = 2936, + [3002] = 2898, + [3003] = 2899, + [3004] = 3004, + [3005] = 2906, + [3006] = 2908, + [3007] = 2910, + [3008] = 2911, + [3009] = 2889, + [3010] = 3010, + [3011] = 2855, + [3012] = 2179, + [3013] = 3013, + [3014] = 3014, + [3015] = 2846, + [3016] = 2881, + [3017] = 3017, + [3018] = 3018, + [3019] = 3019, + [3020] = 3020, + [3021] = 2978, + [3022] = 3022, + [3023] = 3023, + [3024] = 2898, + [3025] = 2899, + [3026] = 3026, + [3027] = 3027, + [3028] = 2889, + [3029] = 3029, + [3030] = 2927, + [3031] = 2872, + [3032] = 2936, [3033] = 3033, - [3034] = 2840, - [3035] = 405, - [3036] = 3036, - [3037] = 2921, - [3038] = 2880, - [3039] = 3039, + [3034] = 3034, + [3035] = 411, + [3036] = 2918, + [3037] = 2211, + [3038] = 3010, + [3039] = 2896, [3040] = 3040, [3041] = 3041, - [3042] = 3042, - [3043] = 3043, - [3044] = 2931, - [3045] = 2904, - [3046] = 2858, - [3047] = 2883, - [3048] = 2884, - [3049] = 2991, - [3050] = 2831, - [3051] = 2885, - [3052] = 3052, + [3042] = 2956, + [3043] = 2987, + [3044] = 2957, + [3045] = 3045, + [3046] = 2188, + [3047] = 2189, + [3048] = 2898, + [3049] = 2862, + [3050] = 2899, + [3051] = 2863, + [3052] = 2978, [3053] = 3053, - [3054] = 2887, - [3055] = 2859, + [3054] = 2900, + [3055] = 3055, [3056] = 3056, - [3057] = 3057, - [3058] = 3058, - [3059] = 2988, + [3057] = 2901, + [3058] = 2927, + [3059] = 3059, [3060] = 3060, - [3061] = 2832, - [3062] = 2934, - [3063] = 3056, - [3064] = 2888, - [3065] = 2834, - [3066] = 2890, - [3067] = 2957, - [3068] = 3068, - [3069] = 3069, - [3070] = 175, - [3071] = 3071, - [3072] = 2935, + [3061] = 3061, + [3062] = 3062, + [3063] = 3063, + [3064] = 3064, + [3065] = 2170, + [3066] = 3066, + [3067] = 2902, + [3068] = 2859, + [3069] = 2904, + [3070] = 3070, + [3071] = 2847, + [3072] = 3072, [3073] = 3073, - [3074] = 3074, + [3074] = 2865, [3075] = 3075, - [3076] = 3076, - [3077] = 3077, - [3078] = 2891, - [3079] = 3079, - [3080] = 2906, - [3081] = 2893, + [3076] = 2174, + [3077] = 2175, + [3078] = 3034, + [3079] = 2906, + [3080] = 3018, + [3081] = 2926, [3082] = 3082, [3083] = 3083, - [3084] = 3084, - [3085] = 2828, - [3086] = 2946, - [3087] = 3087, - [3088] = 2947, - [3089] = 2937, + [3084] = 2908, + [3085] = 2905, + [3086] = 2177, + [3087] = 2987, + [3088] = 2967, + [3089] = 2178, [3090] = 3090, - [3091] = 2178, - [3092] = 2179, - [3093] = 2938, - [3094] = 3031, - [3095] = 2184, - [3096] = 3096, - [3097] = 2187, - [3098] = 2894, - [3099] = 2189, - [3100] = 2895, + [3091] = 3091, + [3092] = 2196, + [3093] = 2205, + [3094] = 2191, + [3095] = 2922, + [3096] = 2910, + [3097] = 2953, + [3098] = 2911, + [3099] = 3099, + [3100] = 2163, [3101] = 3101, - [3102] = 2190, - [3103] = 3069, - [3104] = 2861, - [3105] = 3101, - [3106] = 3056, - [3107] = 3058, - [3108] = 2150, - [3109] = 2823, - [3110] = 3110, - [3111] = 2856, - [3112] = 3112, + [3102] = 2206, + [3103] = 2161, + [3104] = 2940, + [3105] = 2866, + [3106] = 2968, + [3107] = 2169, + [3108] = 2184, + [3109] = 3109, + [3110] = 2912, + [3111] = 2913, + [3112] = 3062, [3113] = 3113, - [3114] = 2987, + [3114] = 3114, [3115] = 3115, [3116] = 3116, - [3117] = 2836, - [3118] = 2846, - [3119] = 3119, - [3120] = 2872, - [3121] = 2970, - [3122] = 2968, - [3123] = 3113, - [3124] = 2945, - [3125] = 2980, - [3126] = 2901, - [3127] = 3033, - [3128] = 2876, - [3129] = 3129, - [3130] = 3130, - [3131] = 2902, - [3132] = 2840, - [3133] = 3133, + [3117] = 3017, + [3118] = 3118, + [3119] = 2925, + [3120] = 3060, + [3121] = 3121, + [3122] = 3122, + [3123] = 3064, + [3124] = 3061, + [3125] = 3125, + [3126] = 2959, + [3127] = 2882, + [3128] = 3128, + [3129] = 2914, + [3130] = 2915, + [3131] = 2960, + [3132] = 2207, + [3133] = 2849, [3134] = 3134, - [3135] = 1427, - [3136] = 3136, - [3137] = 3137, + [3135] = 2962, + [3136] = 3020, + [3137] = 2916, [3138] = 3138, [3139] = 3139, - [3140] = 3140, - [3141] = 3141, + [3140] = 2159, + [3141] = 2963, [3142] = 3142, - [3143] = 3143, - [3144] = 3144, - [3145] = 3145, - [3146] = 3146, - [3147] = 3147, - [3148] = 3145, - [3149] = 3133, - [3150] = 3150, - [3151] = 3151, + [3143] = 2938, + [3144] = 2947, + [3145] = 3116, + [3146] = 2985, + [3147] = 2867, + [3148] = 3045, + [3149] = 2965, + [3150] = 2934, + [3151] = 3013, [3152] = 3152, - [3153] = 3153, - [3154] = 3154, - [3155] = 3155, + [3153] = 2891, + [3154] = 2986, + [3155] = 2936, [3156] = 3156, [3157] = 3157, - [3158] = 1456, + [3158] = 3158, [3159] = 3159, [3160] = 3160, [3161] = 3161, - [3162] = 1457, + [3162] = 3072, [3163] = 3163, [3164] = 3164, - [3165] = 3165, + [3165] = 3073, [3166] = 3166, [3167] = 3167, - [3168] = 3139, + [3168] = 3168, [3169] = 3169, [3170] = 3170, [3171] = 3171, [3172] = 3172, [3173] = 3173, - [3174] = 3174, + [3174] = 3161, [3175] = 3175, - [3176] = 3176, + [3176] = 3164, [3177] = 3177, [3178] = 3178, [3179] = 3179, @@ -7173,299 +7173,299 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3184] = 3184, [3185] = 3185, [3186] = 3186, - [3187] = 3151, + [3187] = 3187, [3188] = 3188, - [3189] = 3152, - [3190] = 3134, - [3191] = 3139, + [3189] = 3189, + [3190] = 3190, + [3191] = 3191, [3192] = 3192, [3193] = 3193, - [3194] = 3141, + [3194] = 3194, [3195] = 3195, - [3196] = 3196, + [3196] = 3169, [3197] = 3197, - [3198] = 3198, - [3199] = 3199, + [3198] = 3160, + [3199] = 3170, [3200] = 3200, - [3201] = 3184, - [3202] = 3139, + [3201] = 3171, + [3202] = 3166, [3203] = 3203, [3204] = 3204, - [3205] = 3143, + [3205] = 3169, [3206] = 3206, [3207] = 3207, - [3208] = 3196, - [3209] = 3133, - [3210] = 3150, + [3208] = 3173, + [3209] = 3209, + [3210] = 3160, [3211] = 3211, - [3212] = 3212, + [3212] = 3179, [3213] = 3213, - [3214] = 3204, - [3215] = 3161, + [3214] = 3214, + [3215] = 3215, [3216] = 3216, - [3217] = 3212, - [3218] = 3213, - [3219] = 3165, - [3220] = 3139, - [3221] = 3170, - [3222] = 3171, + [3217] = 3217, + [3218] = 3218, + [3219] = 3219, + [3220] = 3220, + [3221] = 3164, + [3222] = 3222, [3223] = 3223, - [3224] = 3224, + [3224] = 3170, [3225] = 3225, - [3226] = 3226, - [3227] = 3227, - [3228] = 3228, + [3226] = 3173, + [3227] = 3161, + [3228] = 3175, [3229] = 3229, - [3230] = 3155, + [3230] = 3230, [3231] = 3231, [3232] = 3232, - [3233] = 3233, - [3234] = 3137, - [3235] = 1484, - [3236] = 3169, - [3237] = 3237, - [3238] = 3188, - [3239] = 3143, + [3233] = 3173, + [3234] = 3234, + [3235] = 3173, + [3236] = 3192, + [3237] = 3156, + [3238] = 3238, + [3239] = 3239, [3240] = 3240, - [3241] = 3143, - [3242] = 3150, - [3243] = 3185, - [3244] = 3161, - [3245] = 3245, - [3246] = 3246, - [3247] = 3139, - [3248] = 3248, - [3249] = 3170, - [3250] = 3171, - [3251] = 3251, - [3252] = 3252, - [3253] = 3171, - [3254] = 3254, - [3255] = 3165, - [3256] = 3150, - [3257] = 3257, - [3258] = 3139, + [3241] = 3241, + [3242] = 3187, + [3243] = 3160, + [3244] = 3244, + [3245] = 3217, + [3246] = 3161, + [3247] = 3164, + [3248] = 3186, + [3249] = 3158, + [3250] = 3173, + [3251] = 3175, + [3252] = 3161, + [3253] = 3175, + [3254] = 3241, + [3255] = 3255, + [3256] = 3203, + [3257] = 3184, + [3258] = 3258, [3259] = 3170, - [3260] = 3171, + [3260] = 3260, [3261] = 3261, [3262] = 3262, - [3263] = 3263, - [3264] = 3200, - [3265] = 3265, - [3266] = 3266, - [3267] = 3150, - [3268] = 3139, - [3269] = 3170, - [3270] = 3171, - [3271] = 3166, + [3263] = 3217, + [3264] = 3264, + [3265] = 3173, + [3266] = 3161, + [3267] = 3175, + [3268] = 3268, + [3269] = 3269, + [3270] = 3270, + [3271] = 3178, [3272] = 3272, - [3273] = 3150, - [3274] = 3139, - [3275] = 3170, - [3276] = 3171, - [3277] = 3150, - [3278] = 3170, - [3279] = 3171, - [3280] = 3150, - [3281] = 3170, - [3282] = 3171, - [3283] = 3150, - [3284] = 3170, - [3285] = 3171, - [3286] = 3150, - [3287] = 3170, - [3288] = 3171, - [3289] = 3207, - [3290] = 3153, - [3291] = 3291, - [3292] = 3292, - [3293] = 3265, - [3294] = 3294, - [3295] = 3139, - [3296] = 3175, - [3297] = 3141, + [3273] = 3217, + [3274] = 3173, + [3275] = 3161, + [3276] = 3175, + [3277] = 3180, + [3278] = 3278, + [3279] = 3229, + [3280] = 3217, + [3281] = 3173, + [3282] = 3161, + [3283] = 3175, + [3284] = 3217, + [3285] = 3161, + [3286] = 3175, + [3287] = 3217, + [3288] = 3161, + [3289] = 3175, + [3290] = 3217, + [3291] = 3161, + [3292] = 3175, + [3293] = 3217, + [3294] = 3161, + [3295] = 3175, + [3296] = 3173, + [3297] = 3297, [3298] = 3298, - [3299] = 3159, + [3299] = 3299, [3300] = 3300, - [3301] = 3154, - [3302] = 3143, - [3303] = 3152, - [3304] = 3197, - [3305] = 3206, - [3306] = 3306, - [3307] = 3180, - [3308] = 3211, - [3309] = 3309, - [3310] = 3161, - [3311] = 3167, - [3312] = 3291, - [3313] = 3261, - [3314] = 3181, - [3315] = 3145, - [3316] = 3133, - [3317] = 3246, - [3318] = 3318, - [3319] = 3300, - [3320] = 3150, - [3321] = 3321, + [3301] = 3301, + [3302] = 3209, + [3303] = 3303, + [3304] = 3270, + [3305] = 1117, + [3306] = 1118, + [3307] = 3232, + [3308] = 3308, + [3309] = 3190, + [3310] = 3310, + [3311] = 3238, + [3312] = 3178, + [3313] = 3313, + [3314] = 3314, + [3315] = 3225, + [3316] = 3316, + [3317] = 3317, + [3318] = 3193, + [3319] = 3317, + [3320] = 3211, + [3321] = 3200, [3322] = 3322, - [3323] = 3323, - [3324] = 3251, - [3325] = 3152, + [3323] = 3190, + [3324] = 3314, + [3325] = 3325, [3326] = 3326, [3327] = 3327, [3328] = 3328, - [3329] = 3216, - [3330] = 3153, - [3331] = 3228, - [3332] = 3233, - [3333] = 3237, + [3329] = 3240, + [3330] = 3330, + [3331] = 3331, + [3332] = 3332, + [3333] = 3216, [3334] = 3334, - [3335] = 3335, + [3335] = 3171, [3336] = 3336, - [3337] = 3206, - [3338] = 3338, - [3339] = 3090, - [3340] = 3116, - [3341] = 3231, - [3342] = 3160, - [3343] = 3343, - [3344] = 3344, - [3345] = 3345, - [3346] = 3138, - [3347] = 3161, - [3348] = 3195, - [3349] = 3198, - [3350] = 3224, - [3351] = 3225, - [3352] = 3318, - [3353] = 3199, - [3354] = 3354, - [3355] = 3229, - [3356] = 3164, - [3357] = 3232, - [3358] = 3165, - [3359] = 3166, - [3360] = 3227, - [3361] = 3170, - [3362] = 3321, - [3363] = 3164, - [3364] = 3140, - [3365] = 3335, - [3366] = 3366, - [3367] = 3263, - [3368] = 3368, + [3337] = 3173, + [3338] = 3168, + [3339] = 3339, + [3340] = 3255, + [3341] = 3300, + [3342] = 3239, + [3343] = 3159, + [3344] = 3261, + [3345] = 1476, + [3346] = 3346, + [3347] = 3310, + [3348] = 3316, + [3349] = 3299, + [3350] = 3298, + [3351] = 3217, + [3352] = 3346, + [3353] = 3331, + [3354] = 3204, + [3355] = 3207, + [3356] = 3230, + [3357] = 3231, + [3358] = 3262, + [3359] = 3327, + [3360] = 3360, + [3361] = 3184, + [3362] = 3268, + [3363] = 3363, + [3364] = 3189, + [3365] = 3365, + [3366] = 3360, + [3367] = 3330, + [3368] = 3301, [3369] = 3369, - [3370] = 3159, - [3371] = 3139, - [3372] = 3200, - [3373] = 3197, - [3374] = 3150, - [3375] = 3181, - [3376] = 3170, - [3377] = 3171, - [3378] = 3378, + [3370] = 3238, + [3371] = 3371, + [3372] = 3372, + [3373] = 3332, + [3374] = 3175, + [3375] = 3157, + [3376] = 1507, + [3377] = 3217, + [3378] = 3308, [3379] = 3379, - [3380] = 3380, + [3380] = 3301, [3381] = 3381, - [3382] = 3159, - [3383] = 3292, - [3384] = 3384, - [3385] = 3385, - [3386] = 3151, - [3387] = 3159, - [3388] = 3175, + [3382] = 3270, + [3383] = 1117, + [3384] = 1118, + [3385] = 3328, + [3386] = 3308, + [3387] = 3223, + [3388] = 3193, [3389] = 3389, - [3390] = 3177, - [3391] = 3368, - [3392] = 3186, - [3393] = 3193, - [3394] = 3366, + [3390] = 3390, + [3391] = 3391, + [3392] = 3392, + [3393] = 3393, + [3394] = 3394, [3395] = 3395, - [3396] = 3309, + [3396] = 3173, [3397] = 3397, - [3398] = 1497, - [3399] = 3344, - [3400] = 3182, - [3401] = 3389, - [3402] = 3182, - [3403] = 3378, - [3404] = 3146, - [3405] = 3203, - [3406] = 3384, - [3407] = 3139, - [3408] = 3179, - [3409] = 3142, - [3410] = 3226, - [3411] = 3368, - [3412] = 3193, - [3413] = 3179, - [3414] = 3193, - [3415] = 3179, - [3416] = 3416, - [3417] = 3266, - [3418] = 3248, - [3419] = 3257, - [3420] = 3343, - [3421] = 3380, - [3422] = 3177, - [3423] = 3245, + [3398] = 3301, + [3399] = 3218, + [3400] = 3308, + [3401] = 1526, + [3402] = 1421, + [3403] = 3301, + [3404] = 3308, + [3405] = 3405, + [3406] = 3406, + [3407] = 3195, + [3408] = 3408, + [3409] = 3191, + [3410] = 3157, + [3411] = 3216, + [3412] = 3270, + [3413] = 3260, + [3414] = 3300, + [3415] = 3160, + [3416] = 3219, + [3417] = 3158, + [3418] = 3193, + [3419] = 3178, + [3420] = 3420, + [3421] = 3395, + [3422] = 3185, + [3423] = 3393, [3424] = 3424, - [3425] = 3425, - [3426] = 3426, - [3427] = 3427, + [3425] = 3334, + [3426] = 3214, + [3427] = 3336, [3428] = 3428, - [3429] = 3429, - [3430] = 3430, - [3431] = 3431, - [3432] = 3432, - [3433] = 3433, - [3434] = 3434, - [3435] = 3435, - [3436] = 163, - [3437] = 3437, - [3438] = 3438, - [3439] = 3439, - [3440] = 3440, - [3441] = 3441, - [3442] = 3442, - [3443] = 3443, - [3444] = 3444, - [3445] = 3445, + [3429] = 3164, + [3430] = 3389, + [3431] = 3167, + [3432] = 3264, + [3433] = 3240, + [3434] = 1456, + [3435] = 3216, + [3436] = 3182, + [3437] = 3180, + [3438] = 3172, + [3439] = 3217, + [3440] = 3408, + [3441] = 3260, + [3442] = 3182, + [3443] = 3260, + [3444] = 3182, + [3445] = 3158, [3446] = 3446, - [3447] = 3435, - [3448] = 3448, - [3449] = 3448, - [3450] = 3450, + [3447] = 3428, + [3448] = 3270, + [3449] = 3371, + [3450] = 3180, [3451] = 3451, - [3452] = 161, - [3453] = 3453, - [3454] = 3454, - [3455] = 3455, - [3456] = 3456, - [3457] = 3457, + [3452] = 3408, + [3453] = 3446, + [3454] = 3424, + [3455] = 3190, + [3456] = 3197, + [3457] = 3313, [3458] = 3458, [3459] = 3459, [3460] = 3460, [3461] = 3461, [3462] = 3462, [3463] = 3463, - [3464] = 3440, + [3464] = 3464, [3465] = 3465, [3466] = 3466, - [3467] = 3465, + [3467] = 3467, [3468] = 3468, [3469] = 3469, [3470] = 3470, [3471] = 3471, [3472] = 3472, - [3473] = 3442, + [3473] = 3473, [3474] = 3474, [3475] = 3475, - [3476] = 3431, - [3477] = 3455, + [3476] = 3476, + [3477] = 3477, [3478] = 3478, - [3479] = 3429, + [3479] = 3479, [3480] = 3480, [3481] = 3481, [3482] = 3482, @@ -7475,7 +7475,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3486] = 3486, [3487] = 3487, [3488] = 3488, - [3489] = 3489, + [3489] = 3488, [3490] = 3490, [3491] = 3491, [3492] = 3492, @@ -7485,254 +7485,292 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3496] = 3496, [3497] = 3497, [3498] = 3498, - [3499] = 3430, + [3499] = 3469, [3500] = 3500, [3501] = 3501, [3502] = 3502, [3503] = 3503, - [3504] = 3425, + [3504] = 3471, [3505] = 3505, [3506] = 3506, - [3507] = 3462, + [3507] = 3507, [3508] = 3508, [3509] = 3509, [3510] = 3510, [3511] = 3511, - [3512] = 3509, + [3512] = 3492, [3513] = 3513, [3514] = 3514, - [3515] = 3500, + [3515] = 3515, [3516] = 3516, [3517] = 3517, [3518] = 3518, [3519] = 3519, - [3520] = 3432, - [3521] = 3521, + [3520] = 178, + [3521] = 3490, [3522] = 3522, - [3523] = 3437, + [3523] = 3500, [3524] = 3524, [3525] = 3525, [3526] = 3526, - [3527] = 3527, - [3528] = 3528, - [3529] = 3440, + [3527] = 3459, + [3528] = 3459, + [3529] = 3529, [3530] = 3530, - [3531] = 3430, + [3531] = 3503, [3532] = 3532, [3533] = 3533, [3534] = 3534, - [3535] = 3469, - [3536] = 3488, - [3537] = 3537, - [3538] = 3434, - [3539] = 3533, + [3535] = 3535, + [3536] = 3500, + [3537] = 3488, + [3538] = 3538, + [3539] = 3539, [3540] = 3540, - [3541] = 3540, - [3542] = 3542, + [3541] = 3541, + [3542] = 3478, [3543] = 3543, - [3544] = 3485, - [3545] = 3491, - [3546] = 3438, - [3547] = 3547, - [3548] = 3548, - [3549] = 3549, + [3544] = 3544, + [3545] = 3545, + [3546] = 3546, + [3547] = 3505, + [3548] = 3473, + [3549] = 3488, [3550] = 3550, - [3551] = 3439, - [3552] = 3457, - [3553] = 3511, - [3554] = 3554, + [3551] = 3551, + [3552] = 3552, + [3553] = 3553, + [3554] = 3492, [3555] = 3555, - [3556] = 3478, + [3556] = 3556, [3557] = 3557, - [3558] = 3558, + [3558] = 3492, [3559] = 3559, - [3560] = 3442, + [3560] = 3468, [3561] = 3561, - [3562] = 3528, - [3563] = 3453, + [3562] = 3562, + [3563] = 3476, [3564] = 3564, - [3565] = 3547, + [3565] = 3562, [3566] = 3566, - [3567] = 3498, - [3568] = 3524, - [3569] = 3514, + [3567] = 3463, + [3568] = 3568, + [3569] = 3569, [3570] = 3570, [3571] = 3571, [3572] = 3572, - [3573] = 3505, - [3574] = 3530, - [3575] = 3575, + [3573] = 3515, + [3574] = 3574, + [3575] = 3488, [3576] = 3576, - [3577] = 3518, - [3578] = 3425, - [3579] = 3579, - [3580] = 3426, + [3577] = 3487, + [3578] = 3578, + [3579] = 3484, + [3580] = 3469, [3581] = 3581, - [3582] = 3581, + [3582] = 3582, [3583] = 3583, [3584] = 3584, - [3585] = 3481, - [3586] = 3439, - [3587] = 3441, - [3588] = 3433, - [3589] = 3589, - [3590] = 3590, - [3591] = 3448, - [3592] = 3511, - [3593] = 3440, - [3594] = 3440, - [3595] = 3455, - [3596] = 3424, - [3597] = 3457, - [3598] = 3598, - [3599] = 3599, - [3600] = 3465, - [3601] = 3522, - [3602] = 3511, - [3603] = 3485, - [3604] = 3501, - [3605] = 3487, - [3606] = 3488, + [3585] = 3543, + [3586] = 3586, + [3587] = 3587, + [3588] = 3477, + [3589] = 3460, + [3590] = 3461, + [3591] = 3507, + [3592] = 3503, + [3593] = 3583, + [3594] = 3594, + [3595] = 3595, + [3596] = 3491, + [3597] = 3493, + [3598] = 3576, + [3599] = 3486, + [3600] = 3472, + [3601] = 3601, + [3602] = 3602, + [3603] = 3603, + [3604] = 3557, + [3605] = 3605, + [3606] = 3545, [3607] = 3607, - [3608] = 3490, - [3609] = 3506, + [3608] = 3608, + [3609] = 3510, [3610] = 3610, - [3611] = 3493, - [3612] = 3559, - [3613] = 3613, - [3614] = 3522, - [3615] = 3435, + [3611] = 3476, + [3612] = 3477, + [3613] = 3478, + [3614] = 3614, + [3615] = 3480, [3616] = 3616, - [3617] = 3581, - [3618] = 3618, - [3619] = 3619, - [3620] = 3589, - [3621] = 3441, - [3622] = 3566, - [3623] = 3490, - [3624] = 3448, - [3625] = 3442, - [3626] = 3583, - [3627] = 3457, - [3628] = 3532, - [3629] = 3468, - [3630] = 3460, - [3631] = 3487, - [3632] = 3490, - [3633] = 3485, - [3634] = 3634, - [3635] = 3492, + [3617] = 3578, + [3618] = 3607, + [3619] = 3468, + [3620] = 3620, + [3621] = 3621, + [3622] = 3519, + [3623] = 3583, + [3624] = 3543, + [3625] = 3610, + [3626] = 3533, + [3627] = 3627, + [3628] = 3461, + [3629] = 3629, + [3630] = 3518, + [3631] = 3594, + [3632] = 3516, + [3633] = 3553, + [3634] = 3557, + [3635] = 3635, [3636] = 3636, - [3637] = 3581, - [3638] = 3448, - [3639] = 3639, - [3640] = 3457, - [3641] = 3618, - [3642] = 3490, - [3643] = 3581, - [3644] = 3448, - [3645] = 3457, - [3646] = 3508, - [3647] = 3490, - [3648] = 3448, - [3649] = 3457, - [3650] = 3490, - [3651] = 3448, - [3652] = 3448, - [3653] = 3448, - [3654] = 3448, - [3655] = 3448, - [3656] = 3487, - [3657] = 3437, - [3658] = 3658, - [3659] = 3659, - [3660] = 3521, - [3661] = 3661, - [3662] = 3662, - [3663] = 3607, - [3664] = 3664, - [3665] = 3579, - [3666] = 3430, - [3667] = 3667, + [3637] = 3583, + [3638] = 3638, + [3639] = 3477, + [3640] = 3480, + [3641] = 3641, + [3642] = 3642, + [3643] = 3467, + [3644] = 3517, + [3645] = 3543, + [3646] = 3594, + [3647] = 3492, + [3648] = 3557, + [3649] = 3649, + [3650] = 3650, + [3651] = 3480, + [3652] = 3543, + [3653] = 3594, + [3654] = 3557, + [3655] = 3543, + [3656] = 3480, + [3657] = 3594, + [3658] = 3557, + [3659] = 3480, + [3660] = 3594, + [3661] = 3594, + [3662] = 3594, + [3663] = 3594, + [3664] = 3594, + [3665] = 3530, + [3666] = 3638, + [3667] = 3541, [3668] = 3668, - [3669] = 3669, - [3670] = 3482, - [3671] = 3517, - [3672] = 3442, - [3673] = 3466, - [3674] = 3674, - [3675] = 3636, - [3676] = 3664, - [3677] = 3425, - [3678] = 3510, - [3679] = 3550, - [3680] = 3497, - [3681] = 3493, - [3682] = 3471, - [3683] = 3590, - [3684] = 3503, - [3685] = 3525, - [3686] = 3472, + [3669] = 3650, + [3670] = 3641, + [3671] = 3498, + [3672] = 3616, + [3673] = 3629, + [3674] = 3503, + [3675] = 3497, + [3676] = 3546, + [3677] = 3532, + [3678] = 3574, + [3679] = 3679, + [3680] = 3621, + [3681] = 3501, + [3682] = 3682, + [3683] = 3529, + [3684] = 3525, + [3685] = 3679, + [3686] = 3686, [3687] = 3687, - [3688] = 3441, - [3689] = 3557, - [3690] = 3463, - [3691] = 3691, - [3692] = 3618, - [3693] = 3474, - [3694] = 3491, - [3695] = 3470, - [3696] = 3475, - [3697] = 3691, - [3698] = 3662, - [3699] = 3543, - [3700] = 3700, - [3701] = 3537, - [3702] = 3599, - [3703] = 3548, - [3704] = 3445, - [3705] = 3435, - [3706] = 3521, - [3707] = 3661, - [3708] = 3607, - [3709] = 3664, - [3710] = 3427, - [3711] = 3667, - [3712] = 3521, - [3713] = 3664, - [3714] = 3510, - [3715] = 3489, - [3716] = 3664, - [3717] = 3664, - [3718] = 3664, - [3719] = 3440, - [3720] = 3616, - [3721] = 3572, - [3722] = 3442, - [3723] = 3443, - [3724] = 3584, - [3725] = 3575, - [3726] = 3458, - [3727] = 3558, - [3728] = 3728, - [3729] = 3486, - [3730] = 3730, - [3731] = 3731, - [3732] = 3517, - [3733] = 3444, - [3734] = 3564, - [3735] = 3581, - [3736] = 3494, - [3737] = 3737, - [3738] = 3661, - [3739] = 3610, - [3740] = 3740, - [3741] = 3741, + [3688] = 3688, + [3689] = 3576, + [3690] = 3488, + [3691] = 3559, + [3692] = 3460, + [3693] = 3693, + [3694] = 181, + [3695] = 3461, + [3696] = 3473, + [3697] = 3697, + [3698] = 3698, + [3699] = 3603, + [3700] = 3465, + [3701] = 3701, + [3702] = 3682, + [3703] = 3701, + [3704] = 3704, + [3705] = 3705, + [3706] = 3706, + [3707] = 3480, + [3708] = 3687, + [3709] = 3492, + [3710] = 3514, + [3711] = 3556, + [3712] = 3594, + [3713] = 3608, + [3714] = 3476, + [3715] = 3715, + [3716] = 3649, + [3717] = 3704, + [3718] = 3526, + [3719] = 3719, + [3720] = 3720, + [3721] = 3495, + [3722] = 3584, + [3723] = 3494, + [3724] = 3724, + [3725] = 3472, + [3726] = 3636, + [3727] = 3511, + [3728] = 3505, + [3729] = 3650, + [3730] = 3641, + [3731] = 3546, + [3732] = 3532, + [3733] = 3602, + [3734] = 3473, + [3735] = 3650, + [3736] = 3532, + [3737] = 3459, + [3738] = 3557, + [3739] = 3532, + [3740] = 3532, + [3741] = 3532, [3742] = 3742, - [3743] = 3743, + [3743] = 3642, [3744] = 3744, - [3745] = 3745, - [3746] = 3746, + [3745] = 3571, + [3746] = 3496, + [3747] = 3572, + [3748] = 3748, + [3749] = 3749, + [3750] = 3506, + [3751] = 3515, + [3752] = 3724, + [3753] = 3544, + [3754] = 3485, + [3755] = 3601, + [3756] = 3698, + [3757] = 3594, + [3758] = 3614, + [3759] = 3759, + [3760] = 3482, + [3761] = 3587, + [3762] = 3762, + [3763] = 3742, + [3764] = 3620, + [3765] = 3607, + [3766] = 3602, + [3767] = 3706, + [3768] = 3686, + [3769] = 3475, + [3770] = 3550, + [3771] = 3595, + [3772] = 3561, + [3773] = 3534, + [3774] = 3602, + [3775] = 3586, + [3776] = 3478, + [3777] = 3469, + [3778] = 3778, + [3779] = 3779, + [3780] = 3780, + [3781] = 3781, + [3782] = 3782, + [3783] = 3783, + [3784] = 3784, }; const TSCharacterRange sym_identifier_character_set_1[] = { @@ -10393,14 +10431,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 5, .external_lex_state = 2}, [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 = 7, .external_lex_state = 2}, + [45] = {.lex_state = 7, .external_lex_state = 2}, + [46] = {.lex_state = 5, .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}, + [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 7, .external_lex_state = 2}, - [52] = {.lex_state = 5, .external_lex_state = 2}, + [52] = {.lex_state = 7, .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}, @@ -10416,7 +10454,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 = 6, .external_lex_state = 2}, + [68] = {.lex_state = 4, .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}, @@ -10426,50 +10464,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [75] = {.lex_state = 4, .external_lex_state = 2}, [76] = {.lex_state = 4, .external_lex_state = 2}, [77] = {.lex_state = 4, .external_lex_state = 2}, - [78] = {.lex_state = 4, .external_lex_state = 2}, + [78] = {.lex_state = 6, .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 = 6, .external_lex_state = 2}, - [85] = {.lex_state = 6, .external_lex_state = 2}, + [85] = {.lex_state = 4, .external_lex_state = 2}, [86] = {.lex_state = 4, .external_lex_state = 2}, [87] = {.lex_state = 4, .external_lex_state = 2}, - [88] = {.lex_state = 6, .external_lex_state = 2}, - [89] = {.lex_state = 6, .external_lex_state = 2}, + [88] = {.lex_state = 4, .external_lex_state = 2}, + [89] = {.lex_state = 4, .external_lex_state = 2}, [90] = {.lex_state = 6, .external_lex_state = 2}, [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}, + [94] = {.lex_state = 6, .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 = 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}, + [98] = {.lex_state = 6, .external_lex_state = 2}, + [99] = {.lex_state = 6, .external_lex_state = 2}, + [100] = {.lex_state = 6, .external_lex_state = 2}, + [101] = {.lex_state = 6, .external_lex_state = 2}, + [102] = {.lex_state = 6, .external_lex_state = 2}, + [103] = {.lex_state = 6, .external_lex_state = 2}, + [104] = {.lex_state = 6, .external_lex_state = 2}, [105] = {.lex_state = 4, .external_lex_state = 2}, [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}, + [108] = {.lex_state = 4, .external_lex_state = 2}, + [109] = {.lex_state = 4, .external_lex_state = 2}, + [110] = {.lex_state = 4, .external_lex_state = 2}, [111] = {.lex_state = 6, .external_lex_state = 2}, - [112] = {.lex_state = 4, .external_lex_state = 2}, - [113] = {.lex_state = 4, .external_lex_state = 2}, + [112] = {.lex_state = 6, .external_lex_state = 2}, + [113] = {.lex_state = 6, .external_lex_state = 2}, [114] = {.lex_state = 6, .external_lex_state = 2}, - [115] = {.lex_state = 6, .external_lex_state = 2}, + [115] = {.lex_state = 4, .external_lex_state = 2}, [116] = {.lex_state = 6, .external_lex_state = 2}, [117] = {.lex_state = 6, .external_lex_state = 2}, [118] = {.lex_state = 6, .external_lex_state = 2}, - [119] = {.lex_state = 6, .external_lex_state = 2}, - [120] = {.lex_state = 6, .external_lex_state = 2}, - [121] = {.lex_state = 6, .external_lex_state = 2}, + [119] = {.lex_state = 4, .external_lex_state = 2}, + [120] = {.lex_state = 4, .external_lex_state = 2}, + [121] = {.lex_state = 4, .external_lex_state = 2}, [122] = {.lex_state = 6, .external_lex_state = 2}, [123] = {.lex_state = 6, .external_lex_state = 2}, [124] = {.lex_state = 6, .external_lex_state = 2}, @@ -10477,67 +10515,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [126] = {.lex_state = 6, .external_lex_state = 2}, [127] = {.lex_state = 6, .external_lex_state = 2}, [128] = {.lex_state = 6, .external_lex_state = 2}, - [129] = {.lex_state = 6, .external_lex_state = 2}, + [129] = {.lex_state = 4, .external_lex_state = 2}, [130] = {.lex_state = 6, .external_lex_state = 2}, [131] = {.lex_state = 6, .external_lex_state = 2}, [132] = {.lex_state = 6, .external_lex_state = 2}, - [133] = {.lex_state = 4, .external_lex_state = 2}, + [133] = {.lex_state = 6, .external_lex_state = 2}, [134] = {.lex_state = 13, .external_lex_state = 2}, [135] = {.lex_state = 13, .external_lex_state = 2}, - [136] = {.lex_state = 13, .external_lex_state = 2}, - [137] = {.lex_state = 13, .external_lex_state = 2}, + [136] = {.lex_state = 4, .external_lex_state = 2}, + [137] = {.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 = 4, .external_lex_state = 2}, - [141] = {.lex_state = 4, .external_lex_state = 2}, + [140] = {.lex_state = 13, .external_lex_state = 2}, + [141] = {.lex_state = 13, .external_lex_state = 2}, [142] = {.lex_state = 13, .external_lex_state = 2}, [143] = {.lex_state = 4, .external_lex_state = 2}, [144] = {.lex_state = 13, .external_lex_state = 2}, [145] = {.lex_state = 13, .external_lex_state = 2}, [146] = {.lex_state = 4, .external_lex_state = 2}, - [147] = {.lex_state = 13, .external_lex_state = 2}, + [147] = {.lex_state = 4, .external_lex_state = 2}, [148] = {.lex_state = 4, .external_lex_state = 2}, [149] = {.lex_state = 4, .external_lex_state = 2}, [150] = {.lex_state = 4, .external_lex_state = 2}, - [151] = {.lex_state = 13, .external_lex_state = 2}, - [152] = {.lex_state = 13, .external_lex_state = 2}, + [151] = {.lex_state = 4, .external_lex_state = 2}, + [152] = {.lex_state = 4, .external_lex_state = 2}, [153] = {.lex_state = 13, .external_lex_state = 2}, [154] = {.lex_state = 4, .external_lex_state = 2}, - [155] = {.lex_state = 13, .external_lex_state = 2}, + [155] = {.lex_state = 4, .external_lex_state = 2}, [156] = {.lex_state = 4, .external_lex_state = 2}, [157] = {.lex_state = 13, .external_lex_state = 2}, [158] = {.lex_state = 13, .external_lex_state = 2}, [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 = 4, .external_lex_state = 2}, + [161] = {.lex_state = 13, .external_lex_state = 2}, + [162] = {.lex_state = 13, .external_lex_state = 2}, [163] = {.lex_state = 4, .external_lex_state = 2}, [164] = {.lex_state = 13, .external_lex_state = 2}, - [165] = {.lex_state = 13, .external_lex_state = 2}, - [166] = {.lex_state = 4, .external_lex_state = 2}, + [165] = {.lex_state = 4, .external_lex_state = 2}, + [166] = {.lex_state = 13, .external_lex_state = 2}, [167] = {.lex_state = 4, .external_lex_state = 2}, [168] = {.lex_state = 13, .external_lex_state = 2}, - [169] = {.lex_state = 13, .external_lex_state = 2}, + [169] = {.lex_state = 4, .external_lex_state = 2}, [170] = {.lex_state = 4, .external_lex_state = 2}, [171] = {.lex_state = 13, .external_lex_state = 2}, - [172] = {.lex_state = 13, .external_lex_state = 2}, + [172] = {.lex_state = 6, .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 = 4, .external_lex_state = 2}, - [177] = {.lex_state = 13, .external_lex_state = 2}, + [174] = {.lex_state = 13, .external_lex_state = 2}, + [175] = {.lex_state = 13, .external_lex_state = 2}, + [176] = {.lex_state = 13, .external_lex_state = 2}, + [177] = {.lex_state = 4, .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 = 6, .external_lex_state = 2}, + [180] = {.lex_state = 13, .external_lex_state = 2}, + [181] = {.lex_state = 4, .external_lex_state = 2}, [182] = {.lex_state = 4, .external_lex_state = 2}, [183] = {.lex_state = 4, .external_lex_state = 2}, - [184] = {.lex_state = 13, .external_lex_state = 2}, + [184] = {.lex_state = 6, .external_lex_state = 2}, [185] = {.lex_state = 13, .external_lex_state = 2}, - [186] = {.lex_state = 4, .external_lex_state = 2}, + [186] = {.lex_state = 13, .external_lex_state = 2}, [187] = {.lex_state = 13, .external_lex_state = 2}, [188] = {.lex_state = 13, .external_lex_state = 2}, - [189] = {.lex_state = 6, .external_lex_state = 2}, + [189] = {.lex_state = 13, .external_lex_state = 2}, [190] = {.lex_state = 13, .external_lex_state = 2}, [191] = {.lex_state = 13, .external_lex_state = 2}, [192] = {.lex_state = 13, .external_lex_state = 2}, @@ -10547,69 +10585,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [196] = {.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}, + [199] = {.lex_state = 13, .external_lex_state = 2}, [200] = {.lex_state = 6, .external_lex_state = 2}, [201] = {.lex_state = 13, .external_lex_state = 2}, - [202] = {.lex_state = 13, .external_lex_state = 2}, + [202] = {.lex_state = 6, .external_lex_state = 2}, [203] = {.lex_state = 13, .external_lex_state = 2}, - [204] = {.lex_state = 13, .external_lex_state = 2}, + [204] = {.lex_state = 6, .external_lex_state = 2}, [205] = {.lex_state = 6, .external_lex_state = 2}, [206] = {.lex_state = 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 = 13, .external_lex_state = 2}, - [212] = {.lex_state = 6, .external_lex_state = 2}, + [211] = {.lex_state = 6, .external_lex_state = 2}, + [212] = {.lex_state = 13, .external_lex_state = 2}, [213] = {.lex_state = 13, .external_lex_state = 2}, - [214] = {.lex_state = 6, .external_lex_state = 2}, - [215] = {.lex_state = 15, .external_lex_state = 2}, + [214] = {.lex_state = 13, .external_lex_state = 2}, + [215] = {.lex_state = 13, .external_lex_state = 2}, [216] = {.lex_state = 15, .external_lex_state = 2}, [217] = {.lex_state = 13, .external_lex_state = 2}, - [218] = {.lex_state = 15, .external_lex_state = 2}, + [218] = {.lex_state = 13, .external_lex_state = 2}, [219] = {.lex_state = 13, .external_lex_state = 2}, - [220] = {.lex_state = 15, .external_lex_state = 2}, + [220] = {.lex_state = 13, .external_lex_state = 2}, [221] = {.lex_state = 13, .external_lex_state = 2}, - [222] = {.lex_state = 15, .external_lex_state = 2}, - [223] = {.lex_state = 13, .external_lex_state = 2}, - [224] = {.lex_state = 15, .external_lex_state = 2}, + [222] = {.lex_state = 13, .external_lex_state = 2}, + [223] = {.lex_state = 15, .external_lex_state = 2}, + [224] = {.lex_state = 13, .external_lex_state = 2}, [225] = {.lex_state = 13, .external_lex_state = 2}, - [226] = {.lex_state = 13, .external_lex_state = 2}, - [227] = {.lex_state = 13, .external_lex_state = 2}, + [226] = {.lex_state = 12, .external_lex_state = 2}, + [227] = {.lex_state = 12, .external_lex_state = 2}, [228] = {.lex_state = 15, .external_lex_state = 2}, [229] = {.lex_state = 15, .external_lex_state = 2}, [230] = {.lex_state = 15, .external_lex_state = 2}, - [231] = {.lex_state = 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 = 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}, + [234] = {.lex_state = 12, .external_lex_state = 2}, + [235] = {.lex_state = 15, .external_lex_state = 2}, + [236] = {.lex_state = 15, .external_lex_state = 2}, + [237] = {.lex_state = 15, .external_lex_state = 2}, [238] = {.lex_state = 15, .external_lex_state = 2}, - [239] = {.lex_state = 15, .external_lex_state = 2}, + [239] = {.lex_state = 13, .external_lex_state = 2}, [240] = {.lex_state = 13, .external_lex_state = 2}, [241] = {.lex_state = 13, .external_lex_state = 2}, [242] = {.lex_state = 13, .external_lex_state = 2}, - [243] = {.lex_state = 13, .external_lex_state = 2}, - [244] = {.lex_state = 15, .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}, + [243] = {.lex_state = 15, .external_lex_state = 2}, + [244] = {.lex_state = 12, .external_lex_state = 2}, + [245] = {.lex_state = 15, .external_lex_state = 2}, + [246] = {.lex_state = 13, .external_lex_state = 2}, + [247] = {.lex_state = 12, .external_lex_state = 2}, + [248] = {.lex_state = 15, .external_lex_state = 2}, [249] = {.lex_state = 13, .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}, - [255] = {.lex_state = 13, .external_lex_state = 2}, - [256] = {.lex_state = 13, .external_lex_state = 2}, - [257] = {.lex_state = 13, .external_lex_state = 2}, - [258] = {.lex_state = 13, .external_lex_state = 2}, - [259] = {.lex_state = 13, .external_lex_state = 2}, - [260] = {.lex_state = 13, .external_lex_state = 2}, - [261] = {.lex_state = 13, .external_lex_state = 2}, + [250] = {.lex_state = 15, .external_lex_state = 2}, + [251] = {.lex_state = 12, .external_lex_state = 2}, + [252] = {.lex_state = 15, .external_lex_state = 2}, + [253] = {.lex_state = 12, .external_lex_state = 2}, + [254] = {.lex_state = 12, .external_lex_state = 2}, + [255] = {.lex_state = 12, .external_lex_state = 2}, + [256] = {.lex_state = 12, .external_lex_state = 2}, + [257] = {.lex_state = 12, .external_lex_state = 2}, + [258] = {.lex_state = 12, .external_lex_state = 2}, + [259] = {.lex_state = 12, .external_lex_state = 2}, + [260] = {.lex_state = 12, .external_lex_state = 2}, + [261] = {.lex_state = 12, .external_lex_state = 2}, [262] = {.lex_state = 13, .external_lex_state = 2}, [263] = {.lex_state = 13, .external_lex_state = 2}, [264] = {.lex_state = 13, .external_lex_state = 2}, @@ -10640,7 +10678,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [289] = {.lex_state = 13, .external_lex_state = 2}, [290] = {.lex_state = 13, .external_lex_state = 2}, [291] = {.lex_state = 13, .external_lex_state = 2}, - [292] = {.lex_state = 13, .external_lex_state = 2}, + [292] = {.lex_state = 12, .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}, @@ -10649,7 +10687,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [298] = {.lex_state = 13, .external_lex_state = 2}, [299] = {.lex_state = 13, .external_lex_state = 2}, [300] = {.lex_state = 13, .external_lex_state = 2}, - [301] = {.lex_state = 12, .external_lex_state = 2}, + [301] = {.lex_state = 13, .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}, @@ -10689,26 +10727,26 @@ 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 = 12, .external_lex_state = 2}, + [341] = {.lex_state = 13, .external_lex_state = 2}, [342] = {.lex_state = 13, .external_lex_state = 2}, [343] = {.lex_state = 13, .external_lex_state = 2}, - [344] = {.lex_state = 12, .external_lex_state = 2}, + [344] = {.lex_state = 13, .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 = 12, .external_lex_state = 2}, - [349] = {.lex_state = 12, .external_lex_state = 2}, + [348] = {.lex_state = 13, .external_lex_state = 2}, + [349] = {.lex_state = 13, .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}, [353] = {.lex_state = 13, .external_lex_state = 2}, - [354] = {.lex_state = 13, .external_lex_state = 2}, + [354] = {.lex_state = 14, .external_lex_state = 2}, [355] = {.lex_state = 13, .external_lex_state = 2}, - [356] = {.lex_state = 13, .external_lex_state = 2}, + [356] = {.lex_state = 14, .external_lex_state = 2}, [357] = {.lex_state = 13, .external_lex_state = 2}, [358] = {.lex_state = 13, .external_lex_state = 2}, [359] = {.lex_state = 13, .external_lex_state = 2}, - [360] = {.lex_state = 13, .external_lex_state = 2}, + [360] = {.lex_state = 14, .external_lex_state = 2}, [361] = {.lex_state = 13, .external_lex_state = 2}, [362] = {.lex_state = 13, .external_lex_state = 2}, [363] = {.lex_state = 13, .external_lex_state = 2}, @@ -10724,38 +10762,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [373] = {.lex_state = 13, .external_lex_state = 2}, [374] = {.lex_state = 13, .external_lex_state = 2}, [375] = {.lex_state = 13, .external_lex_state = 2}, - [376] = {.lex_state = 12, .external_lex_state = 2}, - [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 = 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 = 12, .external_lex_state = 2}, - [385] = {.lex_state = 12, .external_lex_state = 2}, - [386] = {.lex_state = 12, .external_lex_state = 2}, - [387] = {.lex_state = 12, .external_lex_state = 2}, - [388] = {.lex_state = 12, .external_lex_state = 2}, + [376] = {.lex_state = 13, .external_lex_state = 2}, + [377] = {.lex_state = 13, .external_lex_state = 2}, + [378] = {.lex_state = 13, .external_lex_state = 2}, + [379] = {.lex_state = 13, .external_lex_state = 2}, + [380] = {.lex_state = 13, .external_lex_state = 2}, + [381] = {.lex_state = 13, .external_lex_state = 2}, + [382] = {.lex_state = 13, .external_lex_state = 2}, + [383] = {.lex_state = 13, .external_lex_state = 2}, + [384] = {.lex_state = 13, .external_lex_state = 2}, + [385] = {.lex_state = 13, .external_lex_state = 2}, + [386] = {.lex_state = 13, .external_lex_state = 2}, + [387] = {.lex_state = 13, .external_lex_state = 2}, + [388] = {.lex_state = 13, .external_lex_state = 2}, [389] = {.lex_state = 71, .external_lex_state = 2}, [390] = {.lex_state = 71, .external_lex_state = 2}, [391] = {.lex_state = 71, .external_lex_state = 2}, [392] = {.lex_state = 71, .external_lex_state = 2}, [393] = {.lex_state = 71, .external_lex_state = 2}, - [394] = {.lex_state = 71, .external_lex_state = 2}, + [394] = {.lex_state = 12, .external_lex_state = 2}, [395] = {.lex_state = 71, .external_lex_state = 2}, - [396] = {.lex_state = 14, .external_lex_state = 2}, + [396] = {.lex_state = 71, .external_lex_state = 2}, [397] = {.lex_state = 71, .external_lex_state = 2}, - [398] = {.lex_state = 12, .external_lex_state = 2}, - [399] = {.lex_state = 14, .external_lex_state = 2}, + [398] = {.lex_state = 71, .external_lex_state = 2}, + [399] = {.lex_state = 71, .external_lex_state = 2}, [400] = {.lex_state = 71, .external_lex_state = 2}, [401] = {.lex_state = 71, .external_lex_state = 2}, [402] = {.lex_state = 71, .external_lex_state = 2}, - [403] = {.lex_state = 14, .external_lex_state = 2}, + [403] = {.lex_state = 71, .external_lex_state = 2}, [404] = {.lex_state = 71, .external_lex_state = 2}, [405] = {.lex_state = 71, .external_lex_state = 2}, [406] = {.lex_state = 71, .external_lex_state = 2}, - [407] = {.lex_state = 71, .external_lex_state = 2}, + [407] = {.lex_state = 12, .external_lex_state = 2}, [408] = {.lex_state = 71, .external_lex_state = 2}, [409] = {.lex_state = 71, .external_lex_state = 2}, [410] = {.lex_state = 71, .external_lex_state = 2}, @@ -10765,13 +10803,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [414] = {.lex_state = 71, .external_lex_state = 2}, [415] = {.lex_state = 71, .external_lex_state = 2}, [416] = {.lex_state = 71, .external_lex_state = 2}, - [417] = {.lex_state = 71, .external_lex_state = 2}, + [417] = {.lex_state = 12, .external_lex_state = 2}, [418] = {.lex_state = 71, .external_lex_state = 2}, - [419] = {.lex_state = 71, .external_lex_state = 2}, - [420] = {.lex_state = 12, .external_lex_state = 2}, - [421] = {.lex_state = 12, .external_lex_state = 2}, - [422] = {.lex_state = 12, .external_lex_state = 2}, - [423] = {.lex_state = 12, .external_lex_state = 2}, + [419] = {.lex_state = 12, .external_lex_state = 2}, + [420] = {.lex_state = 71, .external_lex_state = 2}, + [421] = {.lex_state = 71, .external_lex_state = 2}, + [422] = {.lex_state = 71, .external_lex_state = 2}, + [423] = {.lex_state = 71, .external_lex_state = 2}, [424] = {.lex_state = 14, .external_lex_state = 2}, [425] = {.lex_state = 14, .external_lex_state = 2}, [426] = {.lex_state = 14, .external_lex_state = 2}, @@ -10807,16 +10845,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [456] = {.lex_state = 14, .external_lex_state = 2}, [457] = {.lex_state = 14, .external_lex_state = 2}, [458] = {.lex_state = 14, .external_lex_state = 2}, - [459] = {.lex_state = 14, .external_lex_state = 2}, - [460] = {.lex_state = 5, .external_lex_state = 2}, - [461] = {.lex_state = 14, .external_lex_state = 2}, - [462] = {.lex_state = 5, .external_lex_state = 2}, + [459] = {.lex_state = 5, .external_lex_state = 2}, + [460] = {.lex_state = 14, .external_lex_state = 2}, + [461] = {.lex_state = 5, .external_lex_state = 2}, + [462] = {.lex_state = 14, .external_lex_state = 2}, [463] = {.lex_state = 5, .external_lex_state = 2}, [464] = {.lex_state = 5, .external_lex_state = 2}, [465] = {.lex_state = 5, .external_lex_state = 2}, [466] = {.lex_state = 14, .external_lex_state = 2}, - [467] = {.lex_state = 14, .external_lex_state = 2}, - [468] = {.lex_state = 5, .external_lex_state = 2}, + [467] = {.lex_state = 5, .external_lex_state = 2}, + [468] = {.lex_state = 14, .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}, @@ -10932,12 +10970,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [581] = {.lex_state = 73, .external_lex_state = 2}, [582] = {.lex_state = 73, .external_lex_state = 2}, [583] = {.lex_state = 73, .external_lex_state = 2}, - [584] = {.lex_state = 73, .external_lex_state = 2}, + [584] = {.lex_state = 23}, [585] = {.lex_state = 73, .external_lex_state = 2}, [586] = {.lex_state = 73, .external_lex_state = 2}, [587] = {.lex_state = 73, .external_lex_state = 2}, [588] = {.lex_state = 73, .external_lex_state = 2}, - [589] = {.lex_state = 73, .external_lex_state = 2}, + [589] = {.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}, @@ -10975,7 +11013,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [624] = {.lex_state = 73, .external_lex_state = 2}, [625] = {.lex_state = 73, .external_lex_state = 2}, [626] = {.lex_state = 73, .external_lex_state = 2}, - [627] = {.lex_state = 73, .external_lex_state = 2}, + [627] = {.lex_state = 14, .external_lex_state = 2}, [628] = {.lex_state = 73, .external_lex_state = 2}, [629] = {.lex_state = 73, .external_lex_state = 2}, [630] = {.lex_state = 73, .external_lex_state = 2}, @@ -10989,7 +11027,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [638] = {.lex_state = 73, .external_lex_state = 2}, [639] = {.lex_state = 73, .external_lex_state = 2}, [640] = {.lex_state = 73, .external_lex_state = 2}, - [641] = {.lex_state = 23}, + [641] = {.lex_state = 73, .external_lex_state = 2}, [642] = {.lex_state = 73, .external_lex_state = 2}, [643] = {.lex_state = 73, .external_lex_state = 2}, [644] = {.lex_state = 73, .external_lex_state = 2}, @@ -11008,11 +11046,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [657] = {.lex_state = 73, .external_lex_state = 2}, [658] = {.lex_state = 73, .external_lex_state = 2}, [659] = {.lex_state = 73, .external_lex_state = 2}, - [660] = {.lex_state = 23}, + [660] = {.lex_state = 73, .external_lex_state = 2}, [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 = 14, .external_lex_state = 2}, + [664] = {.lex_state = 23}, [665] = {.lex_state = 73, .external_lex_state = 2}, [666] = {.lex_state = 73, .external_lex_state = 2}, [667] = {.lex_state = 73, .external_lex_state = 2}, @@ -11020,37 +11058,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 73, .external_lex_state = 2}, [670] = {.lex_state = 73, .external_lex_state = 2}, [671] = {.lex_state = 73, .external_lex_state = 2}, - [672] = {.lex_state = 73, .external_lex_state = 2}, + [672] = {.lex_state = 23}, [673] = {.lex_state = 73, .external_lex_state = 2}, [674] = {.lex_state = 73, .external_lex_state = 2}, [675] = {.lex_state = 73, .external_lex_state = 2}, - [676] = {.lex_state = 73, .external_lex_state = 2}, + [676] = {.lex_state = 23}, [677] = {.lex_state = 73, .external_lex_state = 2}, [678] = {.lex_state = 73, .external_lex_state = 2}, - [679] = {.lex_state = 73, .external_lex_state = 2}, - [680] = {.lex_state = 73, .external_lex_state = 2}, + [679] = {.lex_state = 14, .external_lex_state = 2}, + [680] = {.lex_state = 14, .external_lex_state = 2}, [681] = {.lex_state = 73, .external_lex_state = 2}, [682] = {.lex_state = 73, .external_lex_state = 2}, [683] = {.lex_state = 73, .external_lex_state = 2}, [684] = {.lex_state = 73, .external_lex_state = 2}, - [685] = {.lex_state = 23}, - [686] = {.lex_state = 73, .external_lex_state = 2}, + [685] = {.lex_state = 73, .external_lex_state = 2}, + [686] = {.lex_state = 14, .external_lex_state = 2}, [687] = {.lex_state = 73, .external_lex_state = 2}, - [688] = {.lex_state = 23}, + [688] = {.lex_state = 73, .external_lex_state = 2}, [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 = 23}, + [693] = {.lex_state = 73, .external_lex_state = 2}, [694] = {.lex_state = 73, .external_lex_state = 2}, [695] = {.lex_state = 73, .external_lex_state = 2}, - [696] = {.lex_state = 14, .external_lex_state = 2}, + [696] = {.lex_state = 73, .external_lex_state = 2}, [697] = {.lex_state = 73, .external_lex_state = 2}, [698] = {.lex_state = 73, .external_lex_state = 2}, [699] = {.lex_state = 73, .external_lex_state = 2}, - [700] = {.lex_state = 14, .external_lex_state = 2}, + [700] = {.lex_state = 73, .external_lex_state = 2}, [701] = {.lex_state = 73, .external_lex_state = 2}, - [702] = {.lex_state = 14, .external_lex_state = 2}, + [702] = {.lex_state = 73, .external_lex_state = 2}, [703] = {.lex_state = 73, .external_lex_state = 2}, [704] = {.lex_state = 73, .external_lex_state = 2}, [705] = {.lex_state = 73, .external_lex_state = 2}, @@ -11061,14 +11099,14 @@ 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 = 14, .external_lex_state = 2}, + [713] = {.lex_state = 73, .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}, [717] = {.lex_state = 73, .external_lex_state = 2}, [718] = {.lex_state = 73, .external_lex_state = 2}, [719] = {.lex_state = 73, .external_lex_state = 2}, - [720] = {.lex_state = 73, .external_lex_state = 2}, + [720] = {.lex_state = 14, .external_lex_state = 2}, [721] = {.lex_state = 73, .external_lex_state = 2}, [722] = {.lex_state = 73, .external_lex_state = 2}, [723] = {.lex_state = 73, .external_lex_state = 2}, @@ -11092,10 +11130,10 @@ 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 = 14, .external_lex_state = 2}, + [744] = {.lex_state = 73, .external_lex_state = 2}, [745] = {.lex_state = 73, .external_lex_state = 2}, [746] = {.lex_state = 73, .external_lex_state = 2}, - [747] = {.lex_state = 73, .external_lex_state = 2}, + [747] = {.lex_state = 23}, [748] = {.lex_state = 73, .external_lex_state = 2}, [749] = {.lex_state = 73, .external_lex_state = 2}, [750] = {.lex_state = 73, .external_lex_state = 2}, @@ -11130,36 +11168,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [779] = {.lex_state = 73, .external_lex_state = 2}, [780] = {.lex_state = 73, .external_lex_state = 2}, [781] = {.lex_state = 73, .external_lex_state = 2}, - [782] = {.lex_state = 14, .external_lex_state = 2}, - [783] = {.lex_state = 14, .external_lex_state = 2}, - [784] = {.lex_state = 17}, + [782] = {.lex_state = 17}, + [783] = {.lex_state = 17}, + [784] = {.lex_state = 14, .external_lex_state = 2}, [785] = {.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 = 14, .external_lex_state = 2}, - [790] = {.lex_state = 14, .external_lex_state = 2}, - [791] = {.lex_state = 14, .external_lex_state = 2}, + [786] = {.lex_state = 17}, + [787] = {.lex_state = 17}, + [788] = {.lex_state = 17}, + [789] = {.lex_state = 17}, + [790] = {.lex_state = 17}, + [791] = {.lex_state = 17}, [792] = {.lex_state = 14, .external_lex_state = 2}, [793] = {.lex_state = 14, .external_lex_state = 2}, [794] = {.lex_state = 17}, [795] = {.lex_state = 14, .external_lex_state = 2}, [796] = {.lex_state = 14, .external_lex_state = 2}, - [797] = {.lex_state = 14, .external_lex_state = 2}, + [797] = {.lex_state = 17}, [798] = {.lex_state = 14, .external_lex_state = 2}, [799] = {.lex_state = 14, .external_lex_state = 2}, [800] = {.lex_state = 14, .external_lex_state = 2}, [801] = {.lex_state = 14, .external_lex_state = 2}, [802] = {.lex_state = 14, .external_lex_state = 2}, - [803] = {.lex_state = 12, .external_lex_state = 2}, - [804] = {.lex_state = 14, .external_lex_state = 2}, + [803] = {.lex_state = 14, .external_lex_state = 2}, + [804] = {.lex_state = 12, .external_lex_state = 2}, [805] = {.lex_state = 14, .external_lex_state = 2}, - [806] = {.lex_state = 17}, - [807] = {.lex_state = 17}, - [808] = {.lex_state = 17}, - [809] = {.lex_state = 17}, + [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}, [810] = {.lex_state = 14, .external_lex_state = 2}, - [811] = {.lex_state = 17}, + [811] = {.lex_state = 14, .external_lex_state = 2}, [812] = {.lex_state = 14, .external_lex_state = 2}, [813] = {.lex_state = 14, .external_lex_state = 2}, [814] = {.lex_state = 14, .external_lex_state = 2}, @@ -11170,7 +11208,7 @@ 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 = 17}, + [822] = {.lex_state = 14, .external_lex_state = 2}, [823] = {.lex_state = 14, .external_lex_state = 2}, [824] = {.lex_state = 14, .external_lex_state = 2}, [825] = {.lex_state = 14, .external_lex_state = 2}, @@ -11179,8 +11217,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 = 17}, - [832] = {.lex_state = 17}, + [831] = {.lex_state = 14, .external_lex_state = 2}, + [832] = {.lex_state = 14, .external_lex_state = 2}, [833] = {.lex_state = 14, .external_lex_state = 2}, [834] = {.lex_state = 14, .external_lex_state = 2}, [835] = {.lex_state = 14, .external_lex_state = 2}, @@ -11377,116 +11415,116 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1029] = {.lex_state = 17}, + [1030] = {.lex_state = 17}, + [1031] = {.lex_state = 17}, + [1032] = {.lex_state = 17}, + [1033] = {.lex_state = 17}, + [1034] = {.lex_state = 17}, + [1035] = {.lex_state = 17}, [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 = 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}, + [1037] = {.lex_state = 17}, + [1038] = {.lex_state = 17}, + [1039] = {.lex_state = 17}, + [1040] = {.lex_state = 17}, + [1041] = {.lex_state = 17}, + [1042] = {.lex_state = 17}, + [1043] = {.lex_state = 17}, + [1044] = {.lex_state = 17}, + [1045] = {.lex_state = 17}, + [1046] = {.lex_state = 17}, + [1047] = {.lex_state = 17}, + [1048] = {.lex_state = 17}, + [1049] = {.lex_state = 13, .external_lex_state = 2}, + [1050] = {.lex_state = 13, .external_lex_state = 2}, + [1051] = {.lex_state = 13, .external_lex_state = 2}, + [1052] = {.lex_state = 15, .external_lex_state = 2}, + [1053] = {.lex_state = 15, .external_lex_state = 2}, + [1054] = {.lex_state = 13, .external_lex_state = 2}, + [1055] = {.lex_state = 12, .external_lex_state = 2}, + [1056] = {.lex_state = 17}, + [1057] = {.lex_state = 13, .external_lex_state = 2}, + [1058] = {.lex_state = 13, .external_lex_state = 2}, + [1059] = {.lex_state = 13, .external_lex_state = 2}, + [1060] = {.lex_state = 9}, [1061] = {.lex_state = 8}, [1062] = {.lex_state = 8}, - [1063] = {.lex_state = 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}, + [1063] = {.lex_state = 8}, + [1064] = {.lex_state = 14, .external_lex_state = 2}, + [1065] = {.lex_state = 23}, + [1066] = {.lex_state = 23}, + [1067] = {.lex_state = 23}, + [1068] = {.lex_state = 23}, + [1069] = {.lex_state = 23}, + [1070] = {.lex_state = 23}, + [1071] = {.lex_state = 23}, + [1072] = {.lex_state = 8}, + [1073] = {.lex_state = 23}, + [1074] = {.lex_state = 23}, + [1075] = {.lex_state = 26}, + [1076] = {.lex_state = 17}, + [1077] = {.lex_state = 17}, + [1078] = {.lex_state = 8}, [1079] = {.lex_state = 17}, - [1080] = {.lex_state = 17}, - [1081] = {.lex_state = 17}, - [1082] = {.lex_state = 14, .external_lex_state = 2}, - [1083] = {.lex_state = 9}, - [1084] = {.lex_state = 9}, - [1085] = {.lex_state = 17}, - [1086] = {.lex_state = 9}, - [1087] = {.lex_state = 17}, + [1080] = {.lex_state = 8}, + [1081] = {.lex_state = 26}, + [1082] = {.lex_state = 8}, + [1083] = {.lex_state = 26}, + [1084] = {.lex_state = 8}, + [1085] = {.lex_state = 8}, + [1086] = {.lex_state = 8}, + [1087] = {.lex_state = 8}, [1088] = {.lex_state = 17}, - [1089] = {.lex_state = 9}, - [1090] = {.lex_state = 23}, - [1091] = {.lex_state = 9}, + [1089] = {.lex_state = 26}, + [1090] = {.lex_state = 8}, + [1091] = {.lex_state = 26}, [1092] = {.lex_state = 9}, [1093] = {.lex_state = 9}, [1094] = {.lex_state = 9}, [1095] = {.lex_state = 14, .external_lex_state = 2}, - [1096] = {.lex_state = 21}, - [1097] = {.lex_state = 14, .external_lex_state = 2}, - [1098] = {.lex_state = 23}, - [1099] = {.lex_state = 12, .external_lex_state = 2}, + [1096] = {.lex_state = 14, .external_lex_state = 2}, + [1097] = {.lex_state = 9}, + [1098] = {.lex_state = 17}, + [1099] = {.lex_state = 17}, [1100] = {.lex_state = 9}, [1101] = {.lex_state = 9}, - [1102] = {.lex_state = 9}, - [1103] = {.lex_state = 23}, - [1104] = {.lex_state = 23}, - [1105] = {.lex_state = 12, .external_lex_state = 2}, - [1106] = {.lex_state = 9}, - [1107] = {.lex_state = 12, .external_lex_state = 2}, + [1102] = {.lex_state = 17}, + [1103] = {.lex_state = 17}, + [1104] = {.lex_state = 9}, + [1105] = {.lex_state = 9}, + [1106] = {.lex_state = 23}, + [1107] = {.lex_state = 9}, [1108] = {.lex_state = 9}, [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}, + [1110] = {.lex_state = 9}, + [1111] = {.lex_state = 14, .external_lex_state = 2}, + [1112] = {.lex_state = 21}, + [1113] = {.lex_state = 14, .external_lex_state = 2}, + [1114] = {.lex_state = 23}, + [1115] = {.lex_state = 17}, + [1116] = {.lex_state = 12, .external_lex_state = 2}, [1117] = {.lex_state = 9}, - [1118] = {.lex_state = 23}, - [1119] = {.lex_state = 23}, + [1118] = {.lex_state = 9}, + [1119] = {.lex_state = 9}, [1120] = {.lex_state = 23}, [1121] = {.lex_state = 23}, - [1122] = {.lex_state = 23}, - [1123] = {.lex_state = 23}, - [1124] = {.lex_state = 23}, - [1125] = {.lex_state = 23}, - [1126] = {.lex_state = 23}, - [1127] = {.lex_state = 23}, - [1128] = {.lex_state = 23}, - [1129] = {.lex_state = 23}, - [1130] = {.lex_state = 23}, - [1131] = {.lex_state = 23}, - [1132] = {.lex_state = 23}, + [1122] = {.lex_state = 12, .external_lex_state = 2}, + [1123] = {.lex_state = 9}, + [1124] = {.lex_state = 12, .external_lex_state = 2}, + [1125] = {.lex_state = 9}, + [1126] = {.lex_state = 9}, + [1127] = {.lex_state = 21}, + [1128] = {.lex_state = 20}, + [1129] = {.lex_state = 9}, + [1130] = {.lex_state = 9}, + [1131] = {.lex_state = 20}, + [1132] = {.lex_state = 20}, [1133] = {.lex_state = 23}, - [1134] = {.lex_state = 8}, - [1135] = {.lex_state = 20}, - [1136] = {.lex_state = 20}, - [1137] = {.lex_state = 20}, - [1138] = {.lex_state = 20}, + [1134] = {.lex_state = 9}, + [1135] = {.lex_state = 23}, + [1136] = {.lex_state = 23}, + [1137] = {.lex_state = 23}, + [1138] = {.lex_state = 23}, [1139] = {.lex_state = 23}, [1140] = {.lex_state = 23}, [1141] = {.lex_state = 23}, @@ -11499,11 +11537,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1148] = {.lex_state = 23}, [1149] = {.lex_state = 23}, [1150] = {.lex_state = 23}, - [1151] = {.lex_state = 23}, - [1152] = {.lex_state = 23}, - [1153] = {.lex_state = 23}, - [1154] = {.lex_state = 23}, - [1155] = {.lex_state = 23}, + [1151] = {.lex_state = 8}, + [1152] = {.lex_state = 20}, + [1153] = {.lex_state = 20}, + [1154] = {.lex_state = 20}, + [1155] = {.lex_state = 20}, [1156] = {.lex_state = 23}, [1157] = {.lex_state = 23}, [1158] = {.lex_state = 23}, @@ -11523,10 +11561,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1172] = {.lex_state = 23}, [1173] = {.lex_state = 23}, [1174] = {.lex_state = 23}, - [1175] = {.lex_state = 9}, - [1176] = {.lex_state = 20}, - [1177] = {.lex_state = 9}, - [1178] = {.lex_state = 20}, + [1175] = {.lex_state = 23}, + [1176] = {.lex_state = 23}, + [1177] = {.lex_state = 23}, + [1178] = {.lex_state = 23}, [1179] = {.lex_state = 23}, [1180] = {.lex_state = 23}, [1181] = {.lex_state = 23}, @@ -11540,10 +11578,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1189] = {.lex_state = 23}, [1190] = {.lex_state = 23}, [1191] = {.lex_state = 23}, - [1192] = {.lex_state = 23}, - [1193] = {.lex_state = 23}, - [1194] = {.lex_state = 23}, - [1195] = {.lex_state = 23}, + [1192] = {.lex_state = 9}, + [1193] = {.lex_state = 20}, + [1194] = {.lex_state = 9}, + [1195] = {.lex_state = 20}, [1196] = {.lex_state = 23}, [1197] = {.lex_state = 23}, [1198] = {.lex_state = 23}, @@ -11577,8 +11615,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1226] = {.lex_state = 23}, [1227] = {.lex_state = 23}, [1228] = {.lex_state = 23}, - [1229] = {.lex_state = 9}, - [1230] = {.lex_state = 20}, + [1229] = {.lex_state = 23}, + [1230] = {.lex_state = 23}, [1231] = {.lex_state = 23}, [1232] = {.lex_state = 23}, [1233] = {.lex_state = 23}, @@ -11594,8 +11632,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1243] = {.lex_state = 23}, [1244] = {.lex_state = 23}, [1245] = {.lex_state = 23}, - [1246] = {.lex_state = 23}, - [1247] = {.lex_state = 23}, + [1246] = {.lex_state = 9}, + [1247] = {.lex_state = 20}, [1248] = {.lex_state = 23}, [1249] = {.lex_state = 23}, [1250] = {.lex_state = 23}, @@ -11606,7 +11644,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1255] = {.lex_state = 23}, [1256] = {.lex_state = 23}, [1257] = {.lex_state = 23}, - [1258] = {.lex_state = 9}, + [1258] = {.lex_state = 23}, [1259] = {.lex_state = 23}, [1260] = {.lex_state = 23}, [1261] = {.lex_state = 23}, @@ -11624,14 +11662,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1273] = {.lex_state = 23}, [1274] = {.lex_state = 23}, [1275] = {.lex_state = 23}, - [1276] = {.lex_state = 23}, + [1276] = {.lex_state = 9}, [1277] = {.lex_state = 23}, [1278] = {.lex_state = 23}, [1279] = {.lex_state = 23}, [1280] = {.lex_state = 23}, [1281] = {.lex_state = 23}, - [1282] = {.lex_state = 9}, - [1283] = {.lex_state = 20}, + [1282] = {.lex_state = 23}, + [1283] = {.lex_state = 23}, [1284] = {.lex_state = 23}, [1285] = {.lex_state = 23}, [1286] = {.lex_state = 23}, @@ -11647,8 +11685,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1296] = {.lex_state = 23}, [1297] = {.lex_state = 23}, [1298] = {.lex_state = 23}, - [1299] = {.lex_state = 23}, - [1300] = {.lex_state = 23}, + [1299] = {.lex_state = 9}, + [1300] = {.lex_state = 20}, [1301] = {.lex_state = 23}, [1302] = {.lex_state = 23}, [1303] = {.lex_state = 23}, @@ -11683,8 +11721,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1332] = {.lex_state = 23}, [1333] = {.lex_state = 23}, [1334] = {.lex_state = 23}, - [1335] = {.lex_state = 9}, - [1336] = {.lex_state = 20}, + [1335] = {.lex_state = 23}, + [1336] = {.lex_state = 23}, [1337] = {.lex_state = 23}, [1338] = {.lex_state = 23}, [1339] = {.lex_state = 23}, @@ -11700,8 +11738,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1349] = {.lex_state = 23}, [1350] = {.lex_state = 23}, [1351] = {.lex_state = 23}, - [1352] = {.lex_state = 23}, - [1353] = {.lex_state = 23}, + [1352] = {.lex_state = 9}, + [1353] = {.lex_state = 20}, [1354] = {.lex_state = 23}, [1355] = {.lex_state = 23}, [1356] = {.lex_state = 23}, @@ -11740,35 +11778,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1389] = {.lex_state = 23}, [1390] = {.lex_state = 23}, [1391] = {.lex_state = 23}, - [1392] = {.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}, + [1392] = {.lex_state = 23}, + [1393] = {.lex_state = 23}, + [1394] = {.lex_state = 23}, + [1395] = {.lex_state = 23}, + [1396] = {.lex_state = 23}, [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 = 17}, + [1398] = {.lex_state = 23}, + [1399] = {.lex_state = 23}, + [1400] = {.lex_state = 23}, + [1401] = {.lex_state = 23}, + [1402] = {.lex_state = 23}, [1403] = {.lex_state = 23}, - [1404] = {.lex_state = 9}, - [1405] = {.lex_state = 9}, - [1406] = {.lex_state = 9}, - [1407] = {.lex_state = 9}, - [1408] = {.lex_state = 9}, + [1404] = {.lex_state = 23}, + [1405] = {.lex_state = 23}, + [1406] = {.lex_state = 23}, + [1407] = {.lex_state = 23}, + [1408] = {.lex_state = 23}, [1409] = {.lex_state = 9}, - [1410] = {.lex_state = 9}, - [1411] = {.lex_state = 9}, - [1412] = {.lex_state = 9}, - [1413] = {.lex_state = 9}, - [1414] = {.lex_state = 9}, - [1415] = {.lex_state = 9}, + [1410] = {.lex_state = 17}, + [1411] = {.lex_state = 14, .external_lex_state = 2}, + [1412] = {.lex_state = 14, .external_lex_state = 2}, + [1413] = {.lex_state = 14, .external_lex_state = 2}, + [1414] = {.lex_state = 23}, + [1415] = {.lex_state = 14, .external_lex_state = 2}, [1416] = {.lex_state = 9}, [1417] = {.lex_state = 9}, [1418] = {.lex_state = 9}, - [1419] = {.lex_state = 9}, - [1420] = {.lex_state = 9}, + [1419] = {.lex_state = 23}, + [1420] = {.lex_state = 10}, [1421] = {.lex_state = 9}, [1422] = {.lex_state = 9}, [1423] = {.lex_state = 9}, @@ -11791,7 +11829,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1440] = {.lex_state = 9}, [1441] = {.lex_state = 9}, [1442] = {.lex_state = 9}, - [1443] = {.lex_state = 17}, + [1443] = {.lex_state = 9}, [1444] = {.lex_state = 9}, [1445] = {.lex_state = 9}, [1446] = {.lex_state = 9}, @@ -11830,7 +11868,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1479] = {.lex_state = 9}, [1480] = {.lex_state = 9}, [1481] = {.lex_state = 9}, - [1482] = {.lex_state = 9}, + [1482] = {.lex_state = 17}, [1483] = {.lex_state = 9}, [1484] = {.lex_state = 9}, [1485] = {.lex_state = 9}, @@ -11842,11 +11880,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1491] = {.lex_state = 9}, [1492] = {.lex_state = 9}, [1493] = {.lex_state = 9}, - [1494] = {.lex_state = 17}, + [1494] = {.lex_state = 9}, [1495] = {.lex_state = 9}, - [1496] = {.lex_state = 17}, + [1496] = {.lex_state = 9}, [1497] = {.lex_state = 9}, - [1498] = {.lex_state = 10}, + [1498] = {.lex_state = 9}, [1499] = {.lex_state = 9}, [1500] = {.lex_state = 9}, [1501] = {.lex_state = 9}, @@ -11876,187 +11914,187 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1525] = {.lex_state = 9}, [1526] = {.lex_state = 9}, [1527] = {.lex_state = 9}, - [1528] = {.lex_state = 17}, - [1529] = {.lex_state = 17}, + [1528] = {.lex_state = 9}, + [1529] = {.lex_state = 9}, [1530] = {.lex_state = 9}, [1531] = {.lex_state = 9}, [1532] = {.lex_state = 9}, - [1533] = {.lex_state = 17}, + [1533] = {.lex_state = 9}, [1534] = {.lex_state = 9}, - [1535] = {.lex_state = 13, .external_lex_state = 2}, - [1536] = {.lex_state = 13, .external_lex_state = 2}, + [1535] = {.lex_state = 9}, + [1536] = {.lex_state = 9}, [1537] = {.lex_state = 9}, - [1538] = {.lex_state = 13, .external_lex_state = 2}, + [1538] = {.lex_state = 9}, [1539] = {.lex_state = 9}, - [1540] = {.lex_state = 9}, - [1541] = {.lex_state = 9}, + [1540] = {.lex_state = 17}, + [1541] = {.lex_state = 17}, [1542] = {.lex_state = 9}, [1543] = {.lex_state = 9}, [1544] = {.lex_state = 9}, [1545] = {.lex_state = 9}, - [1546] = {.lex_state = 9}, - [1547] = {.lex_state = 9}, + [1546] = {.lex_state = 17}, + [1547] = {.lex_state = 17}, [1548] = {.lex_state = 9}, [1549] = {.lex_state = 9}, [1550] = {.lex_state = 9}, [1551] = {.lex_state = 9}, - [1552] = {.lex_state = 9}, + [1552] = {.lex_state = 11}, [1553] = {.lex_state = 11}, - [1554] = {.lex_state = 13, .external_lex_state = 2}, + [1554] = {.lex_state = 11}, [1555] = {.lex_state = 9}, - [1556] = {.lex_state = 13, .external_lex_state = 2}, + [1556] = {.lex_state = 17}, [1557] = {.lex_state = 9}, [1558] = {.lex_state = 9}, - [1559] = {.lex_state = 9}, + [1559] = {.lex_state = 17}, [1560] = {.lex_state = 9}, - [1561] = {.lex_state = 13, .external_lex_state = 2}, - [1562] = {.lex_state = 9}, - [1563] = {.lex_state = 11}, - [1564] = {.lex_state = 17}, - [1565] = {.lex_state = 11}, - [1566] = {.lex_state = 17}, - [1567] = {.lex_state = 11}, - [1568] = {.lex_state = 17}, - [1569] = {.lex_state = 9}, - [1570] = {.lex_state = 17}, - [1571] = {.lex_state = 17}, - [1572] = {.lex_state = 10}, - [1573] = {.lex_state = 11}, - [1574] = {.lex_state = 10}, - [1575] = {.lex_state = 10}, + [1561] = {.lex_state = 17}, + [1562] = {.lex_state = 17}, + [1563] = {.lex_state = 9}, + [1564] = {.lex_state = 9}, + [1565] = {.lex_state = 13, .external_lex_state = 2}, + [1566] = {.lex_state = 13, .external_lex_state = 2}, + [1567] = {.lex_state = 9}, + [1568] = {.lex_state = 9}, + [1569] = {.lex_state = 13, .external_lex_state = 2}, + [1570] = {.lex_state = 13, .external_lex_state = 2}, + [1571] = {.lex_state = 9}, + [1572] = {.lex_state = 9}, + [1573] = {.lex_state = 9}, + [1574] = {.lex_state = 9}, + [1575] = {.lex_state = 13, .external_lex_state = 2}, [1576] = {.lex_state = 9}, - [1577] = {.lex_state = 10}, - [1578] = {.lex_state = 10}, - [1579] = {.lex_state = 11}, - [1580] = {.lex_state = 11}, - [1581] = {.lex_state = 9}, - [1582] = {.lex_state = 11}, - [1583] = {.lex_state = 11}, + [1577] = {.lex_state = 13, .external_lex_state = 2}, + [1578] = {.lex_state = 9}, + [1579] = {.lex_state = 9}, + [1580] = {.lex_state = 9}, + [1581] = {.lex_state = 17}, + [1582] = {.lex_state = 9}, + [1583] = {.lex_state = 10}, [1584] = {.lex_state = 11}, [1585] = {.lex_state = 9}, [1586] = {.lex_state = 11}, - [1587] = {.lex_state = 9}, - [1588] = {.lex_state = 9}, + [1587] = {.lex_state = 10}, + [1588] = {.lex_state = 10}, [1589] = {.lex_state = 9}, - [1590] = {.lex_state = 11}, - [1591] = {.lex_state = 9}, - [1592] = {.lex_state = 10}, + [1590] = {.lex_state = 10}, + [1591] = {.lex_state = 11}, + [1592] = {.lex_state = 9}, [1593] = {.lex_state = 9}, - [1594] = {.lex_state = 17}, + [1594] = {.lex_state = 11}, [1595] = {.lex_state = 9}, - [1596] = {.lex_state = 10}, - [1597] = {.lex_state = 10}, - [1598] = {.lex_state = 10}, - [1599] = {.lex_state = 10}, - [1600] = {.lex_state = 10}, + [1596] = {.lex_state = 11}, + [1597] = {.lex_state = 11}, + [1598] = {.lex_state = 11}, + [1599] = {.lex_state = 9}, + [1600] = {.lex_state = 11}, [1601] = {.lex_state = 9}, - [1602] = {.lex_state = 9}, - [1603] = {.lex_state = 10}, - [1604] = {.lex_state = 10}, - [1605] = {.lex_state = 10}, + [1602] = {.lex_state = 10}, + [1603] = {.lex_state = 11}, + [1604] = {.lex_state = 9}, + [1605] = {.lex_state = 17}, [1606] = {.lex_state = 10}, - [1607] = {.lex_state = 10}, + [1607] = {.lex_state = 17}, [1608] = {.lex_state = 9}, [1609] = {.lex_state = 9}, [1610] = {.lex_state = 9}, - [1611] = {.lex_state = 9}, - [1612] = {.lex_state = 9}, - [1613] = {.lex_state = 9}, - [1614] = {.lex_state = 10}, - [1615] = {.lex_state = 9}, + [1611] = {.lex_state = 10}, + [1612] = {.lex_state = 10}, + [1613] = {.lex_state = 10}, + [1614] = {.lex_state = 9}, + [1615] = {.lex_state = 10}, [1616] = {.lex_state = 9}, - [1617] = {.lex_state = 9}, - [1618] = {.lex_state = 9}, + [1617] = {.lex_state = 10}, + [1618] = {.lex_state = 10}, [1619] = {.lex_state = 9}, - [1620] = {.lex_state = 9}, - [1621] = {.lex_state = 9}, - [1622] = {.lex_state = 10}, - [1623] = {.lex_state = 17}, - [1624] = {.lex_state = 17}, - [1625] = {.lex_state = 10}, - [1626] = {.lex_state = 10}, + [1620] = {.lex_state = 10}, + [1621] = {.lex_state = 10}, + [1622] = {.lex_state = 9}, + [1623] = {.lex_state = 10}, + [1624] = {.lex_state = 9}, + [1625] = {.lex_state = 9}, + [1626] = {.lex_state = 9}, [1627] = {.lex_state = 9}, - [1628] = {.lex_state = 22}, + [1628] = {.lex_state = 9}, [1629] = {.lex_state = 9}, - [1630] = {.lex_state = 17}, - [1631] = {.lex_state = 10}, - [1632] = {.lex_state = 11}, - [1633] = {.lex_state = 9}, - [1634] = {.lex_state = 22}, - [1635] = {.lex_state = 9}, - [1636] = {.lex_state = 9}, - [1637] = {.lex_state = 10}, - [1638] = {.lex_state = 10}, - [1639] = {.lex_state = 10}, - [1640] = {.lex_state = 22}, - [1641] = {.lex_state = 10}, + [1630] = {.lex_state = 9}, + [1631] = {.lex_state = 9}, + [1632] = {.lex_state = 10}, + [1633] = {.lex_state = 10}, + [1634] = {.lex_state = 17}, + [1635] = {.lex_state = 10}, + [1636] = {.lex_state = 10}, + [1637] = {.lex_state = 9}, + [1638] = {.lex_state = 17}, + [1639] = {.lex_state = 9}, + [1640] = {.lex_state = 10}, + [1641] = {.lex_state = 22}, [1642] = {.lex_state = 10}, [1643] = {.lex_state = 10}, - [1644] = {.lex_state = 9}, + [1644] = {.lex_state = 22}, [1645] = {.lex_state = 10}, [1646] = {.lex_state = 10}, [1647] = {.lex_state = 9}, [1648] = {.lex_state = 9}, - [1649] = {.lex_state = 22}, + [1649] = {.lex_state = 9}, [1650] = {.lex_state = 9}, - [1651] = {.lex_state = 9}, - [1652] = {.lex_state = 9}, - [1653] = {.lex_state = 9}, - [1654] = {.lex_state = 22}, - [1655] = {.lex_state = 22}, - [1656] = {.lex_state = 9}, - [1657] = {.lex_state = 9}, + [1651] = {.lex_state = 22}, + [1652] = {.lex_state = 10}, + [1653] = {.lex_state = 10}, + [1654] = {.lex_state = 9}, + [1655] = {.lex_state = 9}, + [1656] = {.lex_state = 17}, + [1657] = {.lex_state = 10}, [1658] = {.lex_state = 9}, [1659] = {.lex_state = 10}, - [1660] = {.lex_state = 9}, - [1661] = {.lex_state = 9}, - [1662] = {.lex_state = 9}, - [1663] = {.lex_state = 22}, + [1660] = {.lex_state = 10}, + [1661] = {.lex_state = 22}, + [1662] = {.lex_state = 22}, + [1663] = {.lex_state = 9}, [1664] = {.lex_state = 9}, - [1665] = {.lex_state = 10}, - [1666] = {.lex_state = 9}, - [1667] = {.lex_state = 10}, + [1665] = {.lex_state = 9}, + [1666] = {.lex_state = 10}, + [1667] = {.lex_state = 9}, [1668] = {.lex_state = 9}, - [1669] = {.lex_state = 22}, - [1670] = {.lex_state = 22}, - [1671] = {.lex_state = 10}, + [1669] = {.lex_state = 10}, + [1670] = {.lex_state = 9}, + [1671] = {.lex_state = 22}, [1672] = {.lex_state = 9}, - [1673] = {.lex_state = 10}, - [1674] = {.lex_state = 10}, + [1673] = {.lex_state = 22}, + [1674] = {.lex_state = 9}, [1675] = {.lex_state = 9}, - [1676] = {.lex_state = 9}, - [1677] = {.lex_state = 22}, + [1676] = {.lex_state = 10}, + [1677] = {.lex_state = 9}, [1678] = {.lex_state = 9}, [1679] = {.lex_state = 10}, - [1680] = {.lex_state = 10}, - [1681] = {.lex_state = 22}, - [1682] = {.lex_state = 10}, + [1680] = {.lex_state = 9}, + [1681] = {.lex_state = 9}, + [1682] = {.lex_state = 9}, [1683] = {.lex_state = 10}, [1684] = {.lex_state = 9}, - [1685] = {.lex_state = 22}, - [1686] = {.lex_state = 9}, - [1687] = {.lex_state = 10}, - [1688] = {.lex_state = 10}, + [1685] = {.lex_state = 10}, + [1686] = {.lex_state = 10}, + [1687] = {.lex_state = 9}, + [1688] = {.lex_state = 9}, [1689] = {.lex_state = 10}, [1690] = {.lex_state = 10}, [1691] = {.lex_state = 10}, - [1692] = {.lex_state = 10}, - [1693] = {.lex_state = 10}, - [1694] = {.lex_state = 9}, - [1695] = {.lex_state = 10}, - [1696] = {.lex_state = 10}, - [1697] = {.lex_state = 10}, - [1698] = {.lex_state = 10}, - [1699] = {.lex_state = 10}, - [1700] = {.lex_state = 10}, + [1692] = {.lex_state = 11}, + [1693] = {.lex_state = 9}, + [1694] = {.lex_state = 22}, + [1695] = {.lex_state = 22}, + [1696] = {.lex_state = 22}, + [1697] = {.lex_state = 22}, + [1698] = {.lex_state = 22}, + [1699] = {.lex_state = 9}, + [1700] = {.lex_state = 9}, [1701] = {.lex_state = 9}, - [1702] = {.lex_state = 9}, + [1702] = {.lex_state = 10}, [1703] = {.lex_state = 10}, [1704] = {.lex_state = 10}, - [1705] = {.lex_state = 10}, + [1705] = {.lex_state = 9}, [1706] = {.lex_state = 10}, - [1707] = {.lex_state = 10}, - [1708] = {.lex_state = 10}, + [1707] = {.lex_state = 9}, + [1708] = {.lex_state = 9}, [1709] = {.lex_state = 10}, [1710] = {.lex_state = 10}, [1711] = {.lex_state = 10}, @@ -12064,7 +12102,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1713] = {.lex_state = 10}, [1714] = {.lex_state = 10}, [1715] = {.lex_state = 10}, - [1716] = {.lex_state = 9}, + [1716] = {.lex_state = 10}, [1717] = {.lex_state = 10}, [1718] = {.lex_state = 10}, [1719] = {.lex_state = 10}, @@ -12074,53 +12112,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1723] = {.lex_state = 9}, [1724] = {.lex_state = 9}, [1725] = {.lex_state = 10}, - [1726] = {.lex_state = 10}, - [1727] = {.lex_state = 10}, - [1728] = {.lex_state = 10}, - [1729] = {.lex_state = 17}, + [1726] = {.lex_state = 9}, + [1727] = {.lex_state = 9}, + [1728] = {.lex_state = 9}, + [1729] = {.lex_state = 9}, [1730] = {.lex_state = 9}, - [1731] = {.lex_state = 10}, - [1732] = {.lex_state = 10}, - [1733] = {.lex_state = 10}, - [1734] = {.lex_state = 10}, - [1735] = {.lex_state = 10}, - [1736] = {.lex_state = 10}, - [1737] = {.lex_state = 10}, + [1731] = {.lex_state = 9}, + [1732] = {.lex_state = 9}, + [1733] = {.lex_state = 9}, + [1734] = {.lex_state = 9}, + [1735] = {.lex_state = 9}, + [1736] = {.lex_state = 9}, + [1737] = {.lex_state = 9}, [1738] = {.lex_state = 9}, [1739] = {.lex_state = 9}, [1740] = {.lex_state = 10}, [1741] = {.lex_state = 10}, [1742] = {.lex_state = 10}, [1743] = {.lex_state = 10}, - [1744] = {.lex_state = 10}, + [1744] = {.lex_state = 9}, [1745] = {.lex_state = 10}, - [1746] = {.lex_state = 9}, - [1747] = {.lex_state = 9}, - [1748] = {.lex_state = 10}, + [1746] = {.lex_state = 10}, + [1747] = {.lex_state = 10}, + [1748] = {.lex_state = 9}, [1749] = {.lex_state = 10}, [1750] = {.lex_state = 10}, [1751] = {.lex_state = 10}, [1752] = {.lex_state = 10}, [1753] = {.lex_state = 10}, - [1754] = {.lex_state = 9}, + [1754] = {.lex_state = 10}, [1755] = {.lex_state = 10}, [1756] = {.lex_state = 10}, [1757] = {.lex_state = 10}, [1758] = {.lex_state = 10}, - [1759] = {.lex_state = 10}, + [1759] = {.lex_state = 9}, [1760] = {.lex_state = 10}, [1761] = {.lex_state = 10}, [1762] = {.lex_state = 10}, [1763] = {.lex_state = 9}, [1764] = {.lex_state = 10}, [1765] = {.lex_state = 10}, - [1766] = {.lex_state = 9}, + [1766] = {.lex_state = 10}, [1767] = {.lex_state = 10}, [1768] = {.lex_state = 10}, [1769] = {.lex_state = 10}, [1770] = {.lex_state = 10}, [1771] = {.lex_state = 10}, - [1772] = {.lex_state = 10}, + [1772] = {.lex_state = 9}, [1773] = {.lex_state = 10}, [1774] = {.lex_state = 10}, [1775] = {.lex_state = 10}, @@ -12132,16 +12170,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1781] = {.lex_state = 10}, [1782] = {.lex_state = 10}, [1783] = {.lex_state = 10}, - [1784] = {.lex_state = 10}, - [1785] = {.lex_state = 10}, + [1784] = {.lex_state = 9}, + [1785] = {.lex_state = 9}, [1786] = {.lex_state = 10}, [1787] = {.lex_state = 10}, [1788] = {.lex_state = 10}, [1789] = {.lex_state = 10}, [1790] = {.lex_state = 10}, [1791] = {.lex_state = 10}, - [1792] = {.lex_state = 10}, - [1793] = {.lex_state = 9}, + [1792] = {.lex_state = 9}, + [1793] = {.lex_state = 10}, [1794] = {.lex_state = 10}, [1795] = {.lex_state = 10}, [1796] = {.lex_state = 10}, @@ -12149,64 +12187,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1798] = {.lex_state = 10}, [1799] = {.lex_state = 10}, [1800] = {.lex_state = 10}, - [1801] = {.lex_state = 9}, - [1802] = {.lex_state = 9}, + [1801] = {.lex_state = 10}, + [1802] = {.lex_state = 10}, [1803] = {.lex_state = 10}, - [1804] = {.lex_state = 9}, - [1805] = {.lex_state = 9}, + [1804] = {.lex_state = 10}, + [1805] = {.lex_state = 10}, [1806] = {.lex_state = 10}, - [1807] = {.lex_state = 9}, - [1808] = {.lex_state = 9}, - [1809] = {.lex_state = 10}, + [1807] = {.lex_state = 10}, + [1808] = {.lex_state = 10}, + [1809] = {.lex_state = 9}, [1810] = {.lex_state = 10}, - [1811] = {.lex_state = 9}, + [1811] = {.lex_state = 10}, [1812] = {.lex_state = 10}, [1813] = {.lex_state = 10}, [1814] = {.lex_state = 10}, [1815] = {.lex_state = 10}, [1816] = {.lex_state = 10}, - [1817] = {.lex_state = 9}, - [1818] = {.lex_state = 9}, + [1817] = {.lex_state = 10}, + [1818] = {.lex_state = 10}, [1819] = {.lex_state = 10}, - [1820] = {.lex_state = 9}, - [1821] = {.lex_state = 9}, - [1822] = {.lex_state = 17}, - [1823] = {.lex_state = 9}, - [1824] = {.lex_state = 9}, - [1825] = {.lex_state = 9}, + [1820] = {.lex_state = 10}, + [1821] = {.lex_state = 10}, + [1822] = {.lex_state = 10}, + [1823] = {.lex_state = 10}, + [1824] = {.lex_state = 10}, + [1825] = {.lex_state = 10}, [1826] = {.lex_state = 10}, [1827] = {.lex_state = 9}, [1828] = {.lex_state = 10}, - [1829] = {.lex_state = 9}, - [1830] = {.lex_state = 9}, - [1831] = {.lex_state = 9}, - [1832] = {.lex_state = 9}, - [1833] = {.lex_state = 9}, - [1834] = {.lex_state = 9}, - [1835] = {.lex_state = 9}, - [1836] = {.lex_state = 9}, - [1837] = {.lex_state = 9}, + [1829] = {.lex_state = 10}, + [1830] = {.lex_state = 10}, + [1831] = {.lex_state = 10}, + [1832] = {.lex_state = 10}, + [1833] = {.lex_state = 10}, + [1834] = {.lex_state = 10}, + [1835] = {.lex_state = 10}, + [1836] = {.lex_state = 10}, + [1837] = {.lex_state = 10}, [1838] = {.lex_state = 10}, [1839] = {.lex_state = 10}, - [1840] = {.lex_state = 9}, + [1840] = {.lex_state = 10}, [1841] = {.lex_state = 10}, [1842] = {.lex_state = 10}, - [1843] = {.lex_state = 10}, + [1843] = {.lex_state = 9}, [1844] = {.lex_state = 10}, [1845] = {.lex_state = 9}, - [1846] = {.lex_state = 9}, - [1847] = {.lex_state = 9}, + [1846] = {.lex_state = 10}, + [1847] = {.lex_state = 10}, [1848] = {.lex_state = 9}, [1849] = {.lex_state = 9}, - [1850] = {.lex_state = 9}, - [1851] = {.lex_state = 10}, + [1850] = {.lex_state = 10}, + [1851] = {.lex_state = 9}, [1852] = {.lex_state = 9}, [1853] = {.lex_state = 9}, - [1854] = {.lex_state = 9}, - [1855] = {.lex_state = 10}, - [1856] = {.lex_state = 9}, + [1854] = {.lex_state = 17}, + [1855] = {.lex_state = 9}, + [1856] = {.lex_state = 10}, [1857] = {.lex_state = 9}, - [1858] = {.lex_state = 9}, + [1858] = {.lex_state = 10}, [1859] = {.lex_state = 9}, [1860] = {.lex_state = 9}, [1861] = {.lex_state = 9}, @@ -12216,91 +12254,91 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1865] = {.lex_state = 9}, [1866] = {.lex_state = 9}, [1867] = {.lex_state = 9}, - [1868] = {.lex_state = 10}, + [1868] = {.lex_state = 9}, [1869] = {.lex_state = 9}, [1870] = {.lex_state = 9}, [1871] = {.lex_state = 9}, - [1872] = {.lex_state = 10}, + [1872] = {.lex_state = 9}, [1873] = {.lex_state = 9}, [1874] = {.lex_state = 9}, [1875] = {.lex_state = 9}, - [1876] = {.lex_state = 9}, + [1876] = {.lex_state = 17}, [1877] = {.lex_state = 9}, [1878] = {.lex_state = 9}, - [1879] = {.lex_state = 10}, + [1879] = {.lex_state = 9}, [1880] = {.lex_state = 9}, [1881] = {.lex_state = 9}, - [1882] = {.lex_state = 9}, + [1882] = {.lex_state = 10}, [1883] = {.lex_state = 9}, [1884] = {.lex_state = 9}, [1885] = {.lex_state = 9}, - [1886] = {.lex_state = 9}, + [1886] = {.lex_state = 10}, [1887] = {.lex_state = 9}, [1888] = {.lex_state = 9}, - [1889] = {.lex_state = 10}, - [1890] = {.lex_state = 10}, - [1891] = {.lex_state = 10}, - [1892] = {.lex_state = 10}, - [1893] = {.lex_state = 10}, - [1894] = {.lex_state = 10}, - [1895] = {.lex_state = 10}, - [1896] = {.lex_state = 10}, - [1897] = {.lex_state = 10}, - [1898] = {.lex_state = 10}, + [1889] = {.lex_state = 9}, + [1890] = {.lex_state = 9}, + [1891] = {.lex_state = 9}, + [1892] = {.lex_state = 9}, + [1893] = {.lex_state = 9}, + [1894] = {.lex_state = 9}, + [1895] = {.lex_state = 9}, + [1896] = {.lex_state = 9}, + [1897] = {.lex_state = 9}, + [1898] = {.lex_state = 9}, [1899] = {.lex_state = 9}, [1900] = {.lex_state = 9}, [1901] = {.lex_state = 9}, - [1902] = {.lex_state = 9}, + [1902] = {.lex_state = 10}, [1903] = {.lex_state = 10}, - [1904] = {.lex_state = 9}, - [1905] = {.lex_state = 9}, - [1906] = {.lex_state = 9}, + [1904] = {.lex_state = 10}, + [1905] = {.lex_state = 10}, + [1906] = {.lex_state = 10}, [1907] = {.lex_state = 9}, - [1908] = {.lex_state = 9}, - [1909] = {.lex_state = 17}, + [1908] = {.lex_state = 10}, + [1909] = {.lex_state = 10}, [1910] = {.lex_state = 9}, - [1911] = {.lex_state = 17}, - [1912] = {.lex_state = 10}, - [1913] = {.lex_state = 9}, + [1911] = {.lex_state = 10}, + [1912] = {.lex_state = 9}, + [1913] = {.lex_state = 10}, [1914] = {.lex_state = 9}, [1915] = {.lex_state = 9}, - [1916] = {.lex_state = 9}, + [1916] = {.lex_state = 10}, [1917] = {.lex_state = 9}, - [1918] = {.lex_state = 17}, - [1919] = {.lex_state = 9}, + [1918] = {.lex_state = 9}, + [1919] = {.lex_state = 17}, [1920] = {.lex_state = 9}, [1921] = {.lex_state = 9}, [1922] = {.lex_state = 9}, - [1923] = {.lex_state = 9}, + [1923] = {.lex_state = 10}, [1924] = {.lex_state = 9}, [1925] = {.lex_state = 9}, - [1926] = {.lex_state = 10}, - [1927] = {.lex_state = 9}, - [1928] = {.lex_state = 10}, + [1926] = {.lex_state = 9}, + [1927] = {.lex_state = 10}, + [1928] = {.lex_state = 9}, [1929] = {.lex_state = 9}, - [1930] = {.lex_state = 9}, + [1930] = {.lex_state = 17}, [1931] = {.lex_state = 9}, [1932] = {.lex_state = 9}, - [1933] = {.lex_state = 17}, - [1934] = {.lex_state = 9}, - [1935] = {.lex_state = 17}, - [1936] = {.lex_state = 9}, + [1933] = {.lex_state = 9}, + [1934] = {.lex_state = 10}, + [1935] = {.lex_state = 9}, + [1936] = {.lex_state = 17}, [1937] = {.lex_state = 9}, [1938] = {.lex_state = 9}, [1939] = {.lex_state = 9}, [1940] = {.lex_state = 9}, [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}, + [1942] = {.lex_state = 9}, + [1943] = {.lex_state = 9}, + [1944] = {.lex_state = 9}, + [1945] = {.lex_state = 9}, + [1946] = {.lex_state = 9}, + [1947] = {.lex_state = 9}, + [1948] = {.lex_state = 9}, [1949] = {.lex_state = 17}, - [1950] = {.lex_state = 17}, - [1951] = {.lex_state = 17}, - [1952] = {.lex_state = 17}, + [1950] = {.lex_state = 9}, + [1951] = {.lex_state = 9}, + [1952] = {.lex_state = 9}, [1953] = {.lex_state = 17}, [1954] = {.lex_state = 17}, [1955] = {.lex_state = 17}, @@ -12312,218 +12350,218 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1961] = {.lex_state = 17}, [1962] = {.lex_state = 17}, [1963] = {.lex_state = 17}, - [1964] = {.lex_state = 31}, - [1965] = {.lex_state = 31}, - [1966] = {.lex_state = 18}, - [1967] = {.lex_state = 18}, - [1968] = {.lex_state = 18}, - [1969] = {.lex_state = 18}, - [1970] = {.lex_state = 18}, - [1971] = {.lex_state = 18}, - [1972] = {.lex_state = 18}, - [1973] = {.lex_state = 18}, - [1974] = {.lex_state = 18}, - [1975] = {.lex_state = 31}, - [1976] = {.lex_state = 18}, - [1977] = {.lex_state = 17}, - [1978] = {.lex_state = 31}, - [1979] = {.lex_state = 17}, + [1964] = {.lex_state = 17}, + [1965] = {.lex_state = 17}, + [1966] = {.lex_state = 17}, + [1967] = {.lex_state = 17}, + [1968] = {.lex_state = 17}, + [1969] = {.lex_state = 17}, + [1970] = {.lex_state = 17}, + [1971] = {.lex_state = 17}, + [1972] = {.lex_state = 17}, + [1973] = {.lex_state = 17}, + [1974] = {.lex_state = 17}, + [1975] = {.lex_state = 17}, + [1976] = {.lex_state = 31}, + [1977] = {.lex_state = 31}, + [1978] = {.lex_state = 18}, + [1979] = {.lex_state = 18}, [1980] = {.lex_state = 18}, [1981] = {.lex_state = 18}, - [1982] = {.lex_state = 17}, - [1983] = {.lex_state = 17}, - [1984] = {.lex_state = 31}, - [1985] = {.lex_state = 18}, - [1986] = {.lex_state = 31}, - [1987] = {.lex_state = 13, .external_lex_state = 2}, - [1988] = {.lex_state = 17}, - [1989] = {.lex_state = 17}, - [1990] = {.lex_state = 17}, - [1991] = {.lex_state = 31}, + [1982] = {.lex_state = 18}, + [1983] = {.lex_state = 18}, + [1984] = {.lex_state = 17}, + [1985] = {.lex_state = 17}, + [1986] = {.lex_state = 17}, + [1987] = {.lex_state = 18}, + [1988] = {.lex_state = 18}, + [1989] = {.lex_state = 18}, + [1990] = {.lex_state = 18}, + [1991] = {.lex_state = 18}, [1992] = {.lex_state = 17}, - [1993] = {.lex_state = 17}, - [1994] = {.lex_state = 17}, - [1995] = {.lex_state = 18}, + [1993] = {.lex_state = 18}, + [1994] = {.lex_state = 13, .external_lex_state = 2}, + [1995] = {.lex_state = 17}, [1996] = {.lex_state = 17}, [1997] = {.lex_state = 17}, - [1998] = {.lex_state = 18}, - [1999] = {.lex_state = 17}, + [1998] = {.lex_state = 31}, + [1999] = {.lex_state = 18}, [2000] = {.lex_state = 17}, - [2001] = {.lex_state = 17}, - [2002] = {.lex_state = 31}, - [2003] = {.lex_state = 18}, - [2004] = {.lex_state = 31}, + [2001] = {.lex_state = 18}, + [2002] = {.lex_state = 17}, + [2003] = {.lex_state = 17}, + [2004] = {.lex_state = 18}, [2005] = {.lex_state = 17}, - [2006] = {.lex_state = 31}, + [2006] = {.lex_state = 17}, [2007] = {.lex_state = 31}, - [2008] = {.lex_state = 31}, + [2008] = {.lex_state = 17}, [2009] = {.lex_state = 31}, [2010] = {.lex_state = 31}, [2011] = {.lex_state = 31}, [2012] = {.lex_state = 31}, - [2013] = {.lex_state = 31}, - [2014] = {.lex_state = 31}, + [2013] = {.lex_state = 17}, + [2014] = {.lex_state = 18}, [2015] = {.lex_state = 17}, - [2016] = {.lex_state = 17}, - [2017] = {.lex_state = 31}, - [2018] = {.lex_state = 18}, + [2016] = {.lex_state = 31}, + [2017] = {.lex_state = 18}, + [2018] = {.lex_state = 31}, [2019] = {.lex_state = 17}, [2020] = {.lex_state = 31}, - [2021] = {.lex_state = 18}, - [2022] = {.lex_state = 17}, + [2021] = {.lex_state = 17}, + [2022] = {.lex_state = 31}, [2023] = {.lex_state = 31}, - [2024] = {.lex_state = 31}, - [2025] = {.lex_state = 17}, - [2026] = {.lex_state = 18}, + [2024] = {.lex_state = 17}, + [2025] = {.lex_state = 31}, + [2026] = {.lex_state = 17}, [2027] = {.lex_state = 31}, - [2028] = {.lex_state = 31}, - [2029] = {.lex_state = 31}, + [2028] = {.lex_state = 18}, + [2029] = {.lex_state = 18}, [2030] = {.lex_state = 31}, [2031] = {.lex_state = 17}, - [2032] = {.lex_state = 31}, + [2032] = {.lex_state = 17}, [2033] = {.lex_state = 31}, [2034] = {.lex_state = 31}, [2035] = {.lex_state = 31}, [2036] = {.lex_state = 31}, [2037] = {.lex_state = 31}, [2038] = {.lex_state = 31}, - [2039] = {.lex_state = 31}, - [2040] = {.lex_state = 31}, + [2039] = {.lex_state = 17}, + [2040] = {.lex_state = 17}, [2041] = {.lex_state = 17}, [2042] = {.lex_state = 31}, - [2043] = {.lex_state = 31}, + [2043] = {.lex_state = 17}, [2044] = {.lex_state = 31}, [2045] = {.lex_state = 31}, [2046] = {.lex_state = 31}, [2047] = {.lex_state = 31}, - [2048] = {.lex_state = 17}, - [2049] = {.lex_state = 31}, + [2048] = {.lex_state = 31}, + [2049] = {.lex_state = 18}, [2050] = {.lex_state = 31}, [2051] = {.lex_state = 31}, [2052] = {.lex_state = 31}, [2053] = {.lex_state = 31}, [2054] = {.lex_state = 31}, - [2055] = {.lex_state = 31}, + [2055] = {.lex_state = 17}, [2056] = {.lex_state = 31}, - [2057] = {.lex_state = 17}, + [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 = 18}, + [2064] = {.lex_state = 31}, [2065] = {.lex_state = 31}, [2066] = {.lex_state = 31}, - [2067] = {.lex_state = 17}, - [2068] = {.lex_state = 17}, - [2069] = {.lex_state = 17}, + [2067] = {.lex_state = 31}, + [2068] = {.lex_state = 31}, + [2069] = {.lex_state = 31}, [2070] = {.lex_state = 31}, - [2071] = {.lex_state = 31}, + [2071] = {.lex_state = 17}, [2072] = {.lex_state = 31}, - [2073] = {.lex_state = 18}, + [2073] = {.lex_state = 17}, [2074] = {.lex_state = 31}, - [2075] = {.lex_state = 19}, - [2076] = {.lex_state = 31}, - [2077] = {.lex_state = 18}, - [2078] = {.lex_state = 18}, - [2079] = {.lex_state = 18}, - [2080] = {.lex_state = 18}, - [2081] = {.lex_state = 18}, - [2082] = {.lex_state = 18}, + [2075] = {.lex_state = 31}, + [2076] = {.lex_state = 17}, + [2077] = {.lex_state = 17}, + [2078] = {.lex_state = 17}, + [2079] = {.lex_state = 17}, + [2080] = {.lex_state = 17}, + [2081] = {.lex_state = 17}, + [2082] = {.lex_state = 17}, [2083] = {.lex_state = 18}, [2084] = {.lex_state = 18}, [2085] = {.lex_state = 18}, [2086] = {.lex_state = 18}, - [2087] = {.lex_state = 18}, + [2087] = {.lex_state = 31}, [2088] = {.lex_state = 18}, - [2089] = {.lex_state = 17}, - [2090] = {.lex_state = 17}, - [2091] = {.lex_state = 17}, - [2092] = {.lex_state = 17}, - [2093] = {.lex_state = 17}, - [2094] = {.lex_state = 17}, - [2095] = {.lex_state = 17}, - [2096] = {.lex_state = 17}, - [2097] = {.lex_state = 17}, - [2098] = {.lex_state = 24}, + [2089] = {.lex_state = 18}, + [2090] = {.lex_state = 18}, + [2091] = {.lex_state = 18}, + [2092] = {.lex_state = 18}, + [2093] = {.lex_state = 18}, + [2094] = {.lex_state = 18}, + [2095] = {.lex_state = 18}, + [2096] = {.lex_state = 31}, + [2097] = {.lex_state = 19}, + [2098] = {.lex_state = 18}, [2099] = {.lex_state = 17}, - [2100] = {.lex_state = 31}, - [2101] = {.lex_state = 24}, + [2100] = {.lex_state = 17}, + [2101] = {.lex_state = 17}, [2102] = {.lex_state = 17}, [2103] = {.lex_state = 17}, [2104] = {.lex_state = 17}, [2105] = {.lex_state = 17}, [2106] = {.lex_state = 17}, [2107] = {.lex_state = 17}, - [2108] = {.lex_state = 31}, - [2109] = {.lex_state = 18}, - [2110] = {.lex_state = 18}, - [2111] = {.lex_state = 27}, - [2112] = {.lex_state = 31}, - [2113] = {.lex_state = 31}, - [2114] = {.lex_state = 17}, - [2115] = {.lex_state = 17}, + [2108] = {.lex_state = 17}, + [2109] = {.lex_state = 17}, + [2110] = {.lex_state = 31}, + [2111] = {.lex_state = 17}, + [2112] = {.lex_state = 17}, + [2113] = {.lex_state = 17}, + [2114] = {.lex_state = 27}, + [2115] = {.lex_state = 18}, [2116] = {.lex_state = 17}, - [2117] = {.lex_state = 18}, - [2118] = {.lex_state = 17}, - [2119] = {.lex_state = 17}, - [2120] = {.lex_state = 17}, + [2117] = {.lex_state = 17}, + [2118] = {.lex_state = 18}, + [2119] = {.lex_state = 18}, + [2120] = {.lex_state = 18}, [2121] = {.lex_state = 17}, - [2122] = {.lex_state = 18}, - [2123] = {.lex_state = 17}, - [2124] = {.lex_state = 31}, + [2122] = {.lex_state = 17}, + [2123] = {.lex_state = 31}, + [2124] = {.lex_state = 17}, [2125] = {.lex_state = 18}, - [2126] = {.lex_state = 27}, - [2127] = {.lex_state = 17}, - [2128] = {.lex_state = 17}, - [2129] = {.lex_state = 24}, + [2126] = {.lex_state = 17}, + [2127] = {.lex_state = 19}, + [2128] = {.lex_state = 18}, + [2129] = {.lex_state = 17}, [2130] = {.lex_state = 17}, - [2131] = {.lex_state = 24}, - [2132] = {.lex_state = 18}, - [2133] = {.lex_state = 17}, - [2134] = {.lex_state = 18}, + [2131] = {.lex_state = 17}, + [2132] = {.lex_state = 19}, + [2133] = {.lex_state = 31}, + [2134] = {.lex_state = 17}, [2135] = {.lex_state = 18}, - [2136] = {.lex_state = 18}, + [2136] = {.lex_state = 17}, [2137] = {.lex_state = 19}, - [2138] = {.lex_state = 19}, - [2139] = {.lex_state = 19}, - [2140] = {.lex_state = 18}, - [2141] = {.lex_state = 19}, - [2142] = {.lex_state = 17}, - [2143] = {.lex_state = 17}, - [2144] = {.lex_state = 31}, - [2145] = {.lex_state = 31}, - [2146] = {.lex_state = 31}, - [2147] = {.lex_state = 31}, - [2148] = {.lex_state = 31}, - [2149] = {.lex_state = 17}, - [2150] = {.lex_state = 31}, - [2151] = {.lex_state = 31}, + [2138] = {.lex_state = 17}, + [2139] = {.lex_state = 17}, + [2140] = {.lex_state = 31}, + [2141] = {.lex_state = 24}, + [2142] = {.lex_state = 24}, + [2143] = {.lex_state = 18}, + [2144] = {.lex_state = 24}, + [2145] = {.lex_state = 17}, + [2146] = {.lex_state = 19}, + [2147] = {.lex_state = 24}, + [2148] = {.lex_state = 18}, + [2149] = {.lex_state = 18}, + [2150] = {.lex_state = 18}, + [2151] = {.lex_state = 17}, [2152] = {.lex_state = 31}, - [2153] = {.lex_state = 31}, - [2154] = {.lex_state = 31}, - [2155] = {.lex_state = 18}, - [2156] = {.lex_state = 31}, + [2153] = {.lex_state = 18}, + [2154] = {.lex_state = 18}, + [2155] = {.lex_state = 27}, + [2156] = {.lex_state = 17}, [2157] = {.lex_state = 31}, [2158] = {.lex_state = 17}, - [2159] = {.lex_state = 17}, - [2160] = {.lex_state = 31}, + [2159] = {.lex_state = 31}, + [2160] = {.lex_state = 17}, [2161] = {.lex_state = 31}, - [2162] = {.lex_state = 27}, - [2163] = {.lex_state = 27}, + [2162] = {.lex_state = 17}, + [2163] = {.lex_state = 31}, [2164] = {.lex_state = 27}, [2165] = {.lex_state = 31}, - [2166] = {.lex_state = 31}, - [2167] = {.lex_state = 17}, - [2168] = {.lex_state = 31}, - [2169] = {.lex_state = 18}, - [2170] = {.lex_state = 17}, + [2166] = {.lex_state = 27}, + [2167] = {.lex_state = 31}, + [2168] = {.lex_state = 27}, + [2169] = {.lex_state = 31}, + [2170] = {.lex_state = 31}, [2171] = {.lex_state = 31}, - [2172] = {.lex_state = 31}, + [2172] = {.lex_state = 18}, [2173] = {.lex_state = 31}, [2174] = {.lex_state = 31}, - [2175] = {.lex_state = 18}, + [2175] = {.lex_state = 31}, [2176] = {.lex_state = 31}, [2177] = {.lex_state = 31}, [2178] = {.lex_state = 31}, @@ -12534,782 +12572,782 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2183] = {.lex_state = 31}, [2184] = {.lex_state = 31}, [2185] = {.lex_state = 31}, - [2186] = {.lex_state = 31}, + [2186] = {.lex_state = 18}, [2187] = {.lex_state = 31}, [2188] = {.lex_state = 31}, [2189] = {.lex_state = 31}, [2190] = {.lex_state = 31}, - [2191] = {.lex_state = 12}, - [2192] = {.lex_state = 18}, - [2193] = {.lex_state = 31}, - [2194] = {.lex_state = 27}, - [2195] = {.lex_state = 19}, - [2196] = {.lex_state = 19}, - [2197] = {.lex_state = 17}, - [2198] = {.lex_state = 17}, - [2199] = {.lex_state = 8}, - [2200] = {.lex_state = 31}, - [2201] = {.lex_state = 31}, - [2202] = {.lex_state = 17}, - [2203] = {.lex_state = 17}, - [2204] = {.lex_state = 17}, - [2205] = {.lex_state = 27}, - [2206] = {.lex_state = 17}, - [2207] = {.lex_state = 17}, - [2208] = {.lex_state = 19}, - [2209] = {.lex_state = 17}, - [2210] = {.lex_state = 17}, - [2211] = {.lex_state = 12}, - [2212] = {.lex_state = 8}, + [2191] = {.lex_state = 31}, + [2192] = {.lex_state = 17}, + [2193] = {.lex_state = 19}, + [2194] = {.lex_state = 31}, + [2195] = {.lex_state = 17}, + [2196] = {.lex_state = 31}, + [2197] = {.lex_state = 18}, + [2198] = {.lex_state = 18}, + [2199] = {.lex_state = 31}, + [2200] = {.lex_state = 12}, + [2201] = {.lex_state = 27}, + [2202] = {.lex_state = 18}, + [2203] = {.lex_state = 18}, + [2204] = {.lex_state = 31}, + [2205] = {.lex_state = 31}, + [2206] = {.lex_state = 31}, + [2207] = {.lex_state = 31}, + [2208] = {.lex_state = 31}, + [2209] = {.lex_state = 31}, + [2210] = {.lex_state = 18}, + [2211] = {.lex_state = 31}, + [2212] = {.lex_state = 18}, [2213] = {.lex_state = 17}, [2214] = {.lex_state = 17}, [2215] = {.lex_state = 17}, - [2216] = {.lex_state = 17}, - [2217] = {.lex_state = 19}, + [2216] = {.lex_state = 31}, + [2217] = {.lex_state = 17}, [2218] = {.lex_state = 19}, - [2219] = {.lex_state = 8}, - [2220] = {.lex_state = 12}, - [2221] = {.lex_state = 72}, - [2222] = {.lex_state = 31}, - [2223] = {.lex_state = 17}, - [2224] = {.lex_state = 17}, - [2225] = {.lex_state = 17}, - [2226] = {.lex_state = 17}, - [2227] = {.lex_state = 17}, - [2228] = {.lex_state = 17}, - [2229] = {.lex_state = 17}, - [2230] = {.lex_state = 18}, - [2231] = {.lex_state = 17}, + [2219] = {.lex_state = 19}, + [2220] = {.lex_state = 8}, + [2221] = {.lex_state = 17}, + [2222] = {.lex_state = 17}, + [2223] = {.lex_state = 8}, + [2224] = {.lex_state = 72}, + [2225] = {.lex_state = 12}, + [2226] = {.lex_state = 31}, + [2227] = {.lex_state = 12}, + [2228] = {.lex_state = 12}, + [2229] = {.lex_state = 31}, + [2230] = {.lex_state = 27}, + [2231] = {.lex_state = 8}, [2232] = {.lex_state = 31}, - [2233] = {.lex_state = 17}, - [2234] = {.lex_state = 12}, - [2235] = {.lex_state = 17}, - [2236] = {.lex_state = 17}, - [2237] = {.lex_state = 12}, - [2238] = {.lex_state = 31}, - [2239] = {.lex_state = 17}, - [2240] = {.lex_state = 31}, - [2241] = {.lex_state = 31}, - [2242] = {.lex_state = 31}, - [2243] = {.lex_state = 19}, + [2233] = {.lex_state = 19}, + [2234] = {.lex_state = 17}, + [2235] = {.lex_state = 31}, + [2236] = {.lex_state = 31}, + [2237] = {.lex_state = 31}, + [2238] = {.lex_state = 17}, + [2239] = {.lex_state = 19}, + [2240] = {.lex_state = 17}, + [2241] = {.lex_state = 17}, + [2242] = {.lex_state = 17}, + [2243] = {.lex_state = 17}, [2244] = {.lex_state = 17}, [2245] = {.lex_state = 17}, [2246] = {.lex_state = 17}, [2247] = {.lex_state = 17}, [2248] = {.lex_state = 17}, - [2249] = {.lex_state = 17}, - [2250] = {.lex_state = 27}, - [2251] = {.lex_state = 17}, + [2249] = {.lex_state = 12}, + [2250] = {.lex_state = 17}, + [2251] = {.lex_state = 31}, [2252] = {.lex_state = 17}, - [2253] = {.lex_state = 27}, - [2254] = {.lex_state = 17}, + [2253] = {.lex_state = 31}, + [2254] = {.lex_state = 31}, [2255] = {.lex_state = 17}, - [2256] = {.lex_state = 27}, + [2256] = {.lex_state = 31}, [2257] = {.lex_state = 17}, [2258] = {.lex_state = 17}, [2259] = {.lex_state = 17}, - [2260] = {.lex_state = 17}, + [2260] = {.lex_state = 19}, [2261] = {.lex_state = 17}, - [2262] = {.lex_state = 17}, + [2262] = {.lex_state = 31}, [2263] = {.lex_state = 17}, [2264] = {.lex_state = 17}, [2265] = {.lex_state = 17}, - [2266] = {.lex_state = 27}, + [2266] = {.lex_state = 17}, [2267] = {.lex_state = 27}, - [2268] = {.lex_state = 27}, + [2268] = {.lex_state = 17}, [2269] = {.lex_state = 17}, [2270] = {.lex_state = 17}, [2271] = {.lex_state = 17}, - [2272] = {.lex_state = 17}, - [2273] = {.lex_state = 12}, + [2272] = {.lex_state = 27}, + [2273] = {.lex_state = 17}, [2274] = {.lex_state = 17}, - [2275] = {.lex_state = 27}, - [2276] = {.lex_state = 27}, + [2275] = {.lex_state = 17}, + [2276] = {.lex_state = 17}, [2277] = {.lex_state = 17}, [2278] = {.lex_state = 17}, [2279] = {.lex_state = 17}, [2280] = {.lex_state = 17}, - [2281] = {.lex_state = 27}, + [2281] = {.lex_state = 17}, [2282] = {.lex_state = 17}, [2283] = {.lex_state = 17}, [2284] = {.lex_state = 17}, [2285] = {.lex_state = 17}, - [2286] = {.lex_state = 27}, - [2287] = {.lex_state = 27}, - [2288] = {.lex_state = 17}, - [2289] = {.lex_state = 17}, + [2286] = {.lex_state = 17}, + [2287] = {.lex_state = 17}, + [2288] = {.lex_state = 24}, + [2289] = {.lex_state = 27}, [2290] = {.lex_state = 17}, - [2291] = {.lex_state = 17}, + [2291] = {.lex_state = 27}, [2292] = {.lex_state = 27}, - [2293] = {.lex_state = 17}, + [2293] = {.lex_state = 27}, [2294] = {.lex_state = 17}, - [2295] = {.lex_state = 24}, + [2295] = {.lex_state = 17}, [2296] = {.lex_state = 17}, [2297] = {.lex_state = 17}, - [2298] = {.lex_state = 17}, + [2298] = {.lex_state = 27}, [2299] = {.lex_state = 17}, - [2300] = {.lex_state = 12}, + [2300] = {.lex_state = 17}, [2301] = {.lex_state = 17}, - [2302] = {.lex_state = 27}, - [2303] = {.lex_state = 72}, - [2304] = {.lex_state = 72}, - [2305] = {.lex_state = 72}, - [2306] = {.lex_state = 72}, - [2307] = {.lex_state = 72}, - [2308] = {.lex_state = 72}, - [2309] = {.lex_state = 19}, - [2310] = {.lex_state = 72}, - [2311] = {.lex_state = 72}, + [2302] = {.lex_state = 17}, + [2303] = {.lex_state = 17}, + [2304] = {.lex_state = 27}, + [2305] = {.lex_state = 27}, + [2306] = {.lex_state = 27}, + [2307] = {.lex_state = 17}, + [2308] = {.lex_state = 17}, + [2309] = {.lex_state = 12}, + [2310] = {.lex_state = 27}, + [2311] = {.lex_state = 17}, [2312] = {.lex_state = 17}, [2313] = {.lex_state = 17}, - [2314] = {.lex_state = 27}, - [2315] = {.lex_state = 17}, - [2316] = {.lex_state = 72}, - [2317] = {.lex_state = 72}, - [2318] = {.lex_state = 27}, + [2314] = {.lex_state = 17}, + [2315] = {.lex_state = 27}, + [2316] = {.lex_state = 17}, + [2317] = {.lex_state = 27}, + [2318] = {.lex_state = 72}, [2319] = {.lex_state = 72}, - [2320] = {.lex_state = 27}, - [2321] = {.lex_state = 27}, + [2320] = {.lex_state = 72}, + [2321] = {.lex_state = 72}, [2322] = {.lex_state = 72}, [2323] = {.lex_state = 72}, - [2324] = {.lex_state = 72}, + [2324] = {.lex_state = 12}, [2325] = {.lex_state = 72}, - [2326] = {.lex_state = 17}, - [2327] = {.lex_state = 17}, + [2326] = {.lex_state = 72}, + [2327] = {.lex_state = 169}, [2328] = {.lex_state = 27}, [2329] = {.lex_state = 72}, - [2330] = {.lex_state = 72}, + [2330] = {.lex_state = 17}, [2331] = {.lex_state = 72}, [2332] = {.lex_state = 72}, - [2333] = {.lex_state = 5}, - [2334] = {.lex_state = 12}, - [2335] = {.lex_state = 5}, - [2336] = {.lex_state = 72}, - [2337] = {.lex_state = 27}, - [2338] = {.lex_state = 72}, - [2339] = {.lex_state = 72}, - [2340] = {.lex_state = 72}, - [2341] = {.lex_state = 72}, - [2342] = {.lex_state = 72}, - [2343] = {.lex_state = 72}, - [2344] = {.lex_state = 31}, - [2345] = {.lex_state = 27}, + [2333] = {.lex_state = 17}, + [2334] = {.lex_state = 72}, + [2335] = {.lex_state = 72}, + [2336] = {.lex_state = 27}, + [2337] = {.lex_state = 72}, + [2338] = {.lex_state = 31}, + [2339] = {.lex_state = 17}, + [2340] = {.lex_state = 27}, + [2341] = {.lex_state = 12}, + [2342] = {.lex_state = 17}, + [2343] = {.lex_state = 19}, + [2344] = {.lex_state = 5}, + [2345] = {.lex_state = 72}, [2346] = {.lex_state = 72}, [2347] = {.lex_state = 17}, [2348] = {.lex_state = 72}, - [2349] = {.lex_state = 72}, + [2349] = {.lex_state = 27}, [2350] = {.lex_state = 72}, - [2351] = {.lex_state = 12}, - [2352] = {.lex_state = 31}, - [2353] = {.lex_state = 169}, - [2354] = {.lex_state = 17}, - [2355] = {.lex_state = 17}, - [2356] = {.lex_state = 17}, - [2357] = {.lex_state = 5}, - [2358] = {.lex_state = 17}, - [2359] = {.lex_state = 31}, - [2360] = {.lex_state = 17}, - [2361] = {.lex_state = 17}, - [2362] = {.lex_state = 17}, - [2363] = {.lex_state = 17}, - [2364] = {.lex_state = 17}, - [2365] = {.lex_state = 19}, - [2366] = {.lex_state = 72}, - [2367] = {.lex_state = 21}, - [2368] = {.lex_state = 17}, - [2369] = {.lex_state = 17}, - [2370] = {.lex_state = 27}, - [2371] = {.lex_state = 31}, - [2372] = {.lex_state = 31}, - [2373] = {.lex_state = 17}, - [2374] = {.lex_state = 19}, + [2351] = {.lex_state = 17}, + [2352] = {.lex_state = 72}, + [2353] = {.lex_state = 5}, + [2354] = {.lex_state = 12}, + [2355] = {.lex_state = 72}, + [2356] = {.lex_state = 72}, + [2357] = {.lex_state = 72}, + [2358] = {.lex_state = 72}, + [2359] = {.lex_state = 72}, + [2360] = {.lex_state = 72}, + [2361] = {.lex_state = 31}, + [2362] = {.lex_state = 27}, + [2363] = {.lex_state = 27}, + [2364] = {.lex_state = 27}, + [2365] = {.lex_state = 17}, + [2366] = {.lex_state = 17}, + [2367] = {.lex_state = 17}, + [2368] = {.lex_state = 72}, + [2369] = {.lex_state = 72}, + [2370] = {.lex_state = 5}, + [2371] = {.lex_state = 72}, + [2372] = {.lex_state = 17}, + [2373] = {.lex_state = 72}, + [2374] = {.lex_state = 72}, [2375] = {.lex_state = 17}, [2376] = {.lex_state = 17}, [2377] = {.lex_state = 17}, - [2378] = {.lex_state = 31}, - [2379] = {.lex_state = 17}, - [2380] = {.lex_state = 17}, - [2381] = {.lex_state = 17}, + [2378] = {.lex_state = 17}, + [2379] = {.lex_state = 31}, + [2380] = {.lex_state = 31}, + [2381] = {.lex_state = 19}, [2382] = {.lex_state = 17}, - [2383] = {.lex_state = 31}, - [2384] = {.lex_state = 17}, - [2385] = {.lex_state = 21}, - [2386] = {.lex_state = 17}, - [2387] = {.lex_state = 5}, + [2383] = {.lex_state = 17}, + [2384] = {.lex_state = 19}, + [2385] = {.lex_state = 17}, + [2386] = {.lex_state = 19}, + [2387] = {.lex_state = 17}, [2388] = {.lex_state = 17}, - [2389] = {.lex_state = 19}, - [2390] = {.lex_state = 17}, + [2389] = {.lex_state = 5}, + [2390] = {.lex_state = 31}, [2391] = {.lex_state = 17}, - [2392] = {.lex_state = 17}, - [2393] = {.lex_state = 17}, - [2394] = {.lex_state = 17}, - [2395] = {.lex_state = 5}, + [2392] = {.lex_state = 31}, + [2393] = {.lex_state = 31}, + [2394] = {.lex_state = 19}, + [2395] = {.lex_state = 17}, [2396] = {.lex_state = 17}, - [2397] = {.lex_state = 19}, + [2397] = {.lex_state = 31}, [2398] = {.lex_state = 17}, - [2399] = {.lex_state = 19}, + [2399] = {.lex_state = 17}, [2400] = {.lex_state = 17}, - [2401] = {.lex_state = 19}, + [2401] = {.lex_state = 17}, [2402] = {.lex_state = 17}, - [2403] = {.lex_state = 19}, - [2404] = {.lex_state = 31}, - [2405] = {.lex_state = 31}, - [2406] = {.lex_state = 21}, + [2403] = {.lex_state = 72}, + [2404] = {.lex_state = 5}, + [2405] = {.lex_state = 17}, + [2406] = {.lex_state = 17}, [2407] = {.lex_state = 17}, - [2408] = {.lex_state = 17}, + [2408] = {.lex_state = 27}, [2409] = {.lex_state = 17}, [2410] = {.lex_state = 17}, [2411] = {.lex_state = 17}, [2412] = {.lex_state = 17}, [2413] = {.lex_state = 17}, [2414] = {.lex_state = 17}, - [2415] = {.lex_state = 31}, - [2416] = {.lex_state = 31}, - [2417] = {.lex_state = 21}, - [2418] = {.lex_state = 17}, + [2415] = {.lex_state = 19}, + [2416] = {.lex_state = 17}, + [2417] = {.lex_state = 17}, + [2418] = {.lex_state = 15}, [2419] = {.lex_state = 17}, - [2420] = {.lex_state = 31}, - [2421] = {.lex_state = 5}, - [2422] = {.lex_state = 72}, - [2423] = {.lex_state = 17}, - [2424] = {.lex_state = 17}, + [2420] = {.lex_state = 17}, + [2421] = {.lex_state = 17}, + [2422] = {.lex_state = 17}, + [2423] = {.lex_state = 21}, + [2424] = {.lex_state = 21}, [2425] = {.lex_state = 17}, [2426] = {.lex_state = 17}, [2427] = {.lex_state = 17}, [2428] = {.lex_state = 17}, - [2429] = {.lex_state = 31}, - [2430] = {.lex_state = 17}, + [2429] = {.lex_state = 5}, + [2430] = {.lex_state = 19}, [2431] = {.lex_state = 17}, - [2432] = {.lex_state = 31}, - [2433] = {.lex_state = 17}, + [2432] = {.lex_state = 17}, + [2433] = {.lex_state = 31}, [2434] = {.lex_state = 17}, - [2435] = {.lex_state = 17}, + [2435] = {.lex_state = 15}, [2436] = {.lex_state = 17}, - [2437] = {.lex_state = 31}, - [2438] = {.lex_state = 17}, - [2439] = {.lex_state = 31}, + [2437] = {.lex_state = 17}, + [2438] = {.lex_state = 21}, + [2439] = {.lex_state = 17}, [2440] = {.lex_state = 17}, - [2441] = {.lex_state = 17}, - [2442] = {.lex_state = 17}, - [2443] = {.lex_state = 17}, - [2444] = {.lex_state = 21}, - [2445] = {.lex_state = 15}, + [2441] = {.lex_state = 31}, + [2442] = {.lex_state = 21}, + [2443] = {.lex_state = 31}, + [2444] = {.lex_state = 17}, + [2445] = {.lex_state = 17}, [2446] = {.lex_state = 17}, [2447] = {.lex_state = 17}, - [2448] = {.lex_state = 21}, - [2449] = {.lex_state = 17}, + [2448] = {.lex_state = 17}, + [2449] = {.lex_state = 31}, [2450] = {.lex_state = 17}, - [2451] = {.lex_state = 17}, - [2452] = {.lex_state = 17}, - [2453] = {.lex_state = 15}, + [2451] = {.lex_state = 31}, + [2452] = {.lex_state = 31}, + [2453] = {.lex_state = 17}, [2454] = {.lex_state = 17}, - [2455] = {.lex_state = 5}, + [2455] = {.lex_state = 17}, [2456] = {.lex_state = 17}, [2457] = {.lex_state = 17}, - [2458] = {.lex_state = 23}, + [2458] = {.lex_state = 31}, [2459] = {.lex_state = 17}, - [2460] = {.lex_state = 23}, - [2461] = {.lex_state = 23}, - [2462] = {.lex_state = 17}, - [2463] = {.lex_state = 17}, + [2460] = {.lex_state = 17}, + [2461] = {.lex_state = 17}, + [2462] = {.lex_state = 31}, + [2463] = {.lex_state = 5}, [2464] = {.lex_state = 17}, - [2465] = {.lex_state = 23}, - [2466] = {.lex_state = 31}, - [2467] = {.lex_state = 23}, - [2468] = {.lex_state = 17}, - [2469] = {.lex_state = 17}, - [2470] = {.lex_state = 17}, - [2471] = {.lex_state = 23}, - [2472] = {.lex_state = 23}, - [2473] = {.lex_state = 31}, - [2474] = {.lex_state = 5}, - [2475] = {.lex_state = 23}, - [2476] = {.lex_state = 23}, + [2465] = {.lex_state = 19}, + [2466] = {.lex_state = 17}, + [2467] = {.lex_state = 21}, + [2468] = {.lex_state = 31}, + [2469] = {.lex_state = 72}, + [2470] = {.lex_state = 31}, + [2471] = {.lex_state = 17}, + [2472] = {.lex_state = 17}, + [2473] = {.lex_state = 17}, + [2474] = {.lex_state = 31}, + [2475] = {.lex_state = 21}, + [2476] = {.lex_state = 17}, [2477] = {.lex_state = 23}, - [2478] = {.lex_state = 23}, - [2479] = {.lex_state = 23}, - [2480] = {.lex_state = 23}, - [2481] = {.lex_state = 23}, + [2478] = {.lex_state = 31}, + [2479] = {.lex_state = 31}, + [2480] = {.lex_state = 17}, + [2481] = {.lex_state = 17}, [2482] = {.lex_state = 17}, [2483] = {.lex_state = 31}, - [2484] = {.lex_state = 31}, - [2485] = {.lex_state = 31}, - [2486] = {.lex_state = 31}, - [2487] = {.lex_state = 31}, - [2488] = {.lex_state = 8}, - [2489] = {.lex_state = 31}, - [2490] = {.lex_state = 31}, - [2491] = {.lex_state = 31}, - [2492] = {.lex_state = 31}, - [2493] = {.lex_state = 23}, - [2494] = {.lex_state = 23, .external_lex_state = 3}, - [2495] = {.lex_state = 8}, - [2496] = {.lex_state = 31}, + [2484] = {.lex_state = 17}, + [2485] = {.lex_state = 17}, + [2486] = {.lex_state = 17}, + [2487] = {.lex_state = 23}, + [2488] = {.lex_state = 31}, + [2489] = {.lex_state = 23}, + [2490] = {.lex_state = 17}, + [2491] = {.lex_state = 19}, + [2492] = {.lex_state = 19}, + [2493] = {.lex_state = 19}, + [2494] = {.lex_state = 23}, + [2495] = {.lex_state = 19}, + [2496] = {.lex_state = 17}, [2497] = {.lex_state = 17}, - [2498] = {.lex_state = 19}, - [2499] = {.lex_state = 31}, - [2500] = {.lex_state = 31}, - [2501] = {.lex_state = 19}, + [2498] = {.lex_state = 17}, + [2499] = {.lex_state = 23}, + [2500] = {.lex_state = 17}, + [2501] = {.lex_state = 17}, [2502] = {.lex_state = 17}, - [2503] = {.lex_state = 19}, - [2504] = {.lex_state = 8}, - [2505] = {.lex_state = 17}, + [2503] = {.lex_state = 23}, + [2504] = {.lex_state = 31}, + [2505] = {.lex_state = 31}, [2506] = {.lex_state = 17}, - [2507] = {.lex_state = 19}, - [2508] = {.lex_state = 19}, - [2509] = {.lex_state = 19}, - [2510] = {.lex_state = 17}, - [2511] = {.lex_state = 17}, + [2507] = {.lex_state = 17}, + [2508] = {.lex_state = 31}, + [2509] = {.lex_state = 31}, + [2510] = {.lex_state = 31}, + [2511] = {.lex_state = 5}, [2512] = {.lex_state = 31}, - [2513] = {.lex_state = 23}, - [2514] = {.lex_state = 31}, - [2515] = {.lex_state = 31}, - [2516] = {.lex_state = 17}, + [2513] = {.lex_state = 17}, + [2514] = {.lex_state = 23}, + [2515] = {.lex_state = 8}, + [2516] = {.lex_state = 31}, [2517] = {.lex_state = 31}, - [2518] = {.lex_state = 5}, + [2518] = {.lex_state = 23}, [2519] = {.lex_state = 23}, - [2520] = {.lex_state = 17}, + [2520] = {.lex_state = 31}, [2521] = {.lex_state = 31}, - [2522] = {.lex_state = 17}, + [2522] = {.lex_state = 23}, [2523] = {.lex_state = 23}, - [2524] = {.lex_state = 17}, - [2525] = {.lex_state = 23}, - [2526] = {.lex_state = 17}, - [2527] = {.lex_state = 31}, - [2528] = {.lex_state = 31}, - [2529] = {.lex_state = 31}, - [2530] = {.lex_state = 31}, + [2524] = {.lex_state = 31}, + [2525] = {.lex_state = 31}, + [2526] = {.lex_state = 31}, + [2527] = {.lex_state = 23}, + [2528] = {.lex_state = 23}, + [2529] = {.lex_state = 23}, + [2530] = {.lex_state = 8}, [2531] = {.lex_state = 23}, [2532] = {.lex_state = 23}, - [2533] = {.lex_state = 8}, - [2534] = {.lex_state = 17}, - [2535] = {.lex_state = 31}, + [2533] = {.lex_state = 23}, + [2534] = {.lex_state = 23}, + [2535] = {.lex_state = 23}, [2536] = {.lex_state = 23}, - [2537] = {.lex_state = 17}, - [2538] = {.lex_state = 31}, - [2539] = {.lex_state = 17}, + [2537] = {.lex_state = 23}, + [2538] = {.lex_state = 23}, + [2539] = {.lex_state = 23}, [2540] = {.lex_state = 23}, [2541] = {.lex_state = 17}, [2542] = {.lex_state = 17}, - [2543] = {.lex_state = 17}, - [2544] = {.lex_state = 72}, - [2545] = {.lex_state = 23}, - [2546] = {.lex_state = 23}, - [2547] = {.lex_state = 17}, - [2548] = {.lex_state = 23}, - [2549] = {.lex_state = 17}, - [2550] = {.lex_state = 31}, - [2551] = {.lex_state = 31}, - [2552] = {.lex_state = 72}, - [2553] = {.lex_state = 31}, + [2543] = {.lex_state = 8}, + [2544] = {.lex_state = 31}, + [2545] = {.lex_state = 31}, + [2546] = {.lex_state = 23, .external_lex_state = 3}, + [2547] = {.lex_state = 31}, + [2548] = {.lex_state = 31}, + [2549] = {.lex_state = 31}, + [2550] = {.lex_state = 23}, + [2551] = {.lex_state = 17}, + [2552] = {.lex_state = 17}, + [2553] = {.lex_state = 17}, [2554] = {.lex_state = 17}, [2555] = {.lex_state = 31}, - [2556] = {.lex_state = 23}, + [2556] = {.lex_state = 17}, [2557] = {.lex_state = 17}, [2558] = {.lex_state = 31}, [2559] = {.lex_state = 31}, - [2560] = {.lex_state = 23}, - [2561] = {.lex_state = 17}, - [2562] = {.lex_state = 23}, - [2563] = {.lex_state = 17}, - [2564] = {.lex_state = 23}, - [2565] = {.lex_state = 72}, - [2566] = {.lex_state = 23}, - [2567] = {.lex_state = 8}, - [2568] = {.lex_state = 8}, - [2569] = {.lex_state = 17}, - [2570] = {.lex_state = 23}, - [2571] = {.lex_state = 23}, - [2572] = {.lex_state = 23, .external_lex_state = 4}, - [2573] = {.lex_state = 23, .external_lex_state = 4}, + [2560] = {.lex_state = 31}, + [2561] = {.lex_state = 19}, + [2562] = {.lex_state = 17}, + [2563] = {.lex_state = 19}, + [2564] = {.lex_state = 31}, + [2565] = {.lex_state = 17}, + [2566] = {.lex_state = 17}, + [2567] = {.lex_state = 17}, + [2568] = {.lex_state = 23}, + [2569] = {.lex_state = 23}, + [2570] = {.lex_state = 31}, + [2571] = {.lex_state = 31}, + [2572] = {.lex_state = 5}, + [2573] = {.lex_state = 8}, [2574] = {.lex_state = 17}, - [2575] = {.lex_state = 8}, - [2576] = {.lex_state = 72}, - [2577] = {.lex_state = 72}, - [2578] = {.lex_state = 72}, + [2575] = {.lex_state = 72}, + [2576] = {.lex_state = 31}, + [2577] = {.lex_state = 17}, + [2578] = {.lex_state = 23}, [2579] = {.lex_state = 17}, - [2580] = {.lex_state = 72}, - [2581] = {.lex_state = 8}, - [2582] = {.lex_state = 17}, - [2583] = {.lex_state = 23}, + [2580] = {.lex_state = 17}, + [2581] = {.lex_state = 72}, + [2582] = {.lex_state = 23}, + [2583] = {.lex_state = 8}, [2584] = {.lex_state = 23}, - [2585] = {.lex_state = 17}, - [2586] = {.lex_state = 33}, - [2587] = {.lex_state = 5}, - [2588] = {.lex_state = 19}, - [2589] = {.lex_state = 17}, + [2585] = {.lex_state = 23}, + [2586] = {.lex_state = 8}, + [2587] = {.lex_state = 23}, + [2588] = {.lex_state = 33}, + [2589] = {.lex_state = 8}, [2590] = {.lex_state = 72}, - [2591] = {.lex_state = 17}, - [2592] = {.lex_state = 72}, - [2593] = {.lex_state = 72}, - [2594] = {.lex_state = 8}, - [2595] = {.lex_state = 17}, - [2596] = {.lex_state = 17}, - [2597] = {.lex_state = 17}, - [2598] = {.lex_state = 17}, - [2599] = {.lex_state = 17}, - [2600] = {.lex_state = 23}, + [2591] = {.lex_state = 72}, + [2592] = {.lex_state = 23}, + [2593] = {.lex_state = 23}, + [2594] = {.lex_state = 33}, + [2595] = {.lex_state = 72}, + [2596] = {.lex_state = 72}, + [2597] = {.lex_state = 23, .external_lex_state = 4}, + [2598] = {.lex_state = 23}, + [2599] = {.lex_state = 23}, + [2600] = {.lex_state = 23, .external_lex_state = 4}, [2601] = {.lex_state = 23}, - [2602] = {.lex_state = 23, .external_lex_state = 4}, + [2602] = {.lex_state = 23}, [2603] = {.lex_state = 23}, - [2604] = {.lex_state = 19}, - [2605] = {.lex_state = 23}, - [2606] = {.lex_state = 72}, - [2607] = {.lex_state = 23}, - [2608] = {.lex_state = 23}, - [2609] = {.lex_state = 19}, - [2610] = {.lex_state = 23}, - [2611] = {.lex_state = 23, .external_lex_state = 4}, + [2604] = {.lex_state = 17}, + [2605] = {.lex_state = 5}, + [2606] = {.lex_state = 17}, + [2607] = {.lex_state = 72}, + [2608] = {.lex_state = 8}, + [2609] = {.lex_state = 18}, + [2610] = {.lex_state = 8}, + [2611] = {.lex_state = 23}, [2612] = {.lex_state = 72}, - [2613] = {.lex_state = 19}, - [2614] = {.lex_state = 8}, + [2613] = {.lex_state = 23}, + [2614] = {.lex_state = 23}, [2615] = {.lex_state = 8}, [2616] = {.lex_state = 8}, - [2617] = {.lex_state = 8}, - [2618] = {.lex_state = 33}, - [2619] = {.lex_state = 23}, + [2617] = {.lex_state = 72}, + [2618] = {.lex_state = 23}, + [2619] = {.lex_state = 23, .external_lex_state = 4}, [2620] = {.lex_state = 72}, - [2621] = {.lex_state = 72}, + [2621] = {.lex_state = 8}, [2622] = {.lex_state = 17}, - [2623] = {.lex_state = 17}, + [2623] = {.lex_state = 8}, [2624] = {.lex_state = 72}, - [2625] = {.lex_state = 23}, + [2625] = {.lex_state = 72}, [2626] = {.lex_state = 8}, - [2627] = {.lex_state = 23}, + [2627] = {.lex_state = 8}, [2628] = {.lex_state = 72}, - [2629] = {.lex_state = 23}, - [2630] = {.lex_state = 8}, - [2631] = {.lex_state = 31}, - [2632] = {.lex_state = 72}, - [2633] = {.lex_state = 23, .external_lex_state = 4}, + [2629] = {.lex_state = 8}, + [2630] = {.lex_state = 5}, + [2631] = {.lex_state = 8}, + [2632] = {.lex_state = 8}, + [2633] = {.lex_state = 8}, [2634] = {.lex_state = 23}, - [2635] = {.lex_state = 23, .external_lex_state = 4}, + [2635] = {.lex_state = 17}, [2636] = {.lex_state = 8}, - [2637] = {.lex_state = 72}, - [2638] = {.lex_state = 23, .external_lex_state = 4}, - [2639] = {.lex_state = 72}, - [2640] = {.lex_state = 17}, - [2641] = {.lex_state = 8}, - [2642] = {.lex_state = 8}, - [2643] = {.lex_state = 8}, + [2637] = {.lex_state = 17}, + [2638] = {.lex_state = 23}, + [2639] = {.lex_state = 17}, + [2640] = {.lex_state = 8}, + [2641] = {.lex_state = 23}, + [2642] = {.lex_state = 72}, + [2643] = {.lex_state = 17}, [2644] = {.lex_state = 8}, [2645] = {.lex_state = 8}, - [2646] = {.lex_state = 31}, - [2647] = {.lex_state = 17}, - [2648] = {.lex_state = 17}, + [2646] = {.lex_state = 8}, + [2647] = {.lex_state = 31}, + [2648] = {.lex_state = 72}, [2649] = {.lex_state = 72}, - [2650] = {.lex_state = 23, .external_lex_state = 4}, - [2651] = {.lex_state = 17}, - [2652] = {.lex_state = 23, .external_lex_state = 4}, - [2653] = {.lex_state = 8}, - [2654] = {.lex_state = 8}, - [2655] = {.lex_state = 8}, - [2656] = {.lex_state = 72}, - [2657] = {.lex_state = 31}, - [2658] = {.lex_state = 8}, - [2659] = {.lex_state = 8}, + [2650] = {.lex_state = 17}, + [2651] = {.lex_state = 72}, + [2652] = {.lex_state = 31}, + [2653] = {.lex_state = 17}, + [2654] = {.lex_state = 23}, + [2655] = {.lex_state = 17}, + [2656] = {.lex_state = 17}, + [2657] = {.lex_state = 17}, + [2658] = {.lex_state = 31}, + [2659] = {.lex_state = 17}, [2660] = {.lex_state = 17}, [2661] = {.lex_state = 17}, - [2662] = {.lex_state = 33}, - [2663] = {.lex_state = 17}, - [2664] = {.lex_state = 72}, - [2665] = {.lex_state = 8}, - [2666] = {.lex_state = 17}, - [2667] = {.lex_state = 72}, - [2668] = {.lex_state = 8}, - [2669] = {.lex_state = 8}, - [2670] = {.lex_state = 18}, - [2671] = {.lex_state = 31}, - [2672] = {.lex_state = 8}, + [2662] = {.lex_state = 17}, + [2663] = {.lex_state = 23}, + [2664] = {.lex_state = 17}, + [2665] = {.lex_state = 17}, + [2666] = {.lex_state = 72}, + [2667] = {.lex_state = 17}, + [2668] = {.lex_state = 17}, + [2669] = {.lex_state = 72}, + [2670] = {.lex_state = 17}, + [2671] = {.lex_state = 17}, + [2672] = {.lex_state = 17}, [2673] = {.lex_state = 17}, - [2674] = {.lex_state = 8}, - [2675] = {.lex_state = 8}, - [2676] = {.lex_state = 23}, - [2677] = {.lex_state = 17}, - [2678] = {.lex_state = 23}, + [2674] = {.lex_state = 17}, + [2675] = {.lex_state = 17}, + [2676] = {.lex_state = 17}, + [2677] = {.lex_state = 33}, + [2678] = {.lex_state = 17}, [2679] = {.lex_state = 72}, [2680] = {.lex_state = 17}, - [2681] = {.lex_state = 31}, - [2682] = {.lex_state = 23}, - [2683] = {.lex_state = 5}, - [2684] = {.lex_state = 17}, - [2685] = {.lex_state = 17}, - [2686] = {.lex_state = 31}, - [2687] = {.lex_state = 23}, - [2688] = {.lex_state = 72}, - [2689] = {.lex_state = 8}, - [2690] = {.lex_state = 17}, + [2681] = {.lex_state = 17}, + [2682] = {.lex_state = 19}, + [2683] = {.lex_state = 17}, + [2684] = {.lex_state = 19}, + [2685] = {.lex_state = 19}, + [2686] = {.lex_state = 19}, + [2687] = {.lex_state = 17}, + [2688] = {.lex_state = 17}, + [2689] = {.lex_state = 17}, + [2690] = {.lex_state = 23}, [2691] = {.lex_state = 17}, - [2692] = {.lex_state = 23}, + [2692] = {.lex_state = 17}, [2693] = {.lex_state = 17}, [2694] = {.lex_state = 17}, - [2695] = {.lex_state = 17}, - [2696] = {.lex_state = 23}, + [2695] = {.lex_state = 31}, + [2696] = {.lex_state = 17}, [2697] = {.lex_state = 72}, - [2698] = {.lex_state = 23}, - [2699] = {.lex_state = 23}, - [2700] = {.lex_state = 17}, - [2701] = {.lex_state = 17}, - [2702] = {.lex_state = 17}, - [2703] = {.lex_state = 23}, - [2704] = {.lex_state = 17}, - [2705] = {.lex_state = 17}, - [2706] = {.lex_state = 72}, - [2707] = {.lex_state = 17}, - [2708] = {.lex_state = 8}, - [2709] = {.lex_state = 8}, - [2710] = {.lex_state = 17}, - [2711] = {.lex_state = 17}, - [2712] = {.lex_state = 31}, - [2713] = {.lex_state = 72}, - [2714] = {.lex_state = 72}, - [2715] = {.lex_state = 5}, - [2716] = {.lex_state = 19}, + [2698] = {.lex_state = 8}, + [2699] = {.lex_state = 72}, + [2700] = {.lex_state = 8}, + [2701] = {.lex_state = 23}, + [2702] = {.lex_state = 23}, + [2703] = {.lex_state = 23, .external_lex_state = 4}, + [2704] = {.lex_state = 72}, + [2705] = {.lex_state = 23}, + [2706] = {.lex_state = 23}, + [2707] = {.lex_state = 18}, + [2708] = {.lex_state = 72}, + [2709] = {.lex_state = 23}, + [2710] = {.lex_state = 31}, + [2711] = {.lex_state = 72}, + [2712] = {.lex_state = 23}, + [2713] = {.lex_state = 23}, + [2714] = {.lex_state = 23}, + [2715] = {.lex_state = 23, .external_lex_state = 4}, + [2716] = {.lex_state = 72}, [2717] = {.lex_state = 8}, [2718] = {.lex_state = 8}, [2719] = {.lex_state = 31}, - [2720] = {.lex_state = 23}, - [2721] = {.lex_state = 23}, - [2722] = {.lex_state = 23, .external_lex_state = 4}, - [2723] = {.lex_state = 72}, - [2724] = {.lex_state = 72}, - [2725] = {.lex_state = 72}, - [2726] = {.lex_state = 19}, - [2727] = {.lex_state = 19}, + [2720] = {.lex_state = 8}, + [2721] = {.lex_state = 8}, + [2722] = {.lex_state = 72}, + [2723] = {.lex_state = 17}, + [2724] = {.lex_state = 8}, + [2725] = {.lex_state = 8}, + [2726] = {.lex_state = 8}, + [2727] = {.lex_state = 23}, [2728] = {.lex_state = 23}, - [2729] = {.lex_state = 17}, + [2729] = {.lex_state = 23}, [2730] = {.lex_state = 72}, - [2731] = {.lex_state = 17}, - [2732] = {.lex_state = 19}, - [2733] = {.lex_state = 19}, - [2734] = {.lex_state = 72}, + [2731] = {.lex_state = 23, .external_lex_state = 4}, + [2732] = {.lex_state = 17}, + [2733] = {.lex_state = 23}, + [2734] = {.lex_state = 33}, [2735] = {.lex_state = 72}, - [2736] = {.lex_state = 23}, - [2737] = {.lex_state = 23}, - [2738] = {.lex_state = 23, .external_lex_state = 4}, - [2739] = {.lex_state = 23}, - [2740] = {.lex_state = 23}, + [2736] = {.lex_state = 17}, + [2737] = {.lex_state = 17}, + [2738] = {.lex_state = 72}, + [2739] = {.lex_state = 17}, + [2740] = {.lex_state = 17}, [2741] = {.lex_state = 23}, [2742] = {.lex_state = 23}, - [2743] = {.lex_state = 23}, - [2744] = {.lex_state = 17}, + [2743] = {.lex_state = 23, .external_lex_state = 4}, + [2744] = {.lex_state = 23}, [2745] = {.lex_state = 23}, - [2746] = {.lex_state = 17}, - [2747] = {.lex_state = 17}, + [2746] = {.lex_state = 72}, + [2747] = {.lex_state = 23}, [2748] = {.lex_state = 23}, - [2749] = {.lex_state = 17}, - [2750] = {.lex_state = 72}, - [2751] = {.lex_state = 23}, - [2752] = {.lex_state = 17}, - [2753] = {.lex_state = 17}, - [2754] = {.lex_state = 72}, - [2755] = {.lex_state = 23}, + [2749] = {.lex_state = 23}, + [2750] = {.lex_state = 23, .external_lex_state = 4}, + [2751] = {.lex_state = 72}, + [2752] = {.lex_state = 8}, + [2753] = {.lex_state = 8}, + [2754] = {.lex_state = 8}, + [2755] = {.lex_state = 8}, [2756] = {.lex_state = 23}, - [2757] = {.lex_state = 17}, - [2758] = {.lex_state = 18}, - [2759] = {.lex_state = 23}, + [2757] = {.lex_state = 72}, + [2758] = {.lex_state = 23}, + [2759] = {.lex_state = 23, .external_lex_state = 4}, [2760] = {.lex_state = 23}, [2761] = {.lex_state = 23}, - [2762] = {.lex_state = 31}, - [2763] = {.lex_state = 23}, - [2764] = {.lex_state = 23}, - [2765] = {.lex_state = 31}, - [2766] = {.lex_state = 19}, - [2767] = {.lex_state = 17}, - [2768] = {.lex_state = 17}, - [2769] = {.lex_state = 5}, - [2770] = {.lex_state = 72}, - [2771] = {.lex_state = 17}, - [2772] = {.lex_state = 17}, - [2773] = {.lex_state = 17}, - [2774] = {.lex_state = 8}, - [2775] = {.lex_state = 72}, - [2776] = {.lex_state = 18}, - [2777] = {.lex_state = 17}, + [2762] = {.lex_state = 72}, + [2763] = {.lex_state = 23, .external_lex_state = 4}, + [2764] = {.lex_state = 72}, + [2765] = {.lex_state = 8}, + [2766] = {.lex_state = 8}, + [2767] = {.lex_state = 8}, + [2768] = {.lex_state = 8}, + [2769] = {.lex_state = 72}, + [2770] = {.lex_state = 23, .external_lex_state = 4}, + [2771] = {.lex_state = 23, .external_lex_state = 4}, + [2772] = {.lex_state = 8}, + [2773] = {.lex_state = 8}, + [2774] = {.lex_state = 72}, + [2775] = {.lex_state = 31}, + [2776] = {.lex_state = 8}, + [2777] = {.lex_state = 72}, [2778] = {.lex_state = 23}, - [2779] = {.lex_state = 23}, - [2780] = {.lex_state = 23}, - [2781] = {.lex_state = 23}, - [2782] = {.lex_state = 23}, - [2783] = {.lex_state = 5}, - [2784] = {.lex_state = 72}, - [2785] = {.lex_state = 8}, - [2786] = {.lex_state = 17}, + [2779] = {.lex_state = 23, .external_lex_state = 4}, + [2780] = {.lex_state = 8}, + [2781] = {.lex_state = 8}, + [2782] = {.lex_state = 17}, + [2783] = {.lex_state = 18}, + [2784] = {.lex_state = 23}, + [2785] = {.lex_state = 5}, + [2786] = {.lex_state = 72}, [2787] = {.lex_state = 72}, - [2788] = {.lex_state = 23}, - [2789] = {.lex_state = 19}, + [2788] = {.lex_state = 17}, + [2789] = {.lex_state = 17}, [2790] = {.lex_state = 72}, - [2791] = {.lex_state = 19}, + [2791] = {.lex_state = 17}, [2792] = {.lex_state = 23}, [2793] = {.lex_state = 17}, - [2794] = {.lex_state = 23, .external_lex_state = 4}, - [2795] = {.lex_state = 72}, - [2796] = {.lex_state = 33}, - [2797] = {.lex_state = 8}, - [2798] = {.lex_state = 8}, - [2799] = {.lex_state = 23}, - [2800] = {.lex_state = 8}, - [2801] = {.lex_state = 17}, - [2802] = {.lex_state = 31}, - [2803] = {.lex_state = 72}, - [2804] = {.lex_state = 23, .external_lex_state = 4}, - [2805] = {.lex_state = 72}, - [2806] = {.lex_state = 8}, - [2807] = {.lex_state = 8}, - [2808] = {.lex_state = 8}, - [2809] = {.lex_state = 8}, - [2810] = {.lex_state = 17}, - [2811] = {.lex_state = 17}, - [2812] = {.lex_state = 8}, - [2813] = {.lex_state = 8}, - [2814] = {.lex_state = 72}, - [2815] = {.lex_state = 8}, - [2816] = {.lex_state = 72}, - [2817] = {.lex_state = 72}, - [2818] = {.lex_state = 8}, - [2819] = {.lex_state = 8}, + [2794] = {.lex_state = 19}, + [2795] = {.lex_state = 23}, + [2796] = {.lex_state = 19}, + [2797] = {.lex_state = 19}, + [2798] = {.lex_state = 31}, + [2799] = {.lex_state = 72}, + [2800] = {.lex_state = 23}, + [2801] = {.lex_state = 19}, + [2802] = {.lex_state = 72}, + [2803] = {.lex_state = 8}, + [2804] = {.lex_state = 8}, + [2805] = {.lex_state = 19}, + [2806] = {.lex_state = 17}, + [2807] = {.lex_state = 23}, + [2808] = {.lex_state = 17}, + [2809] = {.lex_state = 19}, + [2810] = {.lex_state = 19}, + [2811] = {.lex_state = 19}, + [2812] = {.lex_state = 72}, + [2813] = {.lex_state = 72}, + [2814] = {.lex_state = 23}, + [2815] = {.lex_state = 23}, + [2816] = {.lex_state = 31}, + [2817] = {.lex_state = 23}, + [2818] = {.lex_state = 23}, + [2819] = {.lex_state = 23}, [2820] = {.lex_state = 23}, [2821] = {.lex_state = 23}, - [2822] = {.lex_state = 23}, - [2823] = {.lex_state = 72}, + [2822] = {.lex_state = 18}, + [2823] = {.lex_state = 18}, [2824] = {.lex_state = 72}, - [2825] = {.lex_state = 72}, - [2826] = {.lex_state = 72}, - [2827] = {.lex_state = 72}, + [2825] = {.lex_state = 5}, + [2826] = {.lex_state = 17}, + [2827] = {.lex_state = 23}, [2828] = {.lex_state = 72}, - [2829] = {.lex_state = 72}, - [2830] = {.lex_state = 72}, - [2831] = {.lex_state = 72}, - [2832] = {.lex_state = 72}, - [2833] = {.lex_state = 72}, - [2834] = {.lex_state = 72}, - [2835] = {.lex_state = 72}, + [2829] = {.lex_state = 5}, + [2830] = {.lex_state = 17}, + [2831] = {.lex_state = 17}, + [2832] = {.lex_state = 17}, + [2833] = {.lex_state = 31}, + [2834] = {.lex_state = 8}, + [2835] = {.lex_state = 17}, [2836] = {.lex_state = 8}, - [2837] = {.lex_state = 72}, - [2838] = {.lex_state = 72}, - [2839] = {.lex_state = 72}, - [2840] = {.lex_state = 72}, - [2841] = {.lex_state = 72}, - [2842] = {.lex_state = 72}, - [2843] = {.lex_state = 72}, + [2837] = {.lex_state = 8}, + [2838] = {.lex_state = 31}, + [2839] = {.lex_state = 8}, + [2840] = {.lex_state = 17}, + [2841] = {.lex_state = 17}, + [2842] = {.lex_state = 23}, + [2843] = {.lex_state = 8}, [2844] = {.lex_state = 72}, - [2845] = {.lex_state = 72}, + [2845] = {.lex_state = 17}, [2846] = {.lex_state = 72}, [2847] = {.lex_state = 72}, [2848] = {.lex_state = 72}, [2849] = {.lex_state = 72}, [2850] = {.lex_state = 72}, - [2851] = {.lex_state = 21}, - [2852] = {.lex_state = 72}, + [2851] = {.lex_state = 72}, + [2852] = {.lex_state = 19}, [2853] = {.lex_state = 72}, [2854] = {.lex_state = 72}, [2855] = {.lex_state = 72}, [2856] = {.lex_state = 72}, [2857] = {.lex_state = 72}, - [2858] = {.lex_state = 72}, - [2859] = {.lex_state = 17}, - [2860] = {.lex_state = 72}, - [2861] = {.lex_state = 17}, + [2858] = {.lex_state = 19}, + [2859] = {.lex_state = 72}, + [2860] = {.lex_state = 19}, + [2861] = {.lex_state = 72}, [2862] = {.lex_state = 72}, - [2863] = {.lex_state = 21}, + [2863] = {.lex_state = 72}, [2864] = {.lex_state = 72}, [2865] = {.lex_state = 72}, [2866] = {.lex_state = 72}, - [2867] = {.lex_state = 72}, - [2868] = {.lex_state = 17}, - [2869] = {.lex_state = 72}, - [2870] = {.lex_state = 72}, + [2867] = {.lex_state = 8}, + [2868] = {.lex_state = 72}, + [2869] = {.lex_state = 19}, + [2870] = {.lex_state = 19}, [2871] = {.lex_state = 72}, [2872] = {.lex_state = 72}, - [2873] = {.lex_state = 72}, + [2873] = {.lex_state = 19}, [2874] = {.lex_state = 72}, - [2875] = {.lex_state = 72}, - [2876] = {.lex_state = 17}, + [2875] = {.lex_state = 19}, + [2876] = {.lex_state = 72}, [2877] = {.lex_state = 72}, [2878] = {.lex_state = 72}, - [2879] = {.lex_state = 72}, + [2879] = {.lex_state = 17}, [2880] = {.lex_state = 72}, - [2881] = {.lex_state = 21}, - [2882] = {.lex_state = 21}, - [2883] = {.lex_state = 72}, + [2881] = {.lex_state = 17}, + [2882] = {.lex_state = 72}, + [2883] = {.lex_state = 23, .external_lex_state = 4}, [2884] = {.lex_state = 72}, - [2885] = {.lex_state = 72}, - [2886] = {.lex_state = 72}, + [2885] = {.lex_state = 17}, + [2886] = {.lex_state = 31}, [2887] = {.lex_state = 72}, [2888] = {.lex_state = 72}, [2889] = {.lex_state = 72}, - [2890] = {.lex_state = 72}, - [2891] = {.lex_state = 72}, + [2890] = {.lex_state = 17}, + [2891] = {.lex_state = 17}, [2892] = {.lex_state = 72}, - [2893] = {.lex_state = 72}, + [2893] = {.lex_state = 21}, [2894] = {.lex_state = 72}, - [2895] = {.lex_state = 72}, + [2895] = {.lex_state = 21}, [2896] = {.lex_state = 72}, - [2897] = {.lex_state = 19}, - [2898] = {.lex_state = 19}, - [2899] = {.lex_state = 17}, + [2897] = {.lex_state = 72}, + [2898] = {.lex_state = 72}, + [2899] = {.lex_state = 72}, [2900] = {.lex_state = 72}, [2901] = {.lex_state = 72}, [2902] = {.lex_state = 72}, - [2903] = {.lex_state = 17}, + [2903] = {.lex_state = 72}, [2904] = {.lex_state = 72}, - [2905] = {.lex_state = 19}, + [2905] = {.lex_state = 17}, [2906] = {.lex_state = 72}, - [2907] = {.lex_state = 19}, + [2907] = {.lex_state = 72}, [2908] = {.lex_state = 72}, - [2909] = {.lex_state = 72}, + [2909] = {.lex_state = 17}, [2910] = {.lex_state = 72}, [2911] = {.lex_state = 72}, - [2912] = {.lex_state = 19}, - [2913] = {.lex_state = 19}, + [2912] = {.lex_state = 72}, + [2913] = {.lex_state = 72}, [2914] = {.lex_state = 72}, - [2915] = {.lex_state = 19}, + [2915] = {.lex_state = 72}, [2916] = {.lex_state = 72}, - [2917] = {.lex_state = 17}, - [2918] = {.lex_state = 19}, - [2919] = {.lex_state = 19}, - [2920] = {.lex_state = 19}, + [2917] = {.lex_state = 21}, + [2918] = {.lex_state = 72}, + [2919] = {.lex_state = 72}, + [2920] = {.lex_state = 72}, [2921] = {.lex_state = 72}, [2922] = {.lex_state = 72}, - [2923] = {.lex_state = 19}, - [2924] = {.lex_state = 17}, + [2923] = {.lex_state = 72}, + [2924] = {.lex_state = 72}, [2925] = {.lex_state = 72}, - [2926] = {.lex_state = 19}, + [2926] = {.lex_state = 17}, [2927] = {.lex_state = 72}, - [2928] = {.lex_state = 72}, + [2928] = {.lex_state = 31}, [2929] = {.lex_state = 72}, - [2930] = {.lex_state = 31}, + [2930] = {.lex_state = 17}, [2931] = {.lex_state = 72}, - [2932] = {.lex_state = 72}, - [2933] = {.lex_state = 72}, - [2934] = {.lex_state = 72}, + [2932] = {.lex_state = 19}, + [2933] = {.lex_state = 19}, + [2934] = {.lex_state = 17}, [2935] = {.lex_state = 72}, - [2936] = {.lex_state = 72}, - [2937] = {.lex_state = 72}, + [2936] = {.lex_state = 17}, + [2937] = {.lex_state = 19}, [2938] = {.lex_state = 72}, [2939] = {.lex_state = 72}, [2940] = {.lex_state = 72}, [2941] = {.lex_state = 72}, [2942] = {.lex_state = 72}, [2943] = {.lex_state = 72}, - [2944] = {.lex_state = 72}, - [2945] = {.lex_state = 17}, - [2946] = {.lex_state = 72}, - [2947] = {.lex_state = 72}, + [2944] = {.lex_state = 19}, + [2945] = {.lex_state = 72}, + [2946] = {.lex_state = 19}, + [2947] = {.lex_state = 8}, [2948] = {.lex_state = 72}, [2949] = {.lex_state = 72}, - [2950] = {.lex_state = 72}, + [2950] = {.lex_state = 19}, [2951] = {.lex_state = 72}, [2952] = {.lex_state = 72}, - [2953] = {.lex_state = 19}, - [2954] = {.lex_state = 17}, - [2955] = {.lex_state = 72}, + [2953] = {.lex_state = 17}, + [2954] = {.lex_state = 72}, + [2955] = {.lex_state = 19}, [2956] = {.lex_state = 72}, - [2957] = {.lex_state = 17}, + [2957] = {.lex_state = 72}, [2958] = {.lex_state = 72}, [2959] = {.lex_state = 72}, [2960] = {.lex_state = 72}, - [2961] = {.lex_state = 17}, + [2961] = {.lex_state = 72}, [2962] = {.lex_state = 72}, [2963] = {.lex_state = 72}, [2964] = {.lex_state = 72}, @@ -13317,317 +13355,317 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2966] = {.lex_state = 72}, [2967] = {.lex_state = 72}, [2968] = {.lex_state = 72}, - [2969] = {.lex_state = 17}, - [2970] = {.lex_state = 8}, + [2969] = {.lex_state = 72}, + [2970] = {.lex_state = 72}, [2971] = {.lex_state = 72}, [2972] = {.lex_state = 72}, [2973] = {.lex_state = 72}, - [2974] = {.lex_state = 72}, + [2974] = {.lex_state = 17}, [2975] = {.lex_state = 72}, [2976] = {.lex_state = 72}, [2977] = {.lex_state = 72}, - [2978] = {.lex_state = 72}, + [2978] = {.lex_state = 8}, [2979] = {.lex_state = 72}, - [2980] = {.lex_state = 8}, + [2980] = {.lex_state = 72}, [2981] = {.lex_state = 19}, - [2982] = {.lex_state = 19}, + [2982] = {.lex_state = 72}, [2983] = {.lex_state = 72}, - [2984] = {.lex_state = 19}, - [2985] = {.lex_state = 19}, + [2984] = {.lex_state = 72}, + [2985] = {.lex_state = 72}, [2986] = {.lex_state = 72}, - [2987] = {.lex_state = 8}, + [2987] = {.lex_state = 72}, [2988] = {.lex_state = 8}, - [2989] = {.lex_state = 23}, - [2990] = {.lex_state = 72}, - [2991] = {.lex_state = 17}, + [2989] = {.lex_state = 72}, + [2990] = {.lex_state = 19}, + [2991] = {.lex_state = 72}, [2992] = {.lex_state = 72}, [2993] = {.lex_state = 72}, [2994] = {.lex_state = 72}, [2995] = {.lex_state = 72}, [2996] = {.lex_state = 72}, [2997] = {.lex_state = 72}, - [2998] = {.lex_state = 19}, + [2998] = {.lex_state = 72}, [2999] = {.lex_state = 72}, - [3000] = {.lex_state = 19}, - [3001] = {.lex_state = 72}, - [3002] = {.lex_state = 19}, + [3000] = {.lex_state = 17}, + [3001] = {.lex_state = 17}, + [3002] = {.lex_state = 72}, [3003] = {.lex_state = 72}, [3004] = {.lex_state = 72}, [3005] = {.lex_state = 72}, [3006] = {.lex_state = 72}, [3007] = {.lex_state = 72}, [3008] = {.lex_state = 72}, - [3009] = {.lex_state = 19}, - [3010] = {.lex_state = 72}, - [3011] = {.lex_state = 17}, - [3012] = {.lex_state = 72}, - [3013] = {.lex_state = 72}, - [3014] = {.lex_state = 19}, + [3009] = {.lex_state = 72}, + [3010] = {.lex_state = 17}, + [3011] = {.lex_state = 72}, + [3012] = {.lex_state = 19}, + [3013] = {.lex_state = 8}, + [3014] = {.lex_state = 72}, [3015] = {.lex_state = 72}, [3016] = {.lex_state = 17}, - [3017] = {.lex_state = 19}, - [3018] = {.lex_state = 19}, - [3019] = {.lex_state = 19}, - [3020] = {.lex_state = 8}, - [3021] = {.lex_state = 19}, - [3022] = {.lex_state = 8}, - [3023] = {.lex_state = 19}, - [3024] = {.lex_state = 19}, - [3025] = {.lex_state = 19}, + [3017] = {.lex_state = 72}, + [3018] = {.lex_state = 72}, + [3019] = {.lex_state = 72}, + [3020] = {.lex_state = 72}, + [3021] = {.lex_state = 8}, + [3022] = {.lex_state = 17}, + [3023] = {.lex_state = 72}, + [3024] = {.lex_state = 72}, + [3025] = {.lex_state = 72}, [3026] = {.lex_state = 72}, [3027] = {.lex_state = 72}, [3028] = {.lex_state = 72}, - [3029] = {.lex_state = 72}, + [3029] = {.lex_state = 23}, [3030] = {.lex_state = 72}, - [3031] = {.lex_state = 17}, + [3031] = {.lex_state = 72}, [3032] = {.lex_state = 17}, - [3033] = {.lex_state = 17}, + [3033] = {.lex_state = 72}, [3034] = {.lex_state = 72}, [3035] = {.lex_state = 19}, [3036] = {.lex_state = 72}, - [3037] = {.lex_state = 72}, - [3038] = {.lex_state = 72}, + [3037] = {.lex_state = 19}, + [3038] = {.lex_state = 17}, [3039] = {.lex_state = 72}, [3040] = {.lex_state = 72}, [3041] = {.lex_state = 72}, - [3042] = {.lex_state = 17}, + [3042] = {.lex_state = 72}, [3043] = {.lex_state = 72}, [3044] = {.lex_state = 72}, - [3045] = {.lex_state = 72}, - [3046] = {.lex_state = 72}, - [3047] = {.lex_state = 72}, + [3045] = {.lex_state = 8}, + [3046] = {.lex_state = 19}, + [3047] = {.lex_state = 19}, [3048] = {.lex_state = 72}, - [3049] = {.lex_state = 17}, + [3049] = {.lex_state = 72}, [3050] = {.lex_state = 72}, [3051] = {.lex_state = 72}, - [3052] = {.lex_state = 23, .external_lex_state = 4}, - [3053] = {.lex_state = 21}, + [3052] = {.lex_state = 8}, + [3053] = {.lex_state = 72}, [3054] = {.lex_state = 72}, - [3055] = {.lex_state = 17}, + [3055] = {.lex_state = 21}, [3056] = {.lex_state = 72}, [3057] = {.lex_state = 72}, [3058] = {.lex_state = 72}, - [3059] = {.lex_state = 8}, + [3059] = {.lex_state = 21}, [3060] = {.lex_state = 72}, [3061] = {.lex_state = 72}, [3062] = {.lex_state = 72}, [3063] = {.lex_state = 72}, - [3064] = {.lex_state = 72}, - [3065] = {.lex_state = 72}, + [3064] = {.lex_state = 8}, + [3065] = {.lex_state = 19}, [3066] = {.lex_state = 72}, - [3067] = {.lex_state = 17}, + [3067] = {.lex_state = 72}, [3068] = {.lex_state = 72}, [3069] = {.lex_state = 72}, - [3070] = {.lex_state = 31}, + [3070] = {.lex_state = 72}, [3071] = {.lex_state = 72}, - [3072] = {.lex_state = 72}, - [3073] = {.lex_state = 72}, + [3072] = {.lex_state = 23}, + [3073] = {.lex_state = 23}, [3074] = {.lex_state = 72}, [3075] = {.lex_state = 72}, - [3076] = {.lex_state = 72}, - [3077] = {.lex_state = 72}, + [3076] = {.lex_state = 19}, + [3077] = {.lex_state = 19}, [3078] = {.lex_state = 72}, [3079] = {.lex_state = 72}, [3080] = {.lex_state = 72}, - [3081] = {.lex_state = 72}, - [3082] = {.lex_state = 23}, + [3081] = {.lex_state = 17}, + [3082] = {.lex_state = 72}, [3083] = {.lex_state = 72}, [3084] = {.lex_state = 72}, - [3085] = {.lex_state = 72}, - [3086] = {.lex_state = 72}, + [3085] = {.lex_state = 17}, + [3086] = {.lex_state = 19}, [3087] = {.lex_state = 72}, [3088] = {.lex_state = 72}, - [3089] = {.lex_state = 72}, + [3089] = {.lex_state = 19}, [3090] = {.lex_state = 23}, - [3091] = {.lex_state = 19}, + [3091] = {.lex_state = 72}, [3092] = {.lex_state = 19}, - [3093] = {.lex_state = 72}, - [3094] = {.lex_state = 17}, - [3095] = {.lex_state = 19}, + [3093] = {.lex_state = 19}, + [3094] = {.lex_state = 19}, + [3095] = {.lex_state = 72}, [3096] = {.lex_state = 72}, - [3097] = {.lex_state = 19}, + [3097] = {.lex_state = 17}, [3098] = {.lex_state = 72}, - [3099] = {.lex_state = 19}, - [3100] = {.lex_state = 72}, + [3099] = {.lex_state = 72}, + [3100] = {.lex_state = 19}, [3101] = {.lex_state = 72}, [3102] = {.lex_state = 19}, - [3103] = {.lex_state = 72}, - [3104] = {.lex_state = 17}, + [3103] = {.lex_state = 19}, + [3104] = {.lex_state = 72}, [3105] = {.lex_state = 72}, [3106] = {.lex_state = 72}, - [3107] = {.lex_state = 72}, + [3107] = {.lex_state = 19}, [3108] = {.lex_state = 19}, [3109] = {.lex_state = 72}, [3110] = {.lex_state = 72}, [3111] = {.lex_state = 72}, [3112] = {.lex_state = 72}, - [3113] = {.lex_state = 8}, - [3114] = {.lex_state = 8}, - [3115] = {.lex_state = 72}, - [3116] = {.lex_state = 23}, - [3117] = {.lex_state = 8}, + [3113] = {.lex_state = 72}, + [3114] = {.lex_state = 72}, + [3115] = {.lex_state = 19}, + [3116] = {.lex_state = 72}, + [3117] = {.lex_state = 72}, [3118] = {.lex_state = 72}, [3119] = {.lex_state = 72}, [3120] = {.lex_state = 72}, - [3121] = {.lex_state = 8}, - [3122] = {.lex_state = 72}, + [3121] = {.lex_state = 72}, + [3122] = {.lex_state = 17}, [3123] = {.lex_state = 8}, - [3124] = {.lex_state = 17}, - [3125] = {.lex_state = 8}, + [3124] = {.lex_state = 72}, + [3125] = {.lex_state = 17}, [3126] = {.lex_state = 72}, - [3127] = {.lex_state = 17}, - [3128] = {.lex_state = 17}, + [3127] = {.lex_state = 72}, + [3128] = {.lex_state = 72}, [3129] = {.lex_state = 72}, [3130] = {.lex_state = 72}, [3131] = {.lex_state = 72}, - [3132] = {.lex_state = 72}, - [3133] = {.lex_state = 17}, - [3134] = {.lex_state = 17}, - [3135] = {.lex_state = 31}, + [3132] = {.lex_state = 19}, + [3133] = {.lex_state = 72}, + [3134] = {.lex_state = 72}, + [3135] = {.lex_state = 72}, [3136] = {.lex_state = 72}, [3137] = {.lex_state = 72}, [3138] = {.lex_state = 72}, - [3139] = {.lex_state = 17}, - [3140] = {.lex_state = 17}, - [3141] = {.lex_state = 17}, - [3142] = {.lex_state = 17}, + [3139] = {.lex_state = 72}, + [3140] = {.lex_state = 19}, + [3141] = {.lex_state = 72}, + [3142] = {.lex_state = 72}, [3143] = {.lex_state = 72}, - [3144] = {.lex_state = 23}, - [3145] = {.lex_state = 17}, - [3146] = {.lex_state = 17}, - [3147] = {.lex_state = 72}, - [3148] = {.lex_state = 17}, - [3149] = {.lex_state = 17}, + [3144] = {.lex_state = 8}, + [3145] = {.lex_state = 72}, + [3146] = {.lex_state = 72}, + [3147] = {.lex_state = 8}, + [3148] = {.lex_state = 8}, + [3149] = {.lex_state = 72}, [3150] = {.lex_state = 17}, - [3151] = {.lex_state = 72}, - [3152] = {.lex_state = 17}, - [3153] = {.lex_state = 72}, + [3151] = {.lex_state = 8}, + [3152] = {.lex_state = 72}, + [3153] = {.lex_state = 17}, [3154] = {.lex_state = 72}, - [3155] = {.lex_state = 72}, + [3155] = {.lex_state = 17}, [3156] = {.lex_state = 72}, - [3157] = {.lex_state = 72}, - [3158] = {.lex_state = 31}, + [3157] = {.lex_state = 17}, + [3158] = {.lex_state = 72}, [3159] = {.lex_state = 72}, [3160] = {.lex_state = 72}, - [3161] = {.lex_state = 72}, - [3162] = {.lex_state = 31}, + [3161] = {.lex_state = 17}, + [3162] = {.lex_state = 7}, [3163] = {.lex_state = 72}, - [3164] = {.lex_state = 17}, - [3165] = {.lex_state = 17}, - [3166] = {.lex_state = 17}, + [3164] = {.lex_state = 72}, + [3165] = {.lex_state = 7}, + [3166] = {.lex_state = 72}, [3167] = {.lex_state = 72}, - [3168] = {.lex_state = 17}, - [3169] = {.lex_state = 72}, + [3168] = {.lex_state = 72}, + [3169] = {.lex_state = 17}, [3170] = {.lex_state = 17}, [3171] = {.lex_state = 17}, - [3172] = {.lex_state = 72}, - [3173] = {.lex_state = 72}, - [3174] = {.lex_state = 21}, - [3175] = {.lex_state = 72}, + [3172] = {.lex_state = 17}, + [3173] = {.lex_state = 17}, + [3174] = {.lex_state = 17}, + [3175] = {.lex_state = 17}, [3176] = {.lex_state = 72}, [3177] = {.lex_state = 72}, [3178] = {.lex_state = 72}, - [3179] = {.lex_state = 17}, + [3179] = {.lex_state = 72}, [3180] = {.lex_state = 72}, [3181] = {.lex_state = 72}, [3182] = {.lex_state = 17}, [3183] = {.lex_state = 72}, - [3184] = {.lex_state = 72}, - [3185] = {.lex_state = 72}, - [3186] = {.lex_state = 17}, + [3184] = {.lex_state = 17}, + [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 = 72}, + [3190] = {.lex_state = 72}, [3191] = {.lex_state = 17}, [3192] = {.lex_state = 72}, - [3193] = {.lex_state = 17}, - [3194] = {.lex_state = 17}, + [3193] = {.lex_state = 72}, + [3194] = {.lex_state = 23}, [3195] = {.lex_state = 72}, - [3196] = {.lex_state = 72}, + [3196] = {.lex_state = 17}, [3197] = {.lex_state = 72}, [3198] = {.lex_state = 72}, - [3199] = {.lex_state = 72}, - [3200] = {.lex_state = 17}, - [3201] = {.lex_state = 72}, - [3202] = {.lex_state = 17}, + [3199] = {.lex_state = 17}, + [3200] = {.lex_state = 72}, + [3201] = {.lex_state = 17}, + [3202] = {.lex_state = 72}, [3203] = {.lex_state = 72}, [3204] = {.lex_state = 72}, - [3205] = {.lex_state = 72}, - [3206] = {.lex_state = 17}, + [3205] = {.lex_state = 17}, + [3206] = {.lex_state = 72}, [3207] = {.lex_state = 72}, - [3208] = {.lex_state = 72}, - [3209] = {.lex_state = 17}, - [3210] = {.lex_state = 17}, - [3211] = {.lex_state = 72}, + [3208] = {.lex_state = 17}, + [3209] = {.lex_state = 72}, + [3210] = {.lex_state = 72}, + [3211] = {.lex_state = 8}, [3212] = {.lex_state = 72}, - [3213] = {.lex_state = 72}, + [3213] = {.lex_state = 31}, [3214] = {.lex_state = 72}, [3215] = {.lex_state = 72}, - [3216] = {.lex_state = 72}, - [3217] = {.lex_state = 72}, + [3216] = {.lex_state = 17}, + [3217] = {.lex_state = 17}, [3218] = {.lex_state = 72}, [3219] = {.lex_state = 17}, - [3220] = {.lex_state = 17}, - [3221] = {.lex_state = 17}, - [3222] = {.lex_state = 17}, + [3220] = {.lex_state = 72}, + [3221] = {.lex_state = 72}, + [3222] = {.lex_state = 72}, [3223] = {.lex_state = 72}, - [3224] = {.lex_state = 72}, + [3224] = {.lex_state = 17}, [3225] = {.lex_state = 72}, - [3226] = {.lex_state = 72}, - [3227] = {.lex_state = 72}, - [3228] = {.lex_state = 72}, + [3226] = {.lex_state = 17}, + [3227] = {.lex_state = 17}, + [3228] = {.lex_state = 17}, [3229] = {.lex_state = 72}, [3230] = {.lex_state = 72}, [3231] = {.lex_state = 72}, [3232] = {.lex_state = 72}, - [3233] = {.lex_state = 72}, + [3233] = {.lex_state = 17}, [3234] = {.lex_state = 72}, - [3235] = {.lex_state = 31}, + [3235] = {.lex_state = 17}, [3236] = {.lex_state = 72}, [3237] = {.lex_state = 72}, - [3238] = {.lex_state = 72}, + [3238] = {.lex_state = 17}, [3239] = {.lex_state = 72}, - [3240] = {.lex_state = 72}, + [3240] = {.lex_state = 17}, [3241] = {.lex_state = 72}, - [3242] = {.lex_state = 17}, + [3242] = {.lex_state = 72}, [3243] = {.lex_state = 72}, [3244] = {.lex_state = 72}, - [3245] = {.lex_state = 72}, - [3246] = {.lex_state = 72}, - [3247] = {.lex_state = 17}, + [3245] = {.lex_state = 17}, + [3246] = {.lex_state = 17}, + [3247] = {.lex_state = 72}, [3248] = {.lex_state = 72}, - [3249] = {.lex_state = 17}, + [3249] = {.lex_state = 72}, [3250] = {.lex_state = 17}, - [3251] = {.lex_state = 72}, - [3252] = {.lex_state = 72}, + [3251] = {.lex_state = 17}, + [3252] = {.lex_state = 17}, [3253] = {.lex_state = 17}, [3254] = {.lex_state = 72}, - [3255] = {.lex_state = 17}, - [3256] = {.lex_state = 17}, - [3257] = {.lex_state = 72}, - [3258] = {.lex_state = 17}, + [3255] = {.lex_state = 72}, + [3256] = {.lex_state = 72}, + [3257] = {.lex_state = 17}, + [3258] = {.lex_state = 72}, [3259] = {.lex_state = 17}, [3260] = {.lex_state = 17}, - [3261] = {.lex_state = 72}, + [3261] = {.lex_state = 17}, [3262] = {.lex_state = 72}, - [3263] = {.lex_state = 72}, + [3263] = {.lex_state = 17}, [3264] = {.lex_state = 17}, - [3265] = {.lex_state = 72}, + [3265] = {.lex_state = 17}, [3266] = {.lex_state = 17}, [3267] = {.lex_state = 17}, [3268] = {.lex_state = 17}, - [3269] = {.lex_state = 17}, + [3269] = {.lex_state = 72}, [3270] = {.lex_state = 17}, - [3271] = {.lex_state = 17}, - [3272] = {.lex_state = 23, .external_lex_state = 5}, + [3271] = {.lex_state = 72}, + [3272] = {.lex_state = 72}, [3273] = {.lex_state = 17}, [3274] = {.lex_state = 17}, [3275] = {.lex_state = 17}, [3276] = {.lex_state = 17}, - [3277] = {.lex_state = 17}, - [3278] = {.lex_state = 17}, - [3279] = {.lex_state = 17}, + [3277] = {.lex_state = 72}, + [3278] = {.lex_state = 72}, + [3279] = {.lex_state = 72}, [3280] = {.lex_state = 17}, [3281] = {.lex_state = 17}, [3282] = {.lex_state = 17}, @@ -13637,39 +13675,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3286] = {.lex_state = 17}, [3287] = {.lex_state = 17}, [3288] = {.lex_state = 17}, - [3289] = {.lex_state = 72}, - [3290] = {.lex_state = 72}, - [3291] = {.lex_state = 72}, - [3292] = {.lex_state = 72}, - [3293] = {.lex_state = 72}, + [3289] = {.lex_state = 17}, + [3290] = {.lex_state = 17}, + [3291] = {.lex_state = 17}, + [3292] = {.lex_state = 17}, + [3293] = {.lex_state = 17}, [3294] = {.lex_state = 17}, [3295] = {.lex_state = 17}, - [3296] = {.lex_state = 72}, - [3297] = {.lex_state = 17}, + [3296] = {.lex_state = 17}, + [3297] = {.lex_state = 23, .external_lex_state = 5}, [3298] = {.lex_state = 72}, [3299] = {.lex_state = 72}, - [3300] = {.lex_state = 72, .external_lex_state = 6}, + [3300] = {.lex_state = 17}, [3301] = {.lex_state = 72}, [3302] = {.lex_state = 72}, - [3303] = {.lex_state = 17}, - [3304] = {.lex_state = 72}, - [3305] = {.lex_state = 17}, + [3303] = {.lex_state = 72}, + [3304] = {.lex_state = 17}, + [3305] = {.lex_state = 72}, [3306] = {.lex_state = 72}, [3307] = {.lex_state = 72}, [3308] = {.lex_state = 72}, - [3309] = {.lex_state = 17}, + [3309] = {.lex_state = 72}, [3310] = {.lex_state = 72}, - [3311] = {.lex_state = 72}, + [3311] = {.lex_state = 17}, [3312] = {.lex_state = 72}, [3313] = {.lex_state = 72}, [3314] = {.lex_state = 72}, - [3315] = {.lex_state = 17}, - [3316] = {.lex_state = 17}, + [3315] = {.lex_state = 72}, + [3316] = {.lex_state = 72, .external_lex_state = 6}, [3317] = {.lex_state = 72}, [3318] = {.lex_state = 72}, - [3319] = {.lex_state = 72, .external_lex_state = 6}, - [3320] = {.lex_state = 17}, - [3321] = {.lex_state = 8}, + [3319] = {.lex_state = 72}, + [3320] = {.lex_state = 8}, + [3321] = {.lex_state = 72}, [3322] = {.lex_state = 23, .external_lex_state = 5}, [3323] = {.lex_state = 72}, [3324] = {.lex_state = 72}, @@ -13677,424 +13715,462 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3326] = {.lex_state = 72}, [3327] = {.lex_state = 72}, [3328] = {.lex_state = 72}, - [3329] = {.lex_state = 72}, + [3329] = {.lex_state = 17}, [3330] = {.lex_state = 72}, [3331] = {.lex_state = 72}, [3332] = {.lex_state = 72}, - [3333] = {.lex_state = 72}, + [3333] = {.lex_state = 17}, [3334] = {.lex_state = 72}, - [3335] = {.lex_state = 72}, - [3336] = {.lex_state = 23}, + [3335] = {.lex_state = 17}, + [3336] = {.lex_state = 72}, [3337] = {.lex_state = 17}, [3338] = {.lex_state = 72}, - [3339] = {.lex_state = 7}, - [3340] = {.lex_state = 7}, - [3341] = {.lex_state = 72}, + [3339] = {.lex_state = 72}, + [3340] = {.lex_state = 72}, + [3341] = {.lex_state = 17}, [3342] = {.lex_state = 72}, - [3343] = {.lex_state = 17}, - [3344] = {.lex_state = 72}, + [3343] = {.lex_state = 72}, + [3344] = {.lex_state = 17}, [3345] = {.lex_state = 31}, [3346] = {.lex_state = 72}, [3347] = {.lex_state = 72}, - [3348] = {.lex_state = 72}, + [3348] = {.lex_state = 72, .external_lex_state = 6}, [3349] = {.lex_state = 72}, [3350] = {.lex_state = 72}, - [3351] = {.lex_state = 72}, + [3351] = {.lex_state = 17}, [3352] = {.lex_state = 72}, [3353] = {.lex_state = 72}, [3354] = {.lex_state = 72}, [3355] = {.lex_state = 72}, - [3356] = {.lex_state = 17}, + [3356] = {.lex_state = 72}, [3357] = {.lex_state = 72}, - [3358] = {.lex_state = 17}, - [3359] = {.lex_state = 17}, + [3358] = {.lex_state = 72}, + [3359] = {.lex_state = 72}, [3360] = {.lex_state = 72}, [3361] = {.lex_state = 17}, - [3362] = {.lex_state = 8}, - [3363] = {.lex_state = 17}, - [3364] = {.lex_state = 17}, + [3362] = {.lex_state = 17}, + [3363] = {.lex_state = 72}, + [3364] = {.lex_state = 72}, [3365] = {.lex_state = 72}, - [3366] = {.lex_state = 17}, + [3366] = {.lex_state = 72}, [3367] = {.lex_state = 72}, [3368] = {.lex_state = 72}, [3369] = {.lex_state = 23, .external_lex_state = 5}, - [3370] = {.lex_state = 72}, - [3371] = {.lex_state = 17}, - [3372] = {.lex_state = 17}, + [3370] = {.lex_state = 17}, + [3371] = {.lex_state = 72}, + [3372] = {.lex_state = 72}, [3373] = {.lex_state = 72}, [3374] = {.lex_state = 17}, - [3375] = {.lex_state = 72}, - [3376] = {.lex_state = 17}, + [3375] = {.lex_state = 17}, + [3376] = {.lex_state = 31}, [3377] = {.lex_state = 17}, - [3378] = {.lex_state = 17}, + [3378] = {.lex_state = 72}, [3379] = {.lex_state = 72}, [3380] = {.lex_state = 72}, [3381] = {.lex_state = 72}, - [3382] = {.lex_state = 72}, + [3382] = {.lex_state = 17}, [3383] = {.lex_state = 72}, - [3384] = {.lex_state = 17}, + [3384] = {.lex_state = 72}, [3385] = {.lex_state = 72}, [3386] = {.lex_state = 72}, [3387] = {.lex_state = 72}, [3388] = {.lex_state = 72}, - [3389] = {.lex_state = 72}, + [3389] = {.lex_state = 17}, [3390] = {.lex_state = 72}, [3391] = {.lex_state = 72}, - [3392] = {.lex_state = 17}, - [3393] = {.lex_state = 17}, - [3394] = {.lex_state = 17}, + [3392] = {.lex_state = 72}, + [3393] = {.lex_state = 72}, + [3394] = {.lex_state = 72}, [3395] = {.lex_state = 72}, [3396] = {.lex_state = 17}, [3397] = {.lex_state = 72}, - [3398] = {.lex_state = 31}, + [3398] = {.lex_state = 72}, [3399] = {.lex_state = 72}, - [3400] = {.lex_state = 17}, - [3401] = {.lex_state = 72}, - [3402] = {.lex_state = 17}, - [3403] = {.lex_state = 17}, - [3404] = {.lex_state = 17}, - [3405] = {.lex_state = 72}, - [3406] = {.lex_state = 17}, - [3407] = {.lex_state = 17}, - [3408] = {.lex_state = 17}, + [3400] = {.lex_state = 72}, + [3401] = {.lex_state = 31}, + [3402] = {.lex_state = 31}, + [3403] = {.lex_state = 72}, + [3404] = {.lex_state = 72}, + [3405] = {.lex_state = 21}, + [3406] = {.lex_state = 72}, + [3407] = {.lex_state = 72}, + [3408] = {.lex_state = 72}, [3409] = {.lex_state = 17}, - [3410] = {.lex_state = 72}, - [3411] = {.lex_state = 72}, + [3410] = {.lex_state = 17}, + [3411] = {.lex_state = 17}, [3412] = {.lex_state = 17}, [3413] = {.lex_state = 17}, [3414] = {.lex_state = 17}, - [3415] = {.lex_state = 17}, - [3416] = {.lex_state = 72}, - [3417] = {.lex_state = 17}, + [3415] = {.lex_state = 72}, + [3416] = {.lex_state = 17}, + [3417] = {.lex_state = 72}, [3418] = {.lex_state = 72}, [3419] = {.lex_state = 72}, - [3420] = {.lex_state = 17}, + [3420] = {.lex_state = 23}, [3421] = {.lex_state = 72}, - [3422] = {.lex_state = 72}, + [3422] = {.lex_state = 17}, [3423] = {.lex_state = 72}, - [3424] = {.lex_state = 72}, - [3425] = {.lex_state = 17}, - [3426] = {.lex_state = 17}, + [3424] = {.lex_state = 17}, + [3425] = {.lex_state = 72}, + [3426] = {.lex_state = 72}, [3427] = {.lex_state = 72}, [3428] = {.lex_state = 17}, [3429] = {.lex_state = 72}, - [3430] = {.lex_state = 72}, - [3431] = {.lex_state = 17}, + [3430] = {.lex_state = 17}, + [3431] = {.lex_state = 72}, [3432] = {.lex_state = 17}, [3433] = {.lex_state = 17}, - [3434] = {.lex_state = 17}, + [3434] = {.lex_state = 31}, [3435] = {.lex_state = 17}, - [3436] = {.lex_state = 73}, + [3436] = {.lex_state = 17}, [3437] = {.lex_state = 72}, - [3438] = {.lex_state = 72}, - [3439] = {.lex_state = 72}, - [3440] = {.lex_state = 72, .external_lex_state = 7}, - [3441] = {.lex_state = 72}, - [3442] = {.lex_state = 72}, + [3438] = {.lex_state = 17}, + [3439] = {.lex_state = 17}, + [3440] = {.lex_state = 72}, + [3441] = {.lex_state = 17}, + [3442] = {.lex_state = 17}, [3443] = {.lex_state = 17}, - [3444] = {.lex_state = 72}, + [3444] = {.lex_state = 17}, [3445] = {.lex_state = 72}, - [3446] = {.lex_state = 73}, + [3446] = {.lex_state = 17}, [3447] = {.lex_state = 17}, - [3448] = {.lex_state = 72}, + [3448] = {.lex_state = 17}, [3449] = {.lex_state = 72}, [3450] = {.lex_state = 72}, - [3451] = {.lex_state = 73}, - [3452] = {.lex_state = 73}, + [3451] = {.lex_state = 72}, + [3452] = {.lex_state = 72}, [3453] = {.lex_state = 17}, - [3454] = {.lex_state = 21}, - [3455] = {.lex_state = 17}, - [3456] = {.lex_state = 17}, + [3454] = {.lex_state = 17}, + [3455] = {.lex_state = 72}, + [3456] = {.lex_state = 72}, [3457] = {.lex_state = 72}, - [3458] = {.lex_state = 17}, - [3459] = {.lex_state = 17}, + [3458] = {.lex_state = 72}, + [3459] = {.lex_state = 72}, [3460] = {.lex_state = 72}, [3461] = {.lex_state = 72}, - [3462] = {.lex_state = 72}, - [3463] = {.lex_state = 21}, - [3464] = {.lex_state = 72, .external_lex_state = 7}, + [3462] = {.lex_state = 17}, + [3463] = {.lex_state = 72}, + [3464] = {.lex_state = 72}, [3465] = {.lex_state = 72}, - [3466] = {.lex_state = 17}, + [3466] = {.lex_state = 72}, [3467] = {.lex_state = 72}, - [3468] = {.lex_state = 17}, - [3469] = {.lex_state = 17}, - [3470] = {.lex_state = 17}, - [3471] = {.lex_state = 17}, - [3472] = {.lex_state = 17}, + [3468] = {.lex_state = 72}, + [3469] = {.lex_state = 72}, + [3470] = {.lex_state = 21}, + [3471] = {.lex_state = 72}, + [3472] = {.lex_state = 8}, [3473] = {.lex_state = 72}, [3474] = {.lex_state = 72}, - [3475] = {.lex_state = 72}, - [3476] = {.lex_state = 17}, - [3477] = {.lex_state = 17}, - [3478] = {.lex_state = 72}, - [3479] = {.lex_state = 72}, + [3475] = {.lex_state = 17}, + [3476] = {.lex_state = 72}, + [3477] = {.lex_state = 72}, + [3478] = {.lex_state = 17}, + [3479] = {.lex_state = 17}, [3480] = {.lex_state = 72}, - [3481] = {.lex_state = 72}, - [3482] = {.lex_state = 21}, - [3483] = {.lex_state = 73}, - [3484] = {.lex_state = 17}, - [3485] = {.lex_state = 72}, - [3486] = {.lex_state = 17}, + [3481] = {.lex_state = 72, .external_lex_state = 7}, + [3482] = {.lex_state = 72}, + [3483] = {.lex_state = 72}, + [3484] = {.lex_state = 72}, + [3485] = {.lex_state = 17}, + [3486] = {.lex_state = 72}, [3487] = {.lex_state = 72}, - [3488] = {.lex_state = 17}, - [3489] = {.lex_state = 72}, + [3488] = {.lex_state = 72, .external_lex_state = 8}, + [3489] = {.lex_state = 72, .external_lex_state = 8}, [3490] = {.lex_state = 72}, [3491] = {.lex_state = 72}, [3492] = {.lex_state = 72}, - [3493] = {.lex_state = 17}, + [3493] = {.lex_state = 72}, [3494] = {.lex_state = 72}, [3495] = {.lex_state = 17}, - [3496] = {.lex_state = 72, .external_lex_state = 8}, - [3497] = {.lex_state = 21}, + [3496] = {.lex_state = 17}, + [3497] = {.lex_state = 72}, [3498] = {.lex_state = 72}, [3499] = {.lex_state = 72}, - [3500] = {.lex_state = 72}, - [3501] = {.lex_state = 72}, - [3502] = {.lex_state = 72, .external_lex_state = 8}, - [3503] = {.lex_state = 21}, - [3504] = {.lex_state = 17}, - [3505] = {.lex_state = 17}, + [3500] = {.lex_state = 17}, + [3501] = {.lex_state = 17}, + [3502] = {.lex_state = 72}, + [3503] = {.lex_state = 17}, + [3504] = {.lex_state = 72}, + [3505] = {.lex_state = 72}, [3506] = {.lex_state = 17}, [3507] = {.lex_state = 72}, - [3508] = {.lex_state = 72}, - [3509] = {.lex_state = 72}, + [3508] = {.lex_state = 17}, + [3509] = {.lex_state = 73}, [3510] = {.lex_state = 72}, [3511] = {.lex_state = 72}, [3512] = {.lex_state = 72}, [3513] = {.lex_state = 72}, [3514] = {.lex_state = 72}, [3515] = {.lex_state = 72}, - [3516] = {.lex_state = 72}, + [3516] = {.lex_state = 17}, [3517] = {.lex_state = 72}, [3518] = {.lex_state = 72}, [3519] = {.lex_state = 72}, - [3520] = {.lex_state = 17}, - [3521] = {.lex_state = 21}, - [3522] = {.lex_state = 8}, - [3523] = {.lex_state = 72}, - [3524] = {.lex_state = 72}, - [3525] = {.lex_state = 72}, - [3526] = {.lex_state = 17}, - [3527] = {.lex_state = 73}, + [3520] = {.lex_state = 73}, + [3521] = {.lex_state = 72}, + [3522] = {.lex_state = 17}, + [3523] = {.lex_state = 17}, + [3524] = {.lex_state = 72, .external_lex_state = 7}, + [3525] = {.lex_state = 17}, + [3526] = {.lex_state = 72}, + [3527] = {.lex_state = 72}, [3528] = {.lex_state = 72}, - [3529] = {.lex_state = 72, .external_lex_state = 7}, + [3529] = {.lex_state = 21}, [3530] = {.lex_state = 72}, - [3531] = {.lex_state = 72}, - [3532] = {.lex_state = 72}, - [3533] = {.lex_state = 72}, + [3531] = {.lex_state = 17}, + [3532] = {.lex_state = 21}, + [3533] = {.lex_state = 17}, [3534] = {.lex_state = 72}, - [3535] = {.lex_state = 17}, + [3535] = {.lex_state = 23}, [3536] = {.lex_state = 17}, - [3537] = {.lex_state = 17}, - [3538] = {.lex_state = 17}, - [3539] = {.lex_state = 72}, + [3537] = {.lex_state = 72, .external_lex_state = 8}, + [3538] = {.lex_state = 72}, + [3539] = {.lex_state = 72, .external_lex_state = 7}, [3540] = {.lex_state = 72}, [3541] = {.lex_state = 72}, - [3542] = {.lex_state = 73}, - [3543] = {.lex_state = 72}, - [3544] = {.lex_state = 72}, + [3542] = {.lex_state = 17}, + [3543] = {.lex_state = 72, .external_lex_state = 9}, + [3544] = {.lex_state = 17}, [3545] = {.lex_state = 72}, [3546] = {.lex_state = 72}, [3547] = {.lex_state = 72}, - [3548] = {.lex_state = 21}, - [3549] = {.lex_state = 23}, + [3548] = {.lex_state = 72}, + [3549] = {.lex_state = 72, .external_lex_state = 8}, [3550] = {.lex_state = 72}, - [3551] = {.lex_state = 72}, + [3551] = {.lex_state = 17}, [3552] = {.lex_state = 72}, - [3553] = {.lex_state = 72}, + [3553] = {.lex_state = 17}, [3554] = {.lex_state = 72}, - [3555] = {.lex_state = 73}, - [3556] = {.lex_state = 72}, + [3555] = {.lex_state = 17}, + [3556] = {.lex_state = 21}, [3557] = {.lex_state = 72}, - [3558] = {.lex_state = 17}, + [3558] = {.lex_state = 72}, [3559] = {.lex_state = 72}, [3560] = {.lex_state = 72}, - [3561] = {.lex_state = 72, .external_lex_state = 8}, + [3561] = {.lex_state = 17}, [3562] = {.lex_state = 72}, - [3563] = {.lex_state = 17}, - [3564] = {.lex_state = 17}, + [3563] = {.lex_state = 72}, + [3564] = {.lex_state = 73}, [3565] = {.lex_state = 72}, - [3566] = {.lex_state = 72}, + [3566] = {.lex_state = 23}, [3567] = {.lex_state = 72}, - [3568] = {.lex_state = 72}, + [3568] = {.lex_state = 72, .external_lex_state = 7}, [3569] = {.lex_state = 72}, - [3570] = {.lex_state = 23}, - [3571] = {.lex_state = 72, .external_lex_state = 8}, + [3570] = {.lex_state = 73}, + [3571] = {.lex_state = 72}, [3572] = {.lex_state = 72}, - [3573] = {.lex_state = 17}, - [3574] = {.lex_state = 72}, - [3575] = {.lex_state = 72}, - [3576] = {.lex_state = 21}, + [3573] = {.lex_state = 72}, + [3574] = {.lex_state = 21}, + [3575] = {.lex_state = 72, .external_lex_state = 8}, + [3576] = {.lex_state = 72}, [3577] = {.lex_state = 72}, - [3578] = {.lex_state = 17}, - [3579] = {.lex_state = 21}, - [3580] = {.lex_state = 17}, - [3581] = {.lex_state = 72, .external_lex_state = 9}, - [3582] = {.lex_state = 72, .external_lex_state = 9}, - [3583] = {.lex_state = 72}, + [3578] = {.lex_state = 72}, + [3579] = {.lex_state = 72}, + [3580] = {.lex_state = 72}, + [3581] = {.lex_state = 72}, + [3582] = {.lex_state = 21}, + [3583] = {.lex_state = 17}, [3584] = {.lex_state = 72}, - [3585] = {.lex_state = 72}, + [3585] = {.lex_state = 72, .external_lex_state = 9}, [3586] = {.lex_state = 72}, [3587] = {.lex_state = 72}, - [3588] = {.lex_state = 17}, + [3588] = {.lex_state = 72}, [3589] = {.lex_state = 72}, [3590] = {.lex_state = 72}, [3591] = {.lex_state = 72}, - [3592] = {.lex_state = 72}, - [3593] = {.lex_state = 72, .external_lex_state = 7}, - [3594] = {.lex_state = 72, .external_lex_state = 7}, + [3592] = {.lex_state = 17}, + [3593] = {.lex_state = 17}, + [3594] = {.lex_state = 72}, [3595] = {.lex_state = 17}, [3596] = {.lex_state = 72}, [3597] = {.lex_state = 72}, - [3598] = {.lex_state = 72, .external_lex_state = 8}, + [3598] = {.lex_state = 72}, [3599] = {.lex_state = 72}, - [3600] = {.lex_state = 72}, - [3601] = {.lex_state = 8}, - [3602] = {.lex_state = 72}, + [3600] = {.lex_state = 8}, + [3601] = {.lex_state = 72}, + [3602] = {.lex_state = 17}, [3603] = {.lex_state = 72}, [3604] = {.lex_state = 72}, [3605] = {.lex_state = 72}, - [3606] = {.lex_state = 17}, + [3606] = {.lex_state = 72}, [3607] = {.lex_state = 72}, [3608] = {.lex_state = 72}, - [3609] = {.lex_state = 17}, + [3609] = {.lex_state = 72}, [3610] = {.lex_state = 72}, - [3611] = {.lex_state = 17}, + [3611] = {.lex_state = 72}, [3612] = {.lex_state = 72}, [3613] = {.lex_state = 17}, - [3614] = {.lex_state = 8}, - [3615] = {.lex_state = 17}, - [3616] = {.lex_state = 17}, - [3617] = {.lex_state = 72, .external_lex_state = 9}, + [3614] = {.lex_state = 72}, + [3615] = {.lex_state = 72}, + [3616] = {.lex_state = 72}, + [3617] = {.lex_state = 72}, [3618] = {.lex_state = 72}, - [3619] = {.lex_state = 17}, - [3620] = {.lex_state = 72}, - [3621] = {.lex_state = 72}, + [3619] = {.lex_state = 72}, + [3620] = {.lex_state = 17}, + [3621] = {.lex_state = 17}, [3622] = {.lex_state = 72}, - [3623] = {.lex_state = 72}, - [3624] = {.lex_state = 72}, + [3623] = {.lex_state = 17}, + [3624] = {.lex_state = 72, .external_lex_state = 9}, [3625] = {.lex_state = 72}, - [3626] = {.lex_state = 72}, - [3627] = {.lex_state = 72}, + [3626] = {.lex_state = 17}, + [3627] = {.lex_state = 17}, [3628] = {.lex_state = 72}, - [3629] = {.lex_state = 17}, + [3629] = {.lex_state = 72}, [3630] = {.lex_state = 72}, [3631] = {.lex_state = 72}, - [3632] = {.lex_state = 72}, - [3633] = {.lex_state = 72}, + [3632] = {.lex_state = 17}, + [3633] = {.lex_state = 17}, [3634] = {.lex_state = 72}, - [3635] = {.lex_state = 72}, - [3636] = {.lex_state = 72}, - [3637] = {.lex_state = 72, .external_lex_state = 9}, - [3638] = {.lex_state = 72}, - [3639] = {.lex_state = 21}, + [3635] = {.lex_state = 17}, + [3636] = {.lex_state = 21}, + [3637] = {.lex_state = 17}, + [3638] = {.lex_state = 17}, + [3639] = {.lex_state = 72}, [3640] = {.lex_state = 72}, [3641] = {.lex_state = 72}, - [3642] = {.lex_state = 72}, - [3643] = {.lex_state = 72, .external_lex_state = 9}, + [3642] = {.lex_state = 17}, + [3643] = {.lex_state = 72}, [3644] = {.lex_state = 72}, - [3645] = {.lex_state = 72}, + [3645] = {.lex_state = 72, .external_lex_state = 9}, [3646] = {.lex_state = 72}, [3647] = {.lex_state = 72}, [3648] = {.lex_state = 72}, [3649] = {.lex_state = 72}, - [3650] = {.lex_state = 72}, + [3650] = {.lex_state = 21}, [3651] = {.lex_state = 72}, - [3652] = {.lex_state = 72}, + [3652] = {.lex_state = 72, .external_lex_state = 9}, [3653] = {.lex_state = 72}, [3654] = {.lex_state = 72}, - [3655] = {.lex_state = 72}, + [3655] = {.lex_state = 72, .external_lex_state = 9}, [3656] = {.lex_state = 72}, [3657] = {.lex_state = 72}, - [3658] = {.lex_state = 17}, + [3658] = {.lex_state = 72}, [3659] = {.lex_state = 72}, - [3660] = {.lex_state = 21}, + [3660] = {.lex_state = 72}, [3661] = {.lex_state = 72}, [3662] = {.lex_state = 72}, [3663] = {.lex_state = 72}, - [3664] = {.lex_state = 21}, - [3665] = {.lex_state = 21}, - [3666] = {.lex_state = 72}, + [3664] = {.lex_state = 72}, + [3665] = {.lex_state = 72}, + [3666] = {.lex_state = 17}, [3667] = {.lex_state = 72}, - [3668] = {.lex_state = 72}, - [3669] = {.lex_state = 72}, - [3670] = {.lex_state = 21}, + [3668] = {.lex_state = 17}, + [3669] = {.lex_state = 21}, + [3670] = {.lex_state = 72}, [3671] = {.lex_state = 72}, [3672] = {.lex_state = 72}, - [3673] = {.lex_state = 17}, - [3674] = {.lex_state = 72}, + [3673] = {.lex_state = 72}, + [3674] = {.lex_state = 17}, [3675] = {.lex_state = 72}, - [3676] = {.lex_state = 21}, - [3677] = {.lex_state = 17}, - [3678] = {.lex_state = 72}, - [3679] = {.lex_state = 72}, - [3680] = {.lex_state = 21}, + [3676] = {.lex_state = 72}, + [3677] = {.lex_state = 21}, + [3678] = {.lex_state = 21}, + [3679] = {.lex_state = 17}, + [3680] = {.lex_state = 17}, [3681] = {.lex_state = 17}, - [3682] = {.lex_state = 17}, - [3683] = {.lex_state = 72}, - [3684] = {.lex_state = 21}, - [3685] = {.lex_state = 72}, + [3682] = {.lex_state = 21}, + [3683] = {.lex_state = 21}, + [3684] = {.lex_state = 17}, + [3685] = {.lex_state = 17}, [3686] = {.lex_state = 17}, [3687] = {.lex_state = 72}, - [3688] = {.lex_state = 72}, + [3688] = {.lex_state = 21}, [3689] = {.lex_state = 72}, - [3690] = {.lex_state = 21}, + [3690] = {.lex_state = 72, .external_lex_state = 8}, [3691] = {.lex_state = 72}, [3692] = {.lex_state = 72}, - [3693] = {.lex_state = 72}, - [3694] = {.lex_state = 72}, - [3695] = {.lex_state = 17}, + [3693] = {.lex_state = 21}, + [3694] = {.lex_state = 73}, + [3695] = {.lex_state = 72}, [3696] = {.lex_state = 72}, - [3697] = {.lex_state = 72}, - [3698] = {.lex_state = 72}, + [3697] = {.lex_state = 17}, + [3698] = {.lex_state = 21}, [3699] = {.lex_state = 72}, - [3700] = {.lex_state = 17}, - [3701] = {.lex_state = 17}, - [3702] = {.lex_state = 72}, - [3703] = {.lex_state = 21}, + [3700] = {.lex_state = 72}, + [3701] = {.lex_state = 72}, + [3702] = {.lex_state = 21}, + [3703] = {.lex_state = 72}, [3704] = {.lex_state = 72}, - [3705] = {.lex_state = 17}, - [3706] = {.lex_state = 21}, + [3705] = {.lex_state = 73}, + [3706] = {.lex_state = 17}, [3707] = {.lex_state = 72}, [3708] = {.lex_state = 72}, - [3709] = {.lex_state = 21}, + [3709] = {.lex_state = 72}, [3710] = {.lex_state = 72}, - [3711] = {.lex_state = 72}, - [3712] = {.lex_state = 21}, - [3713] = {.lex_state = 21}, + [3711] = {.lex_state = 21}, + [3712] = {.lex_state = 72}, + [3713] = {.lex_state = 72}, [3714] = {.lex_state = 72}, - [3715] = {.lex_state = 72}, - [3716] = {.lex_state = 21}, - [3717] = {.lex_state = 21}, - [3718] = {.lex_state = 21}, - [3719] = {.lex_state = 72, .external_lex_state = 7}, - [3720] = {.lex_state = 17}, - [3721] = {.lex_state = 72}, + [3715] = {.lex_state = 167}, + [3716] = {.lex_state = 72}, + [3717] = {.lex_state = 72}, + [3718] = {.lex_state = 72}, + [3719] = {.lex_state = 72}, + [3720] = {.lex_state = 73}, + [3721] = {.lex_state = 17}, [3722] = {.lex_state = 72}, - [3723] = {.lex_state = 17}, + [3723] = {.lex_state = 72}, [3724] = {.lex_state = 72}, - [3725] = {.lex_state = 72}, - [3726] = {.lex_state = 17}, - [3727] = {.lex_state = 17}, - [3728] = {.lex_state = 21}, - [3729] = {.lex_state = 17}, - [3730] = {.lex_state = 21}, - [3731] = {.lex_state = 167}, - [3732] = {.lex_state = 72}, - [3733] = {.lex_state = 72}, - [3734] = {.lex_state = 17}, - [3735] = {.lex_state = 72, .external_lex_state = 9}, - [3736] = {.lex_state = 72}, + [3725] = {.lex_state = 8}, + [3726] = {.lex_state = 21}, + [3727] = {.lex_state = 72}, + [3728] = {.lex_state = 72}, + [3729] = {.lex_state = 21}, + [3730] = {.lex_state = 72}, + [3731] = {.lex_state = 72}, + [3732] = {.lex_state = 21}, + [3733] = {.lex_state = 17}, + [3734] = {.lex_state = 72}, + [3735] = {.lex_state = 21}, + [3736] = {.lex_state = 21}, [3737] = {.lex_state = 72}, [3738] = {.lex_state = 72}, - [3739] = {.lex_state = 72}, - [3740] = {(TSStateId)(-1),}, - [3741] = {(TSStateId)(-1),}, - [3742] = {(TSStateId)(-1),}, - [3743] = {(TSStateId)(-1),}, - [3744] = {(TSStateId)(-1),}, - [3745] = {(TSStateId)(-1),}, - [3746] = {(TSStateId)(-1),}, + [3739] = {.lex_state = 21}, + [3740] = {.lex_state = 21}, + [3741] = {.lex_state = 21}, + [3742] = {.lex_state = 17}, + [3743] = {.lex_state = 17}, + [3744] = {.lex_state = 72}, + [3745] = {.lex_state = 72}, + [3746] = {.lex_state = 17}, + [3747] = {.lex_state = 72}, + [3748] = {.lex_state = 73}, + [3749] = {.lex_state = 72, .external_lex_state = 7}, + [3750] = {.lex_state = 17}, + [3751] = {.lex_state = 72}, + [3752] = {.lex_state = 72}, + [3753] = {.lex_state = 17}, + [3754] = {.lex_state = 17}, + [3755] = {.lex_state = 72}, + [3756] = {.lex_state = 21}, + [3757] = {.lex_state = 72}, + [3758] = {.lex_state = 72}, + [3759] = {.lex_state = 72}, + [3760] = {.lex_state = 72}, + [3761] = {.lex_state = 72}, + [3762] = {.lex_state = 21}, + [3763] = {.lex_state = 17}, + [3764] = {.lex_state = 17}, + [3765] = {.lex_state = 72}, + [3766] = {.lex_state = 17}, + [3767] = {.lex_state = 17}, + [3768] = {.lex_state = 17}, + [3769] = {.lex_state = 17}, + [3770] = {.lex_state = 72}, + [3771] = {.lex_state = 17}, + [3772] = {.lex_state = 17}, + [3773] = {.lex_state = 72}, + [3774] = {.lex_state = 17}, + [3775] = {.lex_state = 72}, + [3776] = {.lex_state = 17}, + [3777] = {.lex_state = 72}, + [3778] = {(TSStateId)(-1),}, + [3779] = {(TSStateId)(-1),}, + [3780] = {(TSStateId)(-1),}, + [3781] = {(TSStateId)(-1),}, + [3782] = {(TSStateId)(-1),}, + [3783] = {(TSStateId)(-1),}, + [3784] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14253,83 +14329,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(3687), - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_source_file] = STATE(3483), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1945), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14409,89 +14485,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(2)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1885), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1945), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [ts_builtin_sym_end] = ACTIONS(119), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(119), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14563,82 +14639,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(3)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1884), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14717,83 +14793,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(4)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1945), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [ts_builtin_sym_end] = ACTIONS(125), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [ts_builtin_sym_end] = ACTIONS(119), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14871,89 +14947,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(5)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [ts_builtin_sym_end] = ACTIONS(125), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15025,82 +15101,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(6)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1900), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1910), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15179,82 +15255,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(7)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1945), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -15333,82 +15409,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(8)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1945), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(133), [anon_sym_SEMI] = ACTIONS(136), @@ -15487,82 +15563,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(265), }, [STATE(9)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15641,82 +15717,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(10)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15795,82 +15871,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(11)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1904), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1772), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15949,82 +16025,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(12)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16103,236 +16179,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(13)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1913), - [sym_macro_invocation] = STATE(419), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1852), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(136), - [anon_sym_macro_rules_BANG] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_isize] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_f32] = ACTIONS(154), - [anon_sym_f64] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_str] = ACTIONS(154), - [anon_sym_char] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_async] = ACTIONS(178), - [anon_sym_break] = ACTIONS(181), - [anon_sym_const] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_default] = ACTIONS(190), - [anon_sym_enum] = ACTIONS(193), - [anon_sym_fn] = ACTIONS(196), - [anon_sym_for] = ACTIONS(199), - [anon_sym_gen] = ACTIONS(202), - [anon_sym_if] = ACTIONS(205), - [anon_sym_impl] = ACTIONS(208), - [anon_sym_let] = ACTIONS(211), - [anon_sym_loop] = ACTIONS(214), - [anon_sym_match] = ACTIONS(217), - [anon_sym_mod] = ACTIONS(220), - [anon_sym_pub] = ACTIONS(223), - [anon_sym_return] = ACTIONS(226), - [anon_sym_static] = ACTIONS(229), - [anon_sym_struct] = ACTIONS(232), - [anon_sym_trait] = ACTIONS(235), - [anon_sym_type] = ACTIONS(238), - [anon_sym_union] = ACTIONS(241), - [anon_sym_unsafe] = ACTIONS(244), - [anon_sym_use] = ACTIONS(247), - [anon_sym_while] = ACTIONS(250), - [anon_sym_extern] = ACTIONS(253), - [anon_sym_yield] = ACTIONS(256), - [anon_sym_move] = ACTIONS(259), - [anon_sym_try] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [aux_sym_string_literal_token1] = ACTIONS(268), - [sym_char_literal] = ACTIONS(265), - [anon_sym_true] = ACTIONS(271), - [anon_sym_false] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(274), - [sym_super] = ACTIONS(277), - [sym_crate] = ACTIONS(280), - [sym_metavariable] = ACTIONS(283), - [sym__raw_string_literal_start] = ACTIONS(286), - [sym_float_literal] = ACTIONS(265), - }, - [STATE(14)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(14), - [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16410,83 +16332,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [STATE(14)] = { + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1945), + [sym_macro_invocation] = STATE(423), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(14), + [sym_block_comment] = STATE(14), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(136), + [anon_sym_macro_rules_BANG] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(148), + [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_u8] = ACTIONS(154), + [anon_sym_i8] = ACTIONS(154), + [anon_sym_u16] = ACTIONS(154), + [anon_sym_i16] = ACTIONS(154), + [anon_sym_u32] = ACTIONS(154), + [anon_sym_i32] = ACTIONS(154), + [anon_sym_u64] = ACTIONS(154), + [anon_sym_i64] = ACTIONS(154), + [anon_sym_u128] = ACTIONS(154), + [anon_sym_i128] = ACTIONS(154), + [anon_sym_isize] = ACTIONS(154), + [anon_sym_usize] = ACTIONS(154), + [anon_sym_f32] = ACTIONS(154), + [anon_sym_f64] = ACTIONS(154), + [anon_sym_bool] = ACTIONS(154), + [anon_sym_str] = ACTIONS(154), + [anon_sym_char] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_POUND] = ACTIONS(172), + [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_async] = ACTIONS(178), + [anon_sym_break] = ACTIONS(181), + [anon_sym_const] = ACTIONS(184), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_default] = ACTIONS(190), + [anon_sym_enum] = ACTIONS(193), + [anon_sym_fn] = ACTIONS(196), + [anon_sym_for] = ACTIONS(199), + [anon_sym_gen] = ACTIONS(202), + [anon_sym_if] = ACTIONS(205), + [anon_sym_impl] = ACTIONS(208), + [anon_sym_let] = ACTIONS(211), + [anon_sym_loop] = ACTIONS(214), + [anon_sym_match] = ACTIONS(217), + [anon_sym_mod] = ACTIONS(220), + [anon_sym_pub] = ACTIONS(223), + [anon_sym_return] = ACTIONS(226), + [anon_sym_static] = ACTIONS(229), + [anon_sym_struct] = ACTIONS(232), + [anon_sym_trait] = ACTIONS(235), + [anon_sym_type] = ACTIONS(238), + [anon_sym_union] = ACTIONS(241), + [anon_sym_unsafe] = ACTIONS(244), + [anon_sym_use] = ACTIONS(247), + [anon_sym_while] = ACTIONS(250), + [anon_sym_extern] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(256), + [anon_sym_move] = ACTIONS(259), + [anon_sym_try] = ACTIONS(262), + [sym_integer_literal] = ACTIONS(265), + [aux_sym_string_literal_token1] = ACTIONS(268), + [sym_char_literal] = ACTIONS(265), + [anon_sym_true] = ACTIONS(271), + [anon_sym_false] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(274), + [sym_super] = ACTIONS(277), + [sym_crate] = ACTIONS(280), + [sym_metavariable] = ACTIONS(283), + [sym__raw_string_literal_start] = ACTIONS(286), + [sym_float_literal] = ACTIONS(265), + }, [STATE(15)] = { - [sym__statement] = STATE(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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16565,82 +16641,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(16)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1866), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16719,82 +16795,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(17)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16873,82 +16949,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(18)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1877), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17027,82 +17103,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(19)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1878), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17181,82 +17257,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(20)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1879), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17335,82 +17411,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(21)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17489,82 +17565,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(22)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17643,82 +17719,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(23)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17797,82 +17873,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(24)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17951,82 +18027,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(25)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18105,82 +18181,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(26)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18259,82 +18335,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(27)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1890), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18413,82 +18489,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(28)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1877), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1891), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18567,82 +18643,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(29)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1878), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1892), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18721,82 +18797,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(30)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1893), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18875,82 +18951,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(31)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19029,82 +19105,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(32)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19183,82 +19259,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(33)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19337,82 +19413,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(34)] = { - [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(3616), - [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(2203), - [sym_visibility_modifier] = STATE(1996), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1730), - [sym_macro_invocation] = STATE(411), - [sym_scoped_identifier] = STATE(1587), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3521), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym__statement] = STATE(586), + [sym_empty_statement] = STATE(693), + [sym_expression_statement] = STATE(693), + [sym_macro_definition] = STATE(693), + [sym_attribute_item] = STATE(693), + [sym_inner_attribute_item] = STATE(693), + [sym_mod_item] = STATE(693), + [sym_foreign_mod_item] = STATE(693), + [sym_struct_item] = STATE(693), + [sym_union_item] = STATE(693), + [sym_enum_item] = STATE(693), + [sym_extern_crate_declaration] = STATE(693), + [sym_const_item] = STATE(693), + [sym_static_item] = STATE(693), + [sym_type_item] = STATE(693), + [sym_function_item] = STATE(693), + [sym_function_signature_item] = STATE(693), + [sym_function_modifiers] = STATE(3642), + [sym_impl_item] = STATE(693), + [sym_trait_item] = STATE(693), + [sym_associated_type] = STATE(693), + [sym_let_declaration] = STATE(693), + [sym_use_declaration] = STATE(693), + [sym_extern_modifier] = STATE(2259), + [sym_visibility_modifier] = STATE(2002), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(416), + [sym_scoped_identifier] = STATE(1589), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(396), + [sym_match_expression] = STATE(396), + [sym_while_expression] = STATE(396), + [sym_loop_expression] = STATE(396), + [sym_for_expression] = STATE(396), + [sym_const_block] = STATE(396), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3650), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(396), + [sym_async_block] = STATE(396), + [sym_gen_block] = STATE(396), + [sym_try_block] = STATE(396), + [sym_block] = STATE(396), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2278), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19491,53 +19567,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(35)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1559), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1568), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(339), @@ -19639,65 +19715,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(36)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1550), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1555), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_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(375), + [anon_sym_LBRACK] = ACTIONS(17), [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_STAR] = ACTIONS(349), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19716,13 +19792,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(377), + [anon_sym_DASH] = ACTIONS(349), [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] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -19741,11 +19817,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(377), + [anon_sym_LT] = ACTIONS(383), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(385), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), @@ -19786,66 +19862,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(37)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1563), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_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_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(387), [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_RBRACE] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19863,42 +19939,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(381), - [anon_sym_SLASH] = ACTIONS(381), - [anon_sym_PERCENT] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(379), [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_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_COMMA] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(381), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -19914,7 +19990,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(381), + [anon_sym_else] = ACTIONS(389), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -19933,66 +20009,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(38)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1550), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1573), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_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_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_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_RBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20010,42 +20086,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(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(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_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20061,7 +20137,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(377), + [anon_sym_else] = ACTIONS(393), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20080,66 +20156,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(39)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1571), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(397), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(379), - [anon_sym_RBRACK] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(397), [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_RBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20157,42 +20233,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(381), - [anon_sym_SLASH] = ACTIONS(381), - [anon_sym_PERCENT] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(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_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(381), + [anon_sym_as] = ACTIONS(399), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20208,7 +20284,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(381), + [anon_sym_else] = ACTIONS(399), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20227,66 +20303,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(40)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1558), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1571), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_PLUS] = ACTIONS(385), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20304,42 +20380,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(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(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(383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_COMMA] = ACTIONS(383), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(385), + [anon_sym_as] = ACTIONS(399), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20355,7 +20431,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(385), + [anon_sym_else] = ACTIONS(399), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20374,66 +20450,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(41)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1567), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_RBRACK] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20451,42 +20527,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(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(349), - [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), - [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(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(397), + [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20502,7 +20578,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(397), + [anon_sym_else] = ACTIONS(403), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20521,66 +20597,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(42)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1551), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1567), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), [sym_identifier] = ACTIONS(339), - [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_SEMI] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_RBRACK] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20598,42 +20674,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(401), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(349), - [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_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(403), - [anon_sym_as] = ACTIONS(401), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20649,7 +20725,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(401), + [anon_sym_else] = ACTIONS(403), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20668,53 +20744,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(43)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(405), @@ -20811,63 +20887,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(44)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1895), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(399), - [anon_sym_PLUS] = ACTIONS(401), - [anon_sym_STAR] = ACTIONS(401), - [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -20885,41 +20961,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(401), - [anon_sym_SLASH] = ACTIONS(401), - [anon_sym_PERCENT] = ACTIONS(401), - [anon_sym_CARET] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(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_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(465), - [anon_sym_as] = ACTIONS(401), + [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), @@ -20953,56 +21029,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(45)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(46)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1723), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(46), + [sym_block_comment] = STATE(46), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(341), [anon_sym_LBRACK] = ACTIONS(341), [anon_sym_LBRACE] = ACTIONS(341), @@ -21010,28 +21228,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(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_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [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(471), + [anon_sym_BANG] = ACTIONS(469), [anon_sym_AMP] = ACTIONS(347), [anon_sym_PIPE] = ACTIONS(347), [anon_sym_AMP_AMP] = ACTIONS(341), @@ -21059,26 +21277,26 @@ 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(473), + [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(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -21087,71 +21305,213 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(46)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(46), - [sym_block_comment] = STATE(46), + [STATE(47)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(43), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(47), + [sym_block_comment] = STATE(47), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(493), + [anon_sym_as] = ACTIONS(393), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [STATE(48)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1776), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(48), + [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_EQ_GT] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21170,40 +21530,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(413), [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(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_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), [anon_sym_DOT_DOT] = ACTIONS(501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [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(397), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21236,64 +21596,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(47)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(47), - [sym_block_comment] = STATE(47), + [STATE(49)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1783), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(49), + [sym_block_comment] = STATE(49), [sym_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_EQ_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(383), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21312,40 +21672,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(385), - [anon_sym_CARET] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), [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_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), [anon_sym_DOT_DOT] = ACTIONS(501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(385), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21378,206 +21738,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(48)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(48), - [sym_block_comment] = STATE(48), - [sym_identifier] = ACTIONS(405), - [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(377), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [STATE(50)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1665), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(49)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(49), - [sym_block_comment] = STATE(49), + [STATE(51)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(51), + [sym_block_comment] = STATE(51), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(379), - [anon_sym_PLUS] = ACTIONS(381), - [anon_sym_STAR] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(379), + [anon_sym_EQ_GT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21595,41 +21955,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(381), - [anon_sym_SLASH] = ACTIONS(381), - [anon_sym_PERCENT] = ACTIONS(381), - [anon_sym_CARET] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(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_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(381), + [anon_sym_as] = ACTIONS(399), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21662,64 +22022,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(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(50), - [sym_block_comment] = STATE(50), + [STATE(52)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(52), + [sym_block_comment] = STATE(52), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_EQ_GT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21737,41 +22097,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(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(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_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), + [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21804,263 +22164,261 @@ 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(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(51), - [sym_block_comment] = STATE(51), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(379), - [anon_sym_LBRACK] = ACTIONS(379), - [anon_sym_LBRACE] = ACTIONS(407), - [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), - [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(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(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), + [STATE(53)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1737), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(53), + [sym_block_comment] = STATE(53), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(381), - [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_as] = ACTIONS(403), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(52)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1684), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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), + [STATE(54)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1647), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(54), + [sym_block_comment] = STATE(54), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), [anon_sym_BANG] = ACTIONS(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_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_as] = ACTIONS(399), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -22068,7 +22426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -22081,94 +22439,235 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(53)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1650), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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), + [STATE(55)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(46), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(55), + [sym_block_comment] = STATE(55), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [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(395), + [anon_sym_as] = ACTIONS(393), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(56)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(56), + [sym_block_comment] = STATE(56), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(469), [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_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [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(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(381), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -22187,33 +22686,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(377), + [anon_sym_LT] = ACTIONS(383), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(521), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22222,139 +22721,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(54)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1846), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(45), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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), + [STATE(57)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1737), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(57), + [sym_block_comment] = STATE(57), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22363,127 +22862,127 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(55)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1653), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(55), - [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [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), + [STATE(58)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1647), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(58), + [sym_block_comment] = STATE(58), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(519), - [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(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_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_as] = ACTIONS(399), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -22491,7 +22990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -22504,127 +23003,127 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(56)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1652), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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(503), - [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(503), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), + [STATE(59)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(59), + [sym_block_comment] = STATE(59), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(519), - [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(521), - [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_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_as] = ACTIONS(403), [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_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -22632,7 +23131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -22645,139 +23144,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(57)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(52), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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), + [STATE(60)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1868), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(60), + [sym_block_comment] = STATE(60), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(399), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22786,127 +23285,127 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(58)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1650), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(58), - [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(467), + [STATE(61)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(61), + [sym_block_comment] = STATE(61), + [sym_identifier] = ACTIONS(465), [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_LBRACK] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(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(377), - [anon_sym_as] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_as] = ACTIONS(403), [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_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -22914,7 +23413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -22927,139 +23426,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(59)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(59), - [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(467), + [STATE(62)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1868), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(62), + [sym_block_comment] = STATE(62), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [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_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(397), + [anon_sym_as] = ACTIONS(399), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23068,139 +23567,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(60)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(60), - [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(467), + [STATE(63)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(63), + [sym_block_comment] = STATE(63), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(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(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_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(469), + [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(469), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(385), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23209,127 +23708,127 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(61)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(61), - [sym_block_comment] = STATE(61), - [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), + [STATE(64)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1650), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(64), + [sym_block_comment] = STATE(64), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(503), + [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(523), [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_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -23337,7 +23836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -23350,409 +23849,127 @@ 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__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(62)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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(63)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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(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_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(64)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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), + [STATE(65)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1648), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(50), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(65), + [sym_block_comment] = STATE(65), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [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(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_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_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_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -23760,7 +23977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -23773,94 +23990,94 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(65)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(65), - [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(375), + [STATE(66)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1649), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(66), + [sym_block_comment] = STATE(66), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(503), [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_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(503), [anon_sym_SLASH] = ACTIONS(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_BANG] = ACTIONS(503), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(381), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -23879,174 +24096,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(377), + [anon_sym_LT] = ACTIONS(383), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(525), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(66)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(66), - [sym_block_comment] = STATE(66), - [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(381), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [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_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(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), @@ -24055,26 +24131,26 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(67)] = { - [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__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(141), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(527), [anon_sym_SEMI] = ACTIONS(530), [anon_sym_LPAREN] = ACTIONS(533), @@ -24189,31 +24265,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(550), }, [STATE(68)] = { - [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__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [aux_sym_token_tree_pattern_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), - [anon_sym_SEMI] = ACTIONS(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_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), [anon_sym_u8] = ACTIONS(565), [anon_sym_i8] = ACTIONS(565), [anon_sym_u16] = ACTIONS(565), @@ -24231,44 +24306,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(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_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), @@ -24299,1891 +24374,1892 @@ 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(588), - [aux_sym_string_literal_token1] = ACTIONS(591), - [sym_char_literal] = ACTIONS(588), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), + [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__raw_string_literal_start] = ACTIONS(597), - [sym_float_literal] = ACTIONS(588), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, [STATE(69)] = { - [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__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [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), + [aux_sym_token_tree_pattern_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_RBRACK] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_await] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_gen] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_where] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_mutable_specifier] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, [STATE(70)] = { - [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__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [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), + [aux_sym_token_tree_pattern_repeat1] = STATE(77), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_RBRACE] = ACTIONS(571), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_await] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_gen] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_where] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_mutable_specifier] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, [STATE(71)] = { - [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__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [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), + [aux_sym_token_tree_pattern_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_await] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_gen] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_where] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_mutable_specifier] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, [STATE(72)] = { - [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__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), - [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), + [aux_sym_token_tree_pattern_repeat1] = STATE(80), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_RBRACK] = ACTIONS(591), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_await] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_gen] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_where] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_mutable_specifier] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, [STATE(73)] = { - [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__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [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), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_await] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_gen] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_where] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_mutable_specifier] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, [STATE(74)] = { - [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__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), [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(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), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_await] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_gen] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_where] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_mutable_specifier] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, [STATE(75)] = { - [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__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [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(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(141), - [sym_identifier] = ACTIONS(638), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(670), - [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(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(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(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(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(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(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), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_await] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_gen] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_where] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_mutable_specifier] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(76)] = { + [sym__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(76), + [sym_block_comment] = STATE(76), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_await] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_gen] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_where] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_mutable_specifier] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(77)] = { + [sym__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(77), + [sym_block_comment] = STATE(77), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_await] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_gen] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_where] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_mutable_specifier] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(78)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(78), + [sym_block_comment] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_EQ_GT] = ACTIONS(600), + [anon_sym_COLON] = ACTIONS(614), + [anon_sym_DOLLAR] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(597), + [anon_sym_i8] = ACTIONS(597), + [anon_sym_u16] = ACTIONS(597), + [anon_sym_i16] = ACTIONS(597), + [anon_sym_u32] = ACTIONS(597), + [anon_sym_i32] = ACTIONS(597), + [anon_sym_u64] = ACTIONS(597), + [anon_sym_i64] = ACTIONS(597), + [anon_sym_u128] = ACTIONS(597), + [anon_sym_i128] = ACTIONS(597), + [anon_sym_isize] = ACTIONS(597), + [anon_sym_usize] = ACTIONS(597), + [anon_sym_f32] = ACTIONS(597), + [anon_sym_f64] = ACTIONS(597), + [anon_sym_bool] = ACTIONS(597), + [anon_sym_str] = ACTIONS(597), + [anon_sym_char] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_BANG] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_AT] = ACTIONS(600), + [anon_sym__] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT_EQ] = ACTIONS(600), + [anon_sym_COMMA] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(600), + [anon_sym_DASH_GT] = ACTIONS(600), + [anon_sym_POUND] = ACTIONS(600), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_async] = ACTIONS(597), + [anon_sym_await] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_default] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_gen] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_impl] = ACTIONS(597), + [anon_sym_let] = ACTIONS(597), + [anon_sym_loop] = ACTIONS(597), + [anon_sym_match] = ACTIONS(597), + [anon_sym_mod] = ACTIONS(597), + [anon_sym_pub] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_static] = ACTIONS(597), + [anon_sym_struct] = ACTIONS(597), + [anon_sym_trait] = ACTIONS(597), + [anon_sym_type] = ACTIONS(597), + [anon_sym_union] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_use] = ACTIONS(597), + [anon_sym_where] = ACTIONS(597), + [anon_sym_while] = ACTIONS(597), + [sym_mutable_specifier] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(623), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(597), + [sym_super] = ACTIONS(597), + [sym_crate] = ACTIONS(597), + [sym__raw_string_literal_start] = ACTIONS(629), + [sym_float_literal] = ACTIONS(620), + }, + [STATE(79)] = { + [sym__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(79), + [sym_block_comment] = STATE(79), + [aux_sym_token_tree_pattern_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(632), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_await] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_gen] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_where] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_mutable_specifier] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(80)] = { + [sym__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(80), + [sym_block_comment] = STATE(80), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_RBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_await] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_gen] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_where] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_mutable_specifier] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, [STATE(81)] = { - [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__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), - [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(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), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(634), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_await] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_gen] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_where] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_mutable_specifier] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, [STATE(82)] = { - [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_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [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), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(636), + [anon_sym_SEMI] = ACTIONS(639), [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(646), - [anon_sym_RBRACK] = ACTIONS(672), - [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), + [anon_sym_RPAREN] = ACTIONS(645), + [anon_sym_LBRACK] = ACTIONS(647), + [anon_sym_RBRACK] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(645), + [anon_sym_EQ_GT] = ACTIONS(639), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(656), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_STAR] = ACTIONS(653), + [anon_sym_QMARK] = ACTIONS(639), + [anon_sym_u8] = ACTIONS(636), + [anon_sym_i8] = ACTIONS(636), + [anon_sym_u16] = ACTIONS(636), + [anon_sym_i16] = ACTIONS(636), + [anon_sym_u32] = ACTIONS(636), + [anon_sym_i32] = ACTIONS(636), + [anon_sym_u64] = ACTIONS(636), + [anon_sym_i64] = ACTIONS(636), + [anon_sym_u128] = ACTIONS(636), + [anon_sym_i128] = ACTIONS(636), + [anon_sym_isize] = ACTIONS(636), + [anon_sym_usize] = ACTIONS(636), + [anon_sym_f32] = ACTIONS(636), + [anon_sym_f64] = ACTIONS(636), + [anon_sym_bool] = ACTIONS(636), + [anon_sym_str] = ACTIONS(636), + [anon_sym_char] = ACTIONS(636), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(653), + [anon_sym_PERCENT] = ACTIONS(653), + [anon_sym_CARET] = ACTIONS(653), + [anon_sym_BANG] = ACTIONS(653), + [anon_sym_AMP] = ACTIONS(653), + [anon_sym_PIPE] = ACTIONS(653), + [anon_sym_AMP_AMP] = ACTIONS(639), + [anon_sym_PIPE_PIPE] = ACTIONS(639), + [anon_sym_LT_LT] = ACTIONS(653), + [anon_sym_GT_GT] = ACTIONS(653), + [anon_sym_PLUS_EQ] = ACTIONS(639), + [anon_sym_DASH_EQ] = ACTIONS(639), + [anon_sym_STAR_EQ] = ACTIONS(639), + [anon_sym_SLASH_EQ] = ACTIONS(639), + [anon_sym_PERCENT_EQ] = ACTIONS(639), + [anon_sym_CARET_EQ] = ACTIONS(639), + [anon_sym_AMP_EQ] = ACTIONS(639), + [anon_sym_PIPE_EQ] = ACTIONS(639), + [anon_sym_LT_LT_EQ] = ACTIONS(639), + [anon_sym_GT_GT_EQ] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(653), + [anon_sym_EQ_EQ] = ACTIONS(639), + [anon_sym_BANG_EQ] = ACTIONS(639), + [anon_sym_GT] = ACTIONS(653), + [anon_sym_LT] = ACTIONS(653), + [anon_sym_GT_EQ] = ACTIONS(639), + [anon_sym_LT_EQ] = ACTIONS(639), + [anon_sym_AT] = ACTIONS(639), + [anon_sym__] = ACTIONS(653), + [anon_sym_DOT] = ACTIONS(653), + [anon_sym_DOT_DOT] = ACTIONS(653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(639), + [anon_sym_DOT_DOT_EQ] = ACTIONS(639), + [anon_sym_COMMA] = ACTIONS(639), + [anon_sym_COLON_COLON] = ACTIONS(639), + [anon_sym_DASH_GT] = ACTIONS(639), + [anon_sym_POUND] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(636), + [anon_sym_as] = ACTIONS(636), + [anon_sym_async] = ACTIONS(636), + [anon_sym_await] = ACTIONS(636), + [anon_sym_break] = ACTIONS(636), + [anon_sym_const] = ACTIONS(636), + [anon_sym_continue] = ACTIONS(636), + [anon_sym_default] = ACTIONS(636), + [anon_sym_enum] = ACTIONS(636), + [anon_sym_fn] = ACTIONS(636), + [anon_sym_for] = ACTIONS(636), + [anon_sym_gen] = ACTIONS(636), + [anon_sym_if] = ACTIONS(636), + [anon_sym_impl] = ACTIONS(636), + [anon_sym_let] = ACTIONS(636), + [anon_sym_loop] = ACTIONS(636), + [anon_sym_match] = ACTIONS(636), + [anon_sym_mod] = ACTIONS(636), + [anon_sym_pub] = ACTIONS(636), + [anon_sym_return] = ACTIONS(636), + [anon_sym_static] = ACTIONS(636), + [anon_sym_struct] = ACTIONS(636), + [anon_sym_trait] = ACTIONS(636), + [anon_sym_type] = ACTIONS(636), + [anon_sym_union] = ACTIONS(636), + [anon_sym_unsafe] = ACTIONS(636), + [anon_sym_use] = ACTIONS(636), + [anon_sym_where] = ACTIONS(636), + [anon_sym_while] = ACTIONS(636), + [sym_mutable_specifier] = ACTIONS(636), + [sym_integer_literal] = ACTIONS(659), + [aux_sym_string_literal_token1] = ACTIONS(662), + [sym_char_literal] = ACTIONS(659), + [anon_sym_true] = ACTIONS(665), + [anon_sym_false] = ACTIONS(665), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(636), + [sym_super] = ACTIONS(636), + [sym_crate] = ACTIONS(636), + [sym_metavariable] = ACTIONS(668), + [sym__raw_string_literal_start] = ACTIONS(671), + [sym_float_literal] = ACTIONS(659), }, [STATE(83)] = { - [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__token_pattern] = STATE(155), + [sym_token_tree_pattern] = STATE(150), + [sym_token_binding_pattern] = STATE(150), + [sym_token_repetition_pattern] = STATE(150), + [sym__literal] = STATE(150), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [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(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), + [aux_sym_token_tree_pattern_repeat1] = STATE(74), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(565), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_RBRACE] = ACTIONS(591), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(565), + [anon_sym_i8] = ACTIONS(565), + [anon_sym_u16] = ACTIONS(565), + [anon_sym_i16] = ACTIONS(565), + [anon_sym_u32] = ACTIONS(565), + [anon_sym_i32] = ACTIONS(565), + [anon_sym_u64] = ACTIONS(565), + [anon_sym_i64] = ACTIONS(565), + [anon_sym_u128] = ACTIONS(565), + [anon_sym_i128] = ACTIONS(565), + [anon_sym_isize] = ACTIONS(565), + [anon_sym_usize] = ACTIONS(565), + [anon_sym_f32] = ACTIONS(565), + [anon_sym_f64] = ACTIONS(565), + [anon_sym_bool] = ACTIONS(565), + [anon_sym_str] = ACTIONS(565), + [anon_sym_char] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_as] = ACTIONS(565), + [anon_sym_async] = ACTIONS(565), + [anon_sym_await] = ACTIONS(565), + [anon_sym_break] = ACTIONS(565), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(565), + [anon_sym_default] = ACTIONS(565), + [anon_sym_enum] = ACTIONS(565), + [anon_sym_fn] = ACTIONS(565), + [anon_sym_for] = ACTIONS(565), + [anon_sym_gen] = ACTIONS(565), + [anon_sym_if] = ACTIONS(565), + [anon_sym_impl] = ACTIONS(565), + [anon_sym_let] = ACTIONS(565), + [anon_sym_loop] = ACTIONS(565), + [anon_sym_match] = ACTIONS(565), + [anon_sym_mod] = ACTIONS(565), + [anon_sym_pub] = ACTIONS(565), + [anon_sym_return] = ACTIONS(565), + [anon_sym_static] = ACTIONS(565), + [anon_sym_struct] = ACTIONS(565), + [anon_sym_trait] = ACTIONS(565), + [anon_sym_type] = ACTIONS(565), + [anon_sym_union] = ACTIONS(565), + [anon_sym_unsafe] = ACTIONS(565), + [anon_sym_use] = ACTIONS(565), + [anon_sym_where] = ACTIONS(565), + [anon_sym_while] = ACTIONS(565), + [sym_mutable_specifier] = ACTIONS(565), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(565), + [sym_super] = ACTIONS(565), + [sym_crate] = ACTIONS(565), + [sym_metavariable] = ACTIONS(587), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, [STATE(84)] = { - [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_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), @@ -26295,23 +26371,633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(85)] = { - [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_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [aux_sym_token_tree_repeat1] = STATE(88), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_RBRACK] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(86)] = { + [sym_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(86), + [sym_block_comment] = STATE(86), + [aux_sym_token_tree_repeat1] = STATE(89), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(87)] = { + [sym_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(87), + [sym_block_comment] = STATE(87), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(88)] = { + [sym_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(88), + [sym_block_comment] = STATE(88), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_RBRACK] = ACTIONS(712), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(89)] = { + [sym_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(89), + [sym_block_comment] = STATE(89), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(90)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(90), + [sym_block_comment] = STATE(90), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_RBRACE] = ACTIONS(714), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -26416,266 +27102,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(86)] = { - [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(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), + [STATE(91)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(91), + [sym_block_comment] = STATE(91), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(95), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(714), + [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), @@ -26782,23 +27224,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [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), + [STATE(92)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(92), + [sym_block_comment] = STATE(92), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(96), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -26904,24 +27346,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(90)] = { - [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(85), + [STATE(93)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(97), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(718), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(714), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -27026,24 +27468,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [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), + [STATE(94)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(98), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(718), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -27148,23 +27590,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [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), + [STATE(95)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(95), + [sym_block_comment] = STATE(95), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(714), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(716), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -27270,24 +27712,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [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), + [STATE(96)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(720), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(716), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -27392,145 +27834,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [STATE(97)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(720), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(720), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -27636,24 +27956,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(96)] = { - [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__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [STATE(98)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(720), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(720), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -27758,24 +28078,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(97)] = { - [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__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [STATE(99)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(714), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(720), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -27880,998 +28200,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(98)] = { - [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(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(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_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_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), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_RPAREN] = ACTIONS(722), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), @@ -28978,23 +28322,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [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), + [STATE(101)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(728), + [anon_sym_RBRACK] = ACTIONS(722), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -29100,24 +28444,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [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), + [STATE(102)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(106), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(724), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(728), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29222,23 +28566,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(109)] = { - [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [STATE(103)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(107), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(730), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(724), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -29344,24 +28688,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(110)] = { - [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [STATE(104)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(133), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(730), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29466,24 +28810,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(111)] = { - [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [STATE(105)] = { + [sym_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [aux_sym_token_tree_repeat1] = STATE(115), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(106)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(728), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(730), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29588,267 +29054,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(112)] = { - [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_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_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_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(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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(117), + [STATE(107)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(728), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -29954,24 +29176,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(115)] = { - [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(118), + [STATE(108)] = { + [sym_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(108), + [sym_block_comment] = STATE(108), + [aux_sym_token_tree_repeat1] = STATE(87), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(109)] = { + [sym_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(109), + [sym_block_comment] = STATE(109), + [aux_sym_token_tree_repeat1] = STATE(119), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(110)] = { + [sym_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(110), + [sym_block_comment] = STATE(110), + [aux_sym_token_tree_repeat1] = STATE(120), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(111)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(111), + [sym_block_comment] = STATE(111), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(734), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -30076,24 +29664,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(116)] = { - [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(119), + [STATE(112)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(112), + [sym_block_comment] = STATE(112), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(116), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(730), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(734), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -30198,23 +29786,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(117)] = { - [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [STATE(113)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(117), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(736), [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), @@ -30320,24 +29908,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [STATE(114)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(114), + [sym_block_comment] = STATE(114), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(118), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(736), [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), @@ -30442,24 +30030,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(119)] = { - [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [STATE(115)] = { + [sym_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(115), + [sym_block_comment] = STATE(115), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(116)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(116), + [sym_block_comment] = STATE(116), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(736), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -30564,23 +30274,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(120)] = { - [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(123), + [STATE(117)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(117), + [sym_block_comment] = STATE(117), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(738), [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), @@ -30686,24 +30396,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(121)] = { - [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(124), + [STATE(118)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(118), + [sym_block_comment] = STATE(118), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(738), [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), @@ -30808,24 +30518,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, + [STATE(119)] = { + [sym_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(119), + [sym_block_comment] = STATE(119), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_RBRACK] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(120)] = { + [sym_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(120), + [sym_block_comment] = STATE(120), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(121)] = { + [sym_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), + [sym_line_comment] = STATE(121), + [sym_block_comment] = STATE(121), + [aux_sym_token_tree_repeat1] = STATE(129), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, [STATE(122)] = { - [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_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(84), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(126), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(738), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -30931,22 +31007,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(123)] = { - [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_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(127), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(684), [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), @@ -31053,23 +31129,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(124)] = { - [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_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(84), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(684), [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), @@ -31175,22 +31251,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(125)] = { - [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_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(129), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(99), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(716), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -31297,22 +31373,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(126)] = { - [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_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(130), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(684), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(740), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -31419,23 +31495,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(131), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(684), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(740), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31541,21 +31617,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(128)] = { - [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_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(100), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_RPAREN] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), @@ -31663,23 +31739,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [STATE(129)] = { - [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_token_tree] = STATE(148), + [sym_token_repetition] = STATE(148), + [sym__literal] = STATE(148), + [sym_string_literal] = STATE(170), + [sym_raw_string_literal] = STATE(170), + [sym_boolean_literal] = STATE(170), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(698), + [anon_sym_i8] = ACTIONS(698), + [anon_sym_u16] = ACTIONS(698), + [anon_sym_i16] = ACTIONS(698), + [anon_sym_u32] = ACTIONS(698), + [anon_sym_i32] = ACTIONS(698), + [anon_sym_u64] = ACTIONS(698), + [anon_sym_i64] = ACTIONS(698), + [anon_sym_u128] = ACTIONS(698), + [anon_sym_i128] = ACTIONS(698), + [anon_sym_isize] = ACTIONS(698), + [anon_sym_usize] = ACTIONS(698), + [anon_sym_f32] = ACTIONS(698), + [anon_sym_f64] = ACTIONS(698), + [anon_sym_bool] = ACTIONS(698), + [anon_sym_str] = ACTIONS(698), + [anon_sym_char] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(698), + [anon_sym_as] = ACTIONS(698), + [anon_sym_async] = ACTIONS(698), + [anon_sym_await] = ACTIONS(698), + [anon_sym_break] = ACTIONS(698), + [anon_sym_const] = ACTIONS(698), + [anon_sym_continue] = ACTIONS(698), + [anon_sym_default] = ACTIONS(698), + [anon_sym_enum] = ACTIONS(698), + [anon_sym_fn] = ACTIONS(698), + [anon_sym_for] = ACTIONS(698), + [anon_sym_gen] = ACTIONS(698), + [anon_sym_if] = ACTIONS(698), + [anon_sym_impl] = ACTIONS(698), + [anon_sym_let] = ACTIONS(698), + [anon_sym_loop] = ACTIONS(698), + [anon_sym_match] = ACTIONS(698), + [anon_sym_mod] = ACTIONS(698), + [anon_sym_pub] = ACTIONS(698), + [anon_sym_return] = ACTIONS(698), + [anon_sym_static] = ACTIONS(698), + [anon_sym_struct] = ACTIONS(698), + [anon_sym_trait] = ACTIONS(698), + [anon_sym_type] = ACTIONS(698), + [anon_sym_union] = ACTIONS(698), + [anon_sym_unsafe] = ACTIONS(698), + [anon_sym_use] = ACTIONS(698), + [anon_sym_where] = ACTIONS(698), + [anon_sym_while] = ACTIONS(698), + [sym_mutable_specifier] = ACTIONS(698), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(698), + [sym_super] = ACTIONS(698), + [sym_crate] = ACTIONS(698), + [sym_metavariable] = ACTIONS(710), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [STATE(130)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(130), + [sym_block_comment] = STATE(130), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(90), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(742), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(716), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31784,23 +31982,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(130)] = { - [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [STATE(131)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(131), + [sym_block_comment] = STATE(131), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(101), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(742), + [anon_sym_RBRACK] = ACTIONS(740), [anon_sym_LBRACE] = ACTIONS(682), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), @@ -31906,24 +32104,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(131)] = { - [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [STATE(132)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(132), + [sym_block_comment] = STATE(132), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(111), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(740), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -32028,24 +32226,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(132)] = { - [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(181), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [STATE(133)] = { + [sym_delim_token_tree] = STATE(210), + [sym__delim_tokens] = STATE(211), + [sym__non_delim_token] = STATE(210), + [sym__literal] = STATE(209), + [sym_string_literal] = STATE(202), + [sym_raw_string_literal] = STATE(202), + [sym_boolean_literal] = STATE(202), + [sym_line_comment] = STATE(133), + [sym_block_comment] = STATE(133), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(78), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(698), [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(728), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -32150,180 +32348,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [STATE(133)] = { - [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_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(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1601), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym_enum_variant_list_repeat1] = STATE(142), + [aux_sym_enum_variant_list_repeat1] = STATE(138), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -32390,57 +32466,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(135)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), + [aux_sym_enum_variant_list_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(753), [anon_sym_LBRACK] = ACTIONS(756), @@ -32507,61 +32583,412 @@ 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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1610), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [aux_sym_enum_variant_list_repeat1] = STATE(139), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_RBRACK] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(863), + [anon_sym_i8] = ACTIONS(863), + [anon_sym_u16] = ACTIONS(863), + [anon_sym_i16] = ACTIONS(863), + [anon_sym_u32] = ACTIONS(863), + [anon_sym_i32] = ACTIONS(863), + [anon_sym_u64] = ACTIONS(863), + [anon_sym_i64] = ACTIONS(863), + [anon_sym_u128] = ACTIONS(863), + [anon_sym_i128] = ACTIONS(863), + [anon_sym_isize] = ACTIONS(863), + [anon_sym_usize] = ACTIONS(863), + [anon_sym_f32] = ACTIONS(863), + [anon_sym_f64] = ACTIONS(863), + [anon_sym_bool] = ACTIONS(863), + [anon_sym_str] = ACTIONS(863), + [anon_sym_char] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(863), + [anon_sym_as] = ACTIONS(863), + [anon_sym_async] = ACTIONS(863), + [anon_sym_await] = ACTIONS(863), + [anon_sym_break] = ACTIONS(863), + [anon_sym_const] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_enum] = ACTIONS(863), + [anon_sym_fn] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_gen] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_impl] = ACTIONS(863), + [anon_sym_let] = ACTIONS(863), + [anon_sym_loop] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(863), + [anon_sym_pub] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_static] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_trait] = ACTIONS(863), + [anon_sym_type] = ACTIONS(863), + [anon_sym_union] = ACTIONS(863), + [anon_sym_unsafe] = ACTIONS(863), + [anon_sym_use] = ACTIONS(863), + [anon_sym_where] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [sym_mutable_specifier] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(865), + [aux_sym_string_literal_token1] = ACTIONS(865), + [sym_char_literal] = ACTIONS(865), + [anon_sym_true] = ACTIONS(863), + [anon_sym_false] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(863), + [sym_super] = ACTIONS(863), + [sym_crate] = ACTIONS(863), + [sym_metavariable] = ACTIONS(865), + [sym__raw_string_literal_start] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), + }, + [STATE(137)] = { + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(869), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_RBRACK] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(867), + [anon_sym_i8] = ACTIONS(867), + [anon_sym_u16] = ACTIONS(867), + [anon_sym_i16] = ACTIONS(867), + [anon_sym_u32] = ACTIONS(867), + [anon_sym_i32] = ACTIONS(867), + [anon_sym_u64] = ACTIONS(867), + [anon_sym_i64] = ACTIONS(867), + [anon_sym_u128] = ACTIONS(867), + [anon_sym_i128] = ACTIONS(867), + [anon_sym_isize] = ACTIONS(867), + [anon_sym_usize] = ACTIONS(867), + [anon_sym_f32] = ACTIONS(867), + [anon_sym_f64] = ACTIONS(867), + [anon_sym_bool] = ACTIONS(867), + [anon_sym_str] = ACTIONS(867), + [anon_sym_char] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_as] = ACTIONS(867), + [anon_sym_async] = ACTIONS(867), + [anon_sym_await] = ACTIONS(867), + [anon_sym_break] = ACTIONS(867), + [anon_sym_const] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_default] = ACTIONS(867), + [anon_sym_enum] = ACTIONS(867), + [anon_sym_fn] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_gen] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_impl] = ACTIONS(867), + [anon_sym_let] = ACTIONS(867), + [anon_sym_loop] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mod] = ACTIONS(867), + [anon_sym_pub] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_static] = ACTIONS(867), + [anon_sym_struct] = ACTIONS(867), + [anon_sym_trait] = ACTIONS(867), + [anon_sym_type] = ACTIONS(867), + [anon_sym_union] = ACTIONS(867), + [anon_sym_unsafe] = ACTIONS(867), + [anon_sym_use] = ACTIONS(867), + [anon_sym_where] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [sym_mutable_specifier] = ACTIONS(867), + [sym_integer_literal] = ACTIONS(869), + [aux_sym_string_literal_token1] = ACTIONS(869), + [sym_char_literal] = ACTIONS(869), + [anon_sym_true] = ACTIONS(867), + [anon_sym_false] = ACTIONS(867), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(867), + [sym_super] = ACTIONS(867), + [sym_crate] = ACTIONS(867), + [sym_metavariable] = ACTIONS(869), + [sym__raw_string_literal_start] = ACTIONS(869), + [sym_float_literal] = ACTIONS(869), + }, + [STATE(138)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1674), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(753), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_RBRACK] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(761), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_u8] = ACTIONS(767), + [anon_sym_i8] = ACTIONS(767), + [anon_sym_u16] = ACTIONS(767), + [anon_sym_i16] = ACTIONS(767), + [anon_sym_u32] = ACTIONS(767), + [anon_sym_i32] = ACTIONS(767), + [anon_sym_u64] = ACTIONS(767), + [anon_sym_i64] = ACTIONS(767), + [anon_sym_u128] = ACTIONS(767), + [anon_sym_i128] = ACTIONS(767), + [anon_sym_isize] = ACTIONS(767), + [anon_sym_usize] = ACTIONS(767), + [anon_sym_f32] = ACTIONS(767), + [anon_sym_f64] = ACTIONS(767), + [anon_sym_bool] = ACTIONS(767), + [anon_sym_str] = ACTIONS(767), + [anon_sym_char] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_BANG] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(770), + [anon_sym_PIPE] = ACTIONS(773), + [anon_sym_LT] = ACTIONS(776), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_COLON_COLON] = ACTIONS(782), + [anon_sym_POUND] = ACTIONS(785), + [anon_sym_SQUOTE] = ACTIONS(788), + [anon_sym_async] = ACTIONS(791), + [anon_sym_break] = ACTIONS(794), + [anon_sym_const] = ACTIONS(797), + [anon_sym_continue] = ACTIONS(800), + [anon_sym_default] = ACTIONS(803), + [anon_sym_for] = ACTIONS(806), + [anon_sym_gen] = ACTIONS(809), + [anon_sym_if] = ACTIONS(812), + [anon_sym_loop] = ACTIONS(815), + [anon_sym_match] = ACTIONS(818), + [anon_sym_return] = ACTIONS(821), + [anon_sym_static] = ACTIONS(824), + [anon_sym_union] = ACTIONS(803), + [anon_sym_unsafe] = ACTIONS(827), + [anon_sym_while] = ACTIONS(830), + [anon_sym_yield] = ACTIONS(833), + [anon_sym_move] = ACTIONS(836), + [anon_sym_try] = ACTIONS(839), + [sym_integer_literal] = ACTIONS(842), + [aux_sym_string_literal_token1] = ACTIONS(845), + [sym_char_literal] = ACTIONS(842), + [anon_sym_true] = ACTIONS(848), + [anon_sym_false] = ACTIONS(848), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(851), + [sym_super] = ACTIONS(854), + [sym_crate] = ACTIONS(854), + [sym_metavariable] = ACTIONS(857), + [sym__raw_string_literal_start] = ACTIONS(860), + [sym_float_literal] = ACTIONS(842), + }, + [STATE(139)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1619), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [aux_sym_enum_variant_list_repeat1] = STATE(140), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(871), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32587,7 +33014,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(865), + [anon_sym_COMMA] = ACTIONS(873), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32623,62 +33050,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(137)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(137), - [sym_block_comment] = STATE(137), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [STATE(140)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1639), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym_enum_variant_list_repeat1] = STATE(135), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(867), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(875), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32704,7 +33131,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(877), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32740,179 +33167,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_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1647), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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), - [anon_sym_RBRACK] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_u8] = ACTIONS(767), - [anon_sym_i8] = ACTIONS(767), - [anon_sym_u16] = ACTIONS(767), - [anon_sym_i16] = ACTIONS(767), - [anon_sym_u32] = ACTIONS(767), - [anon_sym_i32] = ACTIONS(767), - [anon_sym_u64] = ACTIONS(767), - [anon_sym_i64] = ACTIONS(767), - [anon_sym_u128] = ACTIONS(767), - [anon_sym_i128] = ACTIONS(767), - [anon_sym_isize] = ACTIONS(767), - [anon_sym_usize] = ACTIONS(767), - [anon_sym_f32] = ACTIONS(767), - [anon_sym_f64] = ACTIONS(767), - [anon_sym_bool] = ACTIONS(767), - [anon_sym_str] = ACTIONS(767), - [anon_sym_char] = ACTIONS(767), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_BANG] = ACTIONS(764), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(773), - [anon_sym_LT] = ACTIONS(776), - [anon_sym_DOT_DOT] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(759), - [anon_sym_COLON_COLON] = ACTIONS(782), - [anon_sym_POUND] = ACTIONS(785), - [anon_sym_SQUOTE] = ACTIONS(788), - [anon_sym_async] = ACTIONS(791), - [anon_sym_break] = ACTIONS(794), - [anon_sym_const] = ACTIONS(797), - [anon_sym_continue] = ACTIONS(800), - [anon_sym_default] = ACTIONS(803), - [anon_sym_for] = ACTIONS(806), - [anon_sym_gen] = ACTIONS(809), - [anon_sym_if] = ACTIONS(812), - [anon_sym_loop] = ACTIONS(815), - [anon_sym_match] = ACTIONS(818), - [anon_sym_return] = ACTIONS(821), - [anon_sym_static] = ACTIONS(824), - [anon_sym_union] = ACTIONS(803), - [anon_sym_unsafe] = ACTIONS(827), - [anon_sym_while] = ACTIONS(830), - [anon_sym_yield] = ACTIONS(833), - [anon_sym_move] = ACTIONS(836), - [anon_sym_try] = ACTIONS(839), - [sym_integer_literal] = ACTIONS(842), - [aux_sym_string_literal_token1] = ACTIONS(845), - [sym_char_literal] = ACTIONS(842), - [anon_sym_true] = ACTIONS(848), - [anon_sym_false] = ACTIONS(848), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(851), - [sym_super] = ACTIONS(854), - [sym_crate] = ACTIONS(854), - [sym_metavariable] = ACTIONS(857), - [sym__raw_string_literal_start] = ACTIONS(860), - [sym_float_literal] = ACTIONS(842), - }, - [STATE(139)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1611), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(135), + [STATE(141)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1654), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [aux_sym_enum_variant_list_repeat1] = STATE(213), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(879), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(871), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32938,7 +33248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(881), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32974,296 +33284,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(140)] = { - [sym_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(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1608), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1681), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(142), [sym_block_comment] = STATE(142), - [aux_sym_enum_variant_list_repeat1] = STATE(138), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(883), [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), @@ -33443,61 +33519,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(892), }, [STATE(144)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1657), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1625), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(144), [sym_block_comment] = STATE(144), - [aux_sym_enum_variant_list_repeat1] = STATE(213), + [aux_sym_enum_variant_list_repeat1] = STATE(134), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(897), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(897), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33560,293 +33636,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(145)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2748), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), - [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(146)] = { - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [sym_identifier] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_RBRACK] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_EQ_GT] = ACTIONS(911), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_QMARK] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(909), - [anon_sym_i8] = ACTIONS(909), - [anon_sym_u16] = ACTIONS(909), - [anon_sym_i16] = ACTIONS(909), - [anon_sym_u32] = ACTIONS(909), - [anon_sym_i32] = ACTIONS(909), - [anon_sym_u64] = ACTIONS(909), - [anon_sym_i64] = ACTIONS(909), - [anon_sym_u128] = ACTIONS(909), - [anon_sym_i128] = ACTIONS(909), - [anon_sym_isize] = ACTIONS(909), - [anon_sym_usize] = ACTIONS(909), - [anon_sym_f32] = ACTIONS(909), - [anon_sym_f64] = ACTIONS(909), - [anon_sym_bool] = ACTIONS(909), - [anon_sym_str] = ACTIONS(909), - [anon_sym_char] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_PERCENT] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_AMP_AMP] = ACTIONS(911), - [anon_sym_PIPE_PIPE] = ACTIONS(911), - [anon_sym_LT_LT] = ACTIONS(909), - [anon_sym_GT_GT] = ACTIONS(909), - [anon_sym_PLUS_EQ] = ACTIONS(911), - [anon_sym_DASH_EQ] = ACTIONS(911), - [anon_sym_STAR_EQ] = ACTIONS(911), - [anon_sym_SLASH_EQ] = ACTIONS(911), - [anon_sym_PERCENT_EQ] = ACTIONS(911), - [anon_sym_CARET_EQ] = ACTIONS(911), - [anon_sym_AMP_EQ] = ACTIONS(911), - [anon_sym_PIPE_EQ] = ACTIONS(911), - [anon_sym_LT_LT_EQ] = ACTIONS(911), - [anon_sym_GT_GT_EQ] = ACTIONS(911), - [anon_sym_EQ] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_AT] = ACTIONS(911), - [anon_sym__] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(911), - [anon_sym_DASH_GT] = ACTIONS(911), - [anon_sym_POUND] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_async] = ACTIONS(909), - [anon_sym_await] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_default] = ACTIONS(909), - [anon_sym_enum] = ACTIONS(909), - [anon_sym_fn] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_gen] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_impl] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_pub] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_static] = ACTIONS(909), - [anon_sym_struct] = ACTIONS(909), - [anon_sym_trait] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_union] = ACTIONS(909), - [anon_sym_unsafe] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [sym_mutable_specifier] = ACTIONS(909), - [sym_integer_literal] = ACTIONS(911), - [aux_sym_string_literal_token1] = ACTIONS(911), - [sym_char_literal] = ACTIONS(911), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(909), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym__raw_string_literal_start] = ACTIONS(911), - [sym_float_literal] = ACTIONS(911), - }, - [STATE(147)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(913), + [anon_sym_RBRACK] = ACTIONS(901), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33907,9 +33751,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(146)] = { + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [sym_identifier] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(905), + [anon_sym_RBRACK] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_EQ_GT] = ACTIONS(905), + [anon_sym_COLON] = ACTIONS(903), + [anon_sym_DOLLAR] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(903), + [anon_sym_i8] = ACTIONS(903), + [anon_sym_u16] = ACTIONS(903), + [anon_sym_i16] = ACTIONS(903), + [anon_sym_u32] = ACTIONS(903), + [anon_sym_i32] = ACTIONS(903), + [anon_sym_u64] = ACTIONS(903), + [anon_sym_i64] = ACTIONS(903), + [anon_sym_u128] = ACTIONS(903), + [anon_sym_i128] = ACTIONS(903), + [anon_sym_isize] = ACTIONS(903), + [anon_sym_usize] = ACTIONS(903), + [anon_sym_f32] = ACTIONS(903), + [anon_sym_f64] = ACTIONS(903), + [anon_sym_bool] = ACTIONS(903), + [anon_sym_str] = ACTIONS(903), + [anon_sym_char] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(903), + [anon_sym_PERCENT] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(903), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_PLUS_EQ] = ACTIONS(905), + [anon_sym_DASH_EQ] = ACTIONS(905), + [anon_sym_STAR_EQ] = ACTIONS(905), + [anon_sym_SLASH_EQ] = ACTIONS(905), + [anon_sym_PERCENT_EQ] = ACTIONS(905), + [anon_sym_CARET_EQ] = ACTIONS(905), + [anon_sym_AMP_EQ] = ACTIONS(905), + [anon_sym_PIPE_EQ] = ACTIONS(905), + [anon_sym_LT_LT_EQ] = ACTIONS(905), + [anon_sym_GT_GT_EQ] = ACTIONS(905), + [anon_sym_EQ] = ACTIONS(903), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_BANG_EQ] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_LT] = ACTIONS(903), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_AT] = ACTIONS(905), + [anon_sym__] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(905), + [anon_sym_COMMA] = ACTIONS(905), + [anon_sym_COLON_COLON] = ACTIONS(905), + [anon_sym_DASH_GT] = ACTIONS(905), + [anon_sym_POUND] = ACTIONS(905), + [anon_sym_SQUOTE] = ACTIONS(903), + [anon_sym_as] = ACTIONS(903), + [anon_sym_async] = ACTIONS(903), + [anon_sym_await] = ACTIONS(903), + [anon_sym_break] = ACTIONS(903), + [anon_sym_const] = ACTIONS(903), + [anon_sym_continue] = ACTIONS(903), + [anon_sym_default] = ACTIONS(903), + [anon_sym_enum] = ACTIONS(903), + [anon_sym_fn] = ACTIONS(903), + [anon_sym_for] = ACTIONS(903), + [anon_sym_gen] = ACTIONS(903), + [anon_sym_if] = ACTIONS(903), + [anon_sym_impl] = ACTIONS(903), + [anon_sym_let] = ACTIONS(903), + [anon_sym_loop] = ACTIONS(903), + [anon_sym_match] = ACTIONS(903), + [anon_sym_mod] = ACTIONS(903), + [anon_sym_pub] = ACTIONS(903), + [anon_sym_return] = ACTIONS(903), + [anon_sym_static] = ACTIONS(903), + [anon_sym_struct] = ACTIONS(903), + [anon_sym_trait] = ACTIONS(903), + [anon_sym_type] = ACTIONS(903), + [anon_sym_union] = ACTIONS(903), + [anon_sym_unsafe] = ACTIONS(903), + [anon_sym_use] = ACTIONS(903), + [anon_sym_where] = ACTIONS(903), + [anon_sym_while] = ACTIONS(903), + [sym_mutable_specifier] = ACTIONS(903), + [sym_integer_literal] = ACTIONS(905), + [aux_sym_string_literal_token1] = ACTIONS(905), + [sym_char_literal] = ACTIONS(905), + [anon_sym_true] = ACTIONS(903), + [anon_sym_false] = ACTIONS(903), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(903), + [sym_super] = ACTIONS(903), + [sym_crate] = ACTIONS(903), + [sym_metavariable] = ACTIONS(905), + [sym__raw_string_literal_start] = ACTIONS(905), + [sym_float_literal] = ACTIONS(905), + }, + [STATE(147)] = { + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [sym_identifier] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_RBRACK] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_EQ_GT] = ACTIONS(909), + [anon_sym_COLON] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_QMARK] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(907), + [anon_sym_i8] = ACTIONS(907), + [anon_sym_u16] = ACTIONS(907), + [anon_sym_i16] = ACTIONS(907), + [anon_sym_u32] = ACTIONS(907), + [anon_sym_i32] = ACTIONS(907), + [anon_sym_u64] = ACTIONS(907), + [anon_sym_i64] = ACTIONS(907), + [anon_sym_u128] = ACTIONS(907), + [anon_sym_i128] = ACTIONS(907), + [anon_sym_isize] = ACTIONS(907), + [anon_sym_usize] = ACTIONS(907), + [anon_sym_f32] = ACTIONS(907), + [anon_sym_f64] = ACTIONS(907), + [anon_sym_bool] = ACTIONS(907), + [anon_sym_str] = ACTIONS(907), + [anon_sym_char] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_PERCENT] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE_PIPE] = ACTIONS(909), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS_EQ] = ACTIONS(909), + [anon_sym_DASH_EQ] = ACTIONS(909), + [anon_sym_STAR_EQ] = ACTIONS(909), + [anon_sym_SLASH_EQ] = ACTIONS(909), + [anon_sym_PERCENT_EQ] = ACTIONS(909), + [anon_sym_CARET_EQ] = ACTIONS(909), + [anon_sym_AMP_EQ] = ACTIONS(909), + [anon_sym_PIPE_EQ] = ACTIONS(909), + [anon_sym_LT_LT_EQ] = ACTIONS(909), + [anon_sym_GT_GT_EQ] = ACTIONS(909), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_AT] = ACTIONS(909), + [anon_sym__] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(909), + [anon_sym_COMMA] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(909), + [anon_sym_DASH_GT] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(909), + [anon_sym_SQUOTE] = ACTIONS(907), + [anon_sym_as] = ACTIONS(907), + [anon_sym_async] = ACTIONS(907), + [anon_sym_await] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_const] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_default] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(907), + [anon_sym_fn] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_gen] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_impl] = ACTIONS(907), + [anon_sym_let] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_mod] = ACTIONS(907), + [anon_sym_pub] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_static] = ACTIONS(907), + [anon_sym_struct] = ACTIONS(907), + [anon_sym_trait] = ACTIONS(907), + [anon_sym_type] = ACTIONS(907), + [anon_sym_union] = ACTIONS(907), + [anon_sym_unsafe] = ACTIONS(907), + [anon_sym_use] = ACTIONS(907), + [anon_sym_where] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [sym_mutable_specifier] = ACTIONS(907), + [sym_integer_literal] = ACTIONS(909), + [aux_sym_string_literal_token1] = ACTIONS(909), + [sym_char_literal] = ACTIONS(909), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(907), + [sym_super] = ACTIONS(907), + [sym_crate] = ACTIONS(907), + [sym_metavariable] = ACTIONS(909), + [sym__raw_string_literal_start] = ACTIONS(909), + [sym_float_literal] = ACTIONS(909), + }, [STATE(148)] = { [sym_line_comment] = STATE(148), [sym_block_comment] = STATE(148), + [sym_identifier] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_RBRACK] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_EQ_GT] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(863), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(863), + [anon_sym_STAR] = ACTIONS(863), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_u8] = ACTIONS(863), + [anon_sym_i8] = ACTIONS(863), + [anon_sym_u16] = ACTIONS(863), + [anon_sym_i16] = ACTIONS(863), + [anon_sym_u32] = ACTIONS(863), + [anon_sym_i32] = ACTIONS(863), + [anon_sym_u64] = ACTIONS(863), + [anon_sym_i64] = ACTIONS(863), + [anon_sym_u128] = ACTIONS(863), + [anon_sym_i128] = ACTIONS(863), + [anon_sym_isize] = ACTIONS(863), + [anon_sym_usize] = ACTIONS(863), + [anon_sym_f32] = ACTIONS(863), + [anon_sym_f64] = ACTIONS(863), + [anon_sym_bool] = ACTIONS(863), + [anon_sym_str] = ACTIONS(863), + [anon_sym_char] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(863), + [anon_sym_SLASH] = ACTIONS(863), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_BANG] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_LT_LT] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(863), + [anon_sym_PLUS_EQ] = ACTIONS(865), + [anon_sym_DASH_EQ] = ACTIONS(865), + [anon_sym_STAR_EQ] = ACTIONS(865), + [anon_sym_SLASH_EQ] = ACTIONS(865), + [anon_sym_PERCENT_EQ] = ACTIONS(865), + [anon_sym_CARET_EQ] = ACTIONS(865), + [anon_sym_AMP_EQ] = ACTIONS(865), + [anon_sym_PIPE_EQ] = ACTIONS(865), + [anon_sym_LT_LT_EQ] = ACTIONS(865), + [anon_sym_GT_GT_EQ] = ACTIONS(865), + [anon_sym_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(865), + [anon_sym__] = ACTIONS(863), + [anon_sym_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT] = ACTIONS(863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_COLON_COLON] = ACTIONS(865), + [anon_sym_DASH_GT] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(863), + [anon_sym_as] = ACTIONS(863), + [anon_sym_async] = ACTIONS(863), + [anon_sym_await] = ACTIONS(863), + [anon_sym_break] = ACTIONS(863), + [anon_sym_const] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_enum] = ACTIONS(863), + [anon_sym_fn] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_gen] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_impl] = ACTIONS(863), + [anon_sym_let] = ACTIONS(863), + [anon_sym_loop] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(863), + [anon_sym_pub] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_static] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_trait] = ACTIONS(863), + [anon_sym_type] = ACTIONS(863), + [anon_sym_union] = ACTIONS(863), + [anon_sym_unsafe] = ACTIONS(863), + [anon_sym_use] = ACTIONS(863), + [anon_sym_where] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [sym_mutable_specifier] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(865), + [aux_sym_string_literal_token1] = ACTIONS(865), + [sym_char_literal] = ACTIONS(865), + [anon_sym_true] = ACTIONS(863), + [anon_sym_false] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(863), + [sym_super] = ACTIONS(863), + [sym_crate] = ACTIONS(863), + [sym_metavariable] = ACTIONS(865), + [sym__raw_string_literal_start] = ACTIONS(865), + [sym_float_literal] = ACTIONS(865), + }, + [STATE(149)] = { + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_RBRACK] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(913), + [anon_sym_COLON] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(911), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_QMARK] = ACTIONS(913), + [anon_sym_u8] = ACTIONS(911), + [anon_sym_i8] = ACTIONS(911), + [anon_sym_u16] = ACTIONS(911), + [anon_sym_i16] = ACTIONS(911), + [anon_sym_u32] = ACTIONS(911), + [anon_sym_i32] = ACTIONS(911), + [anon_sym_u64] = ACTIONS(911), + [anon_sym_i64] = ACTIONS(911), + [anon_sym_u128] = ACTIONS(911), + [anon_sym_i128] = ACTIONS(911), + [anon_sym_isize] = ACTIONS(911), + [anon_sym_usize] = ACTIONS(911), + [anon_sym_f32] = ACTIONS(911), + [anon_sym_f64] = ACTIONS(911), + [anon_sym_bool] = ACTIONS(911), + [anon_sym_str] = ACTIONS(911), + [anon_sym_char] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_PERCENT] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_AMP_AMP] = ACTIONS(913), + [anon_sym_PIPE_PIPE] = ACTIONS(913), + [anon_sym_LT_LT] = ACTIONS(911), + [anon_sym_GT_GT] = ACTIONS(911), + [anon_sym_PLUS_EQ] = ACTIONS(913), + [anon_sym_DASH_EQ] = ACTIONS(913), + [anon_sym_STAR_EQ] = ACTIONS(913), + [anon_sym_SLASH_EQ] = ACTIONS(913), + [anon_sym_PERCENT_EQ] = ACTIONS(913), + [anon_sym_CARET_EQ] = ACTIONS(913), + [anon_sym_AMP_EQ] = ACTIONS(913), + [anon_sym_PIPE_EQ] = ACTIONS(913), + [anon_sym_LT_LT_EQ] = ACTIONS(913), + [anon_sym_GT_GT_EQ] = ACTIONS(913), + [anon_sym_EQ] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_AT] = ACTIONS(913), + [anon_sym__] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym_DASH_GT] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(913), + [anon_sym_SQUOTE] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_async] = ACTIONS(911), + [anon_sym_await] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_default] = ACTIONS(911), + [anon_sym_enum] = ACTIONS(911), + [anon_sym_fn] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_gen] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_impl] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_pub] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_static] = ACTIONS(911), + [anon_sym_struct] = ACTIONS(911), + [anon_sym_trait] = ACTIONS(911), + [anon_sym_type] = ACTIONS(911), + [anon_sym_union] = ACTIONS(911), + [anon_sym_unsafe] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_where] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [sym_mutable_specifier] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(913), + [aux_sym_string_literal_token1] = ACTIONS(913), + [sym_char_literal] = ACTIONS(913), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(911), + [sym_super] = ACTIONS(911), + [sym_crate] = ACTIONS(911), + [sym_metavariable] = ACTIONS(913), + [sym__raw_string_literal_start] = ACTIONS(913), + [sym_float_literal] = ACTIONS(913), + }, + [STATE(150)] = { + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [sym_identifier] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(869), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_RBRACK] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_EQ_GT] = ACTIONS(869), + [anon_sym_COLON] = ACTIONS(867), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(869), + [anon_sym_u8] = ACTIONS(867), + [anon_sym_i8] = ACTIONS(867), + [anon_sym_u16] = ACTIONS(867), + [anon_sym_i16] = ACTIONS(867), + [anon_sym_u32] = ACTIONS(867), + [anon_sym_i32] = ACTIONS(867), + [anon_sym_u64] = ACTIONS(867), + [anon_sym_i64] = ACTIONS(867), + [anon_sym_u128] = ACTIONS(867), + [anon_sym_i128] = ACTIONS(867), + [anon_sym_isize] = ACTIONS(867), + [anon_sym_usize] = ACTIONS(867), + [anon_sym_f32] = ACTIONS(867), + [anon_sym_f64] = ACTIONS(867), + [anon_sym_bool] = ACTIONS(867), + [anon_sym_str] = ACTIONS(867), + [anon_sym_char] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_AMP] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_AMP_AMP] = ACTIONS(869), + [anon_sym_PIPE_PIPE] = ACTIONS(869), + [anon_sym_LT_LT] = ACTIONS(867), + [anon_sym_GT_GT] = ACTIONS(867), + [anon_sym_PLUS_EQ] = ACTIONS(869), + [anon_sym_DASH_EQ] = ACTIONS(869), + [anon_sym_STAR_EQ] = ACTIONS(869), + [anon_sym_SLASH_EQ] = ACTIONS(869), + [anon_sym_PERCENT_EQ] = ACTIONS(869), + [anon_sym_CARET_EQ] = ACTIONS(869), + [anon_sym_AMP_EQ] = ACTIONS(869), + [anon_sym_PIPE_EQ] = ACTIONS(869), + [anon_sym_LT_LT_EQ] = ACTIONS(869), + [anon_sym_GT_GT_EQ] = ACTIONS(869), + [anon_sym_EQ] = ACTIONS(867), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_AT] = ACTIONS(869), + [anon_sym__] = ACTIONS(867), + [anon_sym_DOT] = ACTIONS(867), + [anon_sym_DOT_DOT] = ACTIONS(867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_COLON_COLON] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(869), + [anon_sym_POUND] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_as] = ACTIONS(867), + [anon_sym_async] = ACTIONS(867), + [anon_sym_await] = ACTIONS(867), + [anon_sym_break] = ACTIONS(867), + [anon_sym_const] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_default] = ACTIONS(867), + [anon_sym_enum] = ACTIONS(867), + [anon_sym_fn] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_gen] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_impl] = ACTIONS(867), + [anon_sym_let] = ACTIONS(867), + [anon_sym_loop] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mod] = ACTIONS(867), + [anon_sym_pub] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_static] = ACTIONS(867), + [anon_sym_struct] = ACTIONS(867), + [anon_sym_trait] = ACTIONS(867), + [anon_sym_type] = ACTIONS(867), + [anon_sym_union] = ACTIONS(867), + [anon_sym_unsafe] = ACTIONS(867), + [anon_sym_use] = ACTIONS(867), + [anon_sym_where] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [sym_mutable_specifier] = ACTIONS(867), + [sym_integer_literal] = ACTIONS(869), + [aux_sym_string_literal_token1] = ACTIONS(869), + [sym_char_literal] = ACTIONS(869), + [anon_sym_true] = ACTIONS(867), + [anon_sym_false] = ACTIONS(867), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(867), + [sym_super] = ACTIONS(867), + [sym_crate] = ACTIONS(867), + [sym_metavariable] = ACTIONS(869), + [sym__raw_string_literal_start] = ACTIONS(869), + [sym_float_literal] = ACTIONS(869), + }, + [STATE(151)] = { + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), [sym_identifier] = ACTIONS(915), [anon_sym_SEMI] = ACTIONS(917), [anon_sym_LPAREN] = ACTIONS(917), @@ -34023,9 +34447,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(917), [sym_float_literal] = ACTIONS(917), }, - [STATE(149)] = { - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), + [STATE(152)] = { + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), [sym_identifier] = ACTIONS(919), [anon_sym_SEMI] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(921), @@ -34139,455 +34563,107 @@ 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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1805), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), - [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(929), - [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(153)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(3072), + [sym__let_chain] = STATE(3073), + [sym__condition] = STATE(2792), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(153), [sym_block_comment] = STATE(153), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -34596,16 +34672,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(154)] = { [sym_line_comment] = STATE(154), [sym_block_comment] = STATE(154), + [sym_identifier] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(869), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_RBRACK] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_EQ_GT] = ACTIONS(869), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(867), + [anon_sym_PLUS] = ACTIONS(867), + [anon_sym_STAR] = ACTIONS(867), + [anon_sym_QMARK] = ACTIONS(869), + [anon_sym_u8] = ACTIONS(867), + [anon_sym_i8] = ACTIONS(867), + [anon_sym_u16] = ACTIONS(867), + [anon_sym_i16] = ACTIONS(867), + [anon_sym_u32] = ACTIONS(867), + [anon_sym_i32] = ACTIONS(867), + [anon_sym_u64] = ACTIONS(867), + [anon_sym_i64] = ACTIONS(867), + [anon_sym_u128] = ACTIONS(867), + [anon_sym_i128] = ACTIONS(867), + [anon_sym_isize] = ACTIONS(867), + [anon_sym_usize] = ACTIONS(867), + [anon_sym_f32] = ACTIONS(867), + [anon_sym_f64] = ACTIONS(867), + [anon_sym_bool] = ACTIONS(867), + [anon_sym_str] = ACTIONS(867), + [anon_sym_char] = ACTIONS(867), + [anon_sym_DASH] = ACTIONS(867), + [anon_sym_SLASH] = ACTIONS(867), + [anon_sym_PERCENT] = ACTIONS(867), + [anon_sym_CARET] = ACTIONS(867), + [anon_sym_BANG] = ACTIONS(867), + [anon_sym_AMP] = ACTIONS(867), + [anon_sym_PIPE] = ACTIONS(867), + [anon_sym_AMP_AMP] = ACTIONS(869), + [anon_sym_PIPE_PIPE] = ACTIONS(869), + [anon_sym_LT_LT] = ACTIONS(867), + [anon_sym_GT_GT] = ACTIONS(867), + [anon_sym_PLUS_EQ] = ACTIONS(869), + [anon_sym_DASH_EQ] = ACTIONS(869), + [anon_sym_STAR_EQ] = ACTIONS(869), + [anon_sym_SLASH_EQ] = ACTIONS(869), + [anon_sym_PERCENT_EQ] = ACTIONS(869), + [anon_sym_CARET_EQ] = ACTIONS(869), + [anon_sym_AMP_EQ] = ACTIONS(869), + [anon_sym_PIPE_EQ] = ACTIONS(869), + [anon_sym_LT_LT_EQ] = ACTIONS(869), + [anon_sym_GT_GT_EQ] = ACTIONS(869), + [anon_sym_EQ] = ACTIONS(867), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(867), + [anon_sym_LT] = ACTIONS(867), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_AT] = ACTIONS(869), + [anon_sym__] = ACTIONS(867), + [anon_sym_DOT] = ACTIONS(867), + [anon_sym_DOT_DOT] = ACTIONS(867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_COLON_COLON] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(869), + [anon_sym_POUND] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(867), + [anon_sym_as] = ACTIONS(867), + [anon_sym_async] = ACTIONS(867), + [anon_sym_await] = ACTIONS(867), + [anon_sym_break] = ACTIONS(867), + [anon_sym_const] = ACTIONS(867), + [anon_sym_continue] = ACTIONS(867), + [anon_sym_default] = ACTIONS(867), + [anon_sym_enum] = ACTIONS(867), + [anon_sym_fn] = ACTIONS(867), + [anon_sym_for] = ACTIONS(867), + [anon_sym_gen] = ACTIONS(867), + [anon_sym_if] = ACTIONS(867), + [anon_sym_impl] = ACTIONS(867), + [anon_sym_let] = ACTIONS(867), + [anon_sym_loop] = ACTIONS(867), + [anon_sym_match] = ACTIONS(867), + [anon_sym_mod] = ACTIONS(867), + [anon_sym_pub] = ACTIONS(867), + [anon_sym_return] = ACTIONS(867), + [anon_sym_static] = ACTIONS(867), + [anon_sym_struct] = ACTIONS(867), + [anon_sym_trait] = ACTIONS(867), + [anon_sym_type] = ACTIONS(867), + [anon_sym_union] = ACTIONS(867), + [anon_sym_unsafe] = ACTIONS(867), + [anon_sym_use] = ACTIONS(867), + [anon_sym_where] = ACTIONS(867), + [anon_sym_while] = ACTIONS(867), + [sym_mutable_specifier] = ACTIONS(867), + [sym_integer_literal] = ACTIONS(869), + [aux_sym_string_literal_token1] = ACTIONS(869), + [sym_char_literal] = ACTIONS(869), + [anon_sym_true] = ACTIONS(867), + [anon_sym_false] = ACTIONS(867), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(867), + [sym_super] = ACTIONS(867), + [sym_crate] = ACTIONS(867), + [sym_metavariable] = ACTIONS(869), + [sym__raw_string_literal_start] = ACTIONS(869), + [sym_float_literal] = ACTIONS(869), + }, + [STATE(155)] = { + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), [sym_identifier] = ACTIONS(933), [anon_sym_SEMI] = ACTIONS(935), [anon_sym_LPAREN] = ACTIONS(935), @@ -34719,62 +34911,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(935), [sym_float_literal] = ACTIONS(935), }, - [STATE(155)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [STATE(156)] = { + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [sym_identifier] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_RPAREN] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_RBRACK] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_EQ_GT] = ACTIONS(939), + [anon_sym_COLON] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_STAR] = ACTIONS(937), + [anon_sym_QMARK] = ACTIONS(939), + [anon_sym_u8] = ACTIONS(937), + [anon_sym_i8] = ACTIONS(937), + [anon_sym_u16] = ACTIONS(937), + [anon_sym_i16] = ACTIONS(937), + [anon_sym_u32] = ACTIONS(937), + [anon_sym_i32] = ACTIONS(937), + [anon_sym_u64] = ACTIONS(937), + [anon_sym_i64] = ACTIONS(937), + [anon_sym_u128] = ACTIONS(937), + [anon_sym_i128] = ACTIONS(937), + [anon_sym_isize] = ACTIONS(937), + [anon_sym_usize] = ACTIONS(937), + [anon_sym_f32] = ACTIONS(937), + [anon_sym_f64] = ACTIONS(937), + [anon_sym_bool] = ACTIONS(937), + [anon_sym_str] = ACTIONS(937), + [anon_sym_char] = ACTIONS(937), + [anon_sym_DASH] = ACTIONS(937), + [anon_sym_SLASH] = ACTIONS(937), + [anon_sym_PERCENT] = ACTIONS(937), + [anon_sym_CARET] = ACTIONS(937), + [anon_sym_BANG] = ACTIONS(937), + [anon_sym_AMP] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_AMP_AMP] = ACTIONS(939), + [anon_sym_PIPE_PIPE] = ACTIONS(939), + [anon_sym_LT_LT] = ACTIONS(937), + [anon_sym_GT_GT] = ACTIONS(937), + [anon_sym_PLUS_EQ] = ACTIONS(939), + [anon_sym_DASH_EQ] = ACTIONS(939), + [anon_sym_STAR_EQ] = ACTIONS(939), + [anon_sym_SLASH_EQ] = ACTIONS(939), + [anon_sym_PERCENT_EQ] = ACTIONS(939), + [anon_sym_CARET_EQ] = ACTIONS(939), + [anon_sym_AMP_EQ] = ACTIONS(939), + [anon_sym_PIPE_EQ] = ACTIONS(939), + [anon_sym_LT_LT_EQ] = ACTIONS(939), + [anon_sym_GT_GT_EQ] = ACTIONS(939), + [anon_sym_EQ] = ACTIONS(937), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(937), + [anon_sym_LT] = ACTIONS(937), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_AT] = ACTIONS(939), + [anon_sym__] = ACTIONS(937), + [anon_sym_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(939), + [anon_sym_COLON_COLON] = ACTIONS(939), + [anon_sym_DASH_GT] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(939), + [anon_sym_SQUOTE] = ACTIONS(937), + [anon_sym_as] = ACTIONS(937), + [anon_sym_async] = ACTIONS(937), + [anon_sym_await] = ACTIONS(937), + [anon_sym_break] = ACTIONS(937), + [anon_sym_const] = ACTIONS(937), + [anon_sym_continue] = ACTIONS(937), + [anon_sym_default] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(937), + [anon_sym_fn] = ACTIONS(937), + [anon_sym_for] = ACTIONS(937), + [anon_sym_gen] = ACTIONS(937), + [anon_sym_if] = ACTIONS(937), + [anon_sym_impl] = ACTIONS(937), + [anon_sym_let] = ACTIONS(937), + [anon_sym_loop] = ACTIONS(937), + [anon_sym_match] = ACTIONS(937), + [anon_sym_mod] = ACTIONS(937), + [anon_sym_pub] = ACTIONS(937), + [anon_sym_return] = ACTIONS(937), + [anon_sym_static] = ACTIONS(937), + [anon_sym_struct] = ACTIONS(937), + [anon_sym_trait] = ACTIONS(937), + [anon_sym_type] = ACTIONS(937), + [anon_sym_union] = ACTIONS(937), + [anon_sym_unsafe] = ACTIONS(937), + [anon_sym_use] = ACTIONS(937), + [anon_sym_where] = ACTIONS(937), + [anon_sym_while] = ACTIONS(937), + [sym_mutable_specifier] = ACTIONS(937), + [sym_integer_literal] = ACTIONS(939), + [aux_sym_string_literal_token1] = ACTIONS(939), + [sym_char_literal] = ACTIONS(939), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(937), + [sym_super] = ACTIONS(937), + [sym_crate] = ACTIONS(937), + [sym_metavariable] = ACTIONS(939), + [sym__raw_string_literal_start] = ACTIONS(939), + [sym_float_literal] = ACTIONS(939), + }, + [STATE(157)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_RBRACK] = ACTIONS(941), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34835,294 +35143,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(156)] = { - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2583), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [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(158)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(158), [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(943), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(943), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35300,61 +35376,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(947), }, [STATE(160)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(160), [sym_block_comment] = STATE(160), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(949), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(949), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35416,124 +35492,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(161)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(161), [sym_block_comment] = STATE(161), - [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), + [aux_sym_enum_variant_list_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(951), + [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(162)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), + [aux_sym_enum_variant_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(163)] = { + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), [sym_identifier] = ACTIONS(955), [anon_sym_SEMI] = ACTIONS(957), [anon_sym_LPAREN] = ACTIONS(957), @@ -35647,178 +35839,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(164), [sym_block_comment] = STATE(164), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(959), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(963), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35880,61 +35956,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(165)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), [sym_line_comment] = STATE(165), [sym_block_comment] = STATE(165), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(961), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_RBRACK] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_EQ_GT] = ACTIONS(963), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_u8] = ACTIONS(961), + [anon_sym_i8] = ACTIONS(961), + [anon_sym_u16] = ACTIONS(961), + [anon_sym_i16] = ACTIONS(961), + [anon_sym_u32] = ACTIONS(961), + [anon_sym_i32] = ACTIONS(961), + [anon_sym_u64] = ACTIONS(961), + [anon_sym_i64] = ACTIONS(961), + [anon_sym_u128] = ACTIONS(961), + [anon_sym_i128] = ACTIONS(961), + [anon_sym_isize] = ACTIONS(961), + [anon_sym_usize] = ACTIONS(961), + [anon_sym_f32] = ACTIONS(961), + [anon_sym_f64] = ACTIONS(961), + [anon_sym_bool] = ACTIONS(961), + [anon_sym_str] = ACTIONS(961), + [anon_sym_char] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(961), + [anon_sym_PIPE] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(963), + [anon_sym_PIPE_PIPE] = ACTIONS(963), + [anon_sym_LT_LT] = ACTIONS(961), + [anon_sym_GT_GT] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_PERCENT_EQ] = ACTIONS(963), + [anon_sym_CARET_EQ] = ACTIONS(963), + [anon_sym_AMP_EQ] = ACTIONS(963), + [anon_sym_PIPE_EQ] = ACTIONS(963), + [anon_sym_LT_LT_EQ] = ACTIONS(963), + [anon_sym_GT_GT_EQ] = ACTIONS(963), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(963), + [anon_sym_LT_EQ] = ACTIONS(963), + [anon_sym_AT] = ACTIONS(963), + [anon_sym__] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_COLON_COLON] = ACTIONS(963), + [anon_sym_DASH_GT] = ACTIONS(963), + [anon_sym_POUND] = ACTIONS(963), + [anon_sym_SQUOTE] = ACTIONS(961), + [anon_sym_as] = ACTIONS(961), + [anon_sym_async] = ACTIONS(961), + [anon_sym_await] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_default] = ACTIONS(961), + [anon_sym_enum] = ACTIONS(961), + [anon_sym_fn] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_gen] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_impl] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_loop] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_mod] = ACTIONS(961), + [anon_sym_pub] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_static] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_trait] = ACTIONS(961), + [anon_sym_type] = ACTIONS(961), + [anon_sym_union] = ACTIONS(961), + [anon_sym_unsafe] = ACTIONS(961), + [anon_sym_use] = ACTIONS(961), + [anon_sym_where] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [sym_mutable_specifier] = ACTIONS(961), + [sym_integer_literal] = ACTIONS(963), + [aux_sym_string_literal_token1] = ACTIONS(963), + [sym_char_literal] = ACTIONS(963), + [anon_sym_true] = ACTIONS(961), + [anon_sym_false] = ACTIONS(961), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_crate] = ACTIONS(961), + [sym_metavariable] = ACTIONS(963), + [sym__raw_string_literal_start] = ACTIONS(963), + [sym_float_literal] = ACTIONS(963), + }, + [STATE(166)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(965), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(965), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35995,9 +36187,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(166)] = { - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), + [STATE(167)] = { + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), [sym_identifier] = ACTIONS(967), [anon_sym_SEMI] = ACTIONS(969), [anon_sym_LPAREN] = ACTIONS(969), @@ -36111,9 +36303,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(969), [sym_float_literal] = ACTIONS(969), }, - [STATE(167)] = { - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), + [STATE(168)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(3072), + [sym__let_chain] = STATE(3073), + [sym__condition] = STATE(2592), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(169)] = { + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), [sym_identifier] = ACTIONS(971), [anon_sym_SEMI] = ACTIONS(973), [anon_sym_LPAREN] = ACTIONS(973), @@ -36227,178 +36535,178 @@ 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(168)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(975), - [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(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(169)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [STATE(171)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(977), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(979), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36459,180 +36767,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(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(172)] = { + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [aux_sym__non_special_token_repeat1] = STATE(172), + [sym_identifier] = ACTIONS(887), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_RPAREN] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(892), + [anon_sym_RBRACK] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_QMARK] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(887), + [anon_sym_i8] = ACTIONS(887), + [anon_sym_u16] = ACTIONS(887), + [anon_sym_i16] = ACTIONS(887), + [anon_sym_u32] = ACTIONS(887), + [anon_sym_i32] = ACTIONS(887), + [anon_sym_u64] = ACTIONS(887), + [anon_sym_i64] = ACTIONS(887), + [anon_sym_u128] = ACTIONS(887), + [anon_sym_i128] = ACTIONS(887), + [anon_sym_isize] = ACTIONS(887), + [anon_sym_usize] = ACTIONS(887), + [anon_sym_f32] = ACTIONS(887), + [anon_sym_f64] = ACTIONS(887), + [anon_sym_bool] = ACTIONS(887), + [anon_sym_str] = ACTIONS(887), + [anon_sym_char] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_PERCENT] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(984), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(981), + [anon_sym_DASH_EQ] = ACTIONS(981), + [anon_sym_STAR_EQ] = ACTIONS(981), + [anon_sym_SLASH_EQ] = ACTIONS(981), + [anon_sym_PERCENT_EQ] = ACTIONS(981), + [anon_sym_CARET_EQ] = ACTIONS(981), + [anon_sym_AMP_EQ] = ACTIONS(981), + [anon_sym_PIPE_EQ] = ACTIONS(981), + [anon_sym_LT_LT_EQ] = ACTIONS(981), + [anon_sym_GT_GT_EQ] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [anon_sym__] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_COLON_COLON] = ACTIONS(981), + [anon_sym_DASH_GT] = ACTIONS(981), + [anon_sym_POUND] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(887), + [anon_sym_as] = ACTIONS(887), + [anon_sym_async] = ACTIONS(887), + [anon_sym_await] = ACTIONS(887), + [anon_sym_break] = ACTIONS(887), + [anon_sym_const] = ACTIONS(887), + [anon_sym_continue] = ACTIONS(887), + [anon_sym_default] = ACTIONS(887), + [anon_sym_enum] = ACTIONS(887), + [anon_sym_fn] = ACTIONS(887), + [anon_sym_for] = ACTIONS(887), + [anon_sym_gen] = ACTIONS(887), + [anon_sym_if] = ACTIONS(887), + [anon_sym_impl] = ACTIONS(887), + [anon_sym_let] = ACTIONS(887), + [anon_sym_loop] = ACTIONS(887), + [anon_sym_match] = ACTIONS(887), + [anon_sym_mod] = ACTIONS(887), + [anon_sym_pub] = ACTIONS(887), + [anon_sym_return] = ACTIONS(887), + [anon_sym_static] = ACTIONS(887), + [anon_sym_struct] = ACTIONS(887), + [anon_sym_trait] = ACTIONS(887), + [anon_sym_type] = ACTIONS(887), + [anon_sym_union] = ACTIONS(887), + [anon_sym_unsafe] = ACTIONS(887), + [anon_sym_use] = ACTIONS(887), + [anon_sym_where] = ACTIONS(887), + [anon_sym_while] = ACTIONS(887), + [sym_mutable_specifier] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(892), + [aux_sym_string_literal_token1] = ACTIONS(892), + [sym_char_literal] = ACTIONS(892), + [anon_sym_true] = ACTIONS(887), + [anon_sym_false] = ACTIONS(887), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(887), + [sym_super] = ACTIONS(887), + [sym_crate] = ACTIONS(887), + [sym__raw_string_literal_start] = ACTIONS(892), + [sym_float_literal] = ACTIONS(892), }, - [STATE(171)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1926), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_let_condition] = STATE(3339), - [sym__let_chain] = STATE(3340), - [sym__condition] = STATE(3542), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), + [STATE(173)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [aux_sym_enum_variant_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(174)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1927), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_let_condition] = STATE(3162), + [sym__let_chain] = STATE(3165), + [sym__condition] = STATE(3509), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -36650,12 +37074,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(983), + [anon_sym_DOT_DOT] = ACTIONS(993), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -36666,7 +37090,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_let] = ACTIONS(995), [anon_sym_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -36691,61 +37115,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(172)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [STATE(175)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(997), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -36807,107 +37231,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(173)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2570), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [sym_identifier] = ACTIONS(467), + [STATE(176)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [aux_sym_enum_variant_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [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(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(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_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -36916,417 +37340,301 @@ 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(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), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(991), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_LBRACE] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_EQ_GT] = ACTIONS(991), - [anon_sym_COLON] = ACTIONS(989), - [anon_sym_DOLLAR] = ACTIONS(989), - [anon_sym_PLUS] = ACTIONS(989), - [anon_sym_STAR] = ACTIONS(989), - [anon_sym_QMARK] = ACTIONS(991), - [anon_sym_u8] = ACTIONS(989), - [anon_sym_i8] = ACTIONS(989), - [anon_sym_u16] = ACTIONS(989), - [anon_sym_i16] = ACTIONS(989), - [anon_sym_u32] = ACTIONS(989), - [anon_sym_i32] = ACTIONS(989), - [anon_sym_u64] = ACTIONS(989), - [anon_sym_i64] = ACTIONS(989), - [anon_sym_u128] = ACTIONS(989), - [anon_sym_i128] = ACTIONS(989), - [anon_sym_isize] = ACTIONS(989), - [anon_sym_usize] = ACTIONS(989), - [anon_sym_f32] = ACTIONS(989), - [anon_sym_f64] = ACTIONS(989), - [anon_sym_bool] = ACTIONS(989), - [anon_sym_str] = ACTIONS(989), - [anon_sym_char] = ACTIONS(989), - [anon_sym_DASH] = ACTIONS(989), - [anon_sym_SLASH] = ACTIONS(989), - [anon_sym_PERCENT] = ACTIONS(989), - [anon_sym_CARET] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), - [anon_sym_AMP] = ACTIONS(989), - [anon_sym_PIPE] = ACTIONS(989), - [anon_sym_AMP_AMP] = ACTIONS(991), - [anon_sym_PIPE_PIPE] = ACTIONS(991), - [anon_sym_LT_LT] = ACTIONS(989), - [anon_sym_GT_GT] = ACTIONS(989), - [anon_sym_PLUS_EQ] = ACTIONS(991), - [anon_sym_DASH_EQ] = ACTIONS(991), - [anon_sym_STAR_EQ] = ACTIONS(991), - [anon_sym_SLASH_EQ] = ACTIONS(991), - [anon_sym_PERCENT_EQ] = ACTIONS(991), - [anon_sym_CARET_EQ] = ACTIONS(991), - [anon_sym_AMP_EQ] = ACTIONS(991), - [anon_sym_PIPE_EQ] = ACTIONS(991), - [anon_sym_LT_LT_EQ] = ACTIONS(991), - [anon_sym_GT_GT_EQ] = ACTIONS(991), - [anon_sym_EQ] = ACTIONS(989), - [anon_sym_EQ_EQ] = ACTIONS(991), - [anon_sym_BANG_EQ] = ACTIONS(991), - [anon_sym_GT] = ACTIONS(989), - [anon_sym_LT] = ACTIONS(989), - [anon_sym_GT_EQ] = ACTIONS(991), - [anon_sym_LT_EQ] = ACTIONS(991), - [anon_sym_AT] = ACTIONS(991), - [anon_sym__] = ACTIONS(989), - [anon_sym_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT] = ACTIONS(989), - [anon_sym_DOT_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_COLON_COLON] = ACTIONS(991), - [anon_sym_DASH_GT] = ACTIONS(991), - [anon_sym_POUND] = ACTIONS(991), - [anon_sym_SQUOTE] = ACTIONS(989), - [anon_sym_as] = ACTIONS(989), - [anon_sym_async] = ACTIONS(989), - [anon_sym_await] = ACTIONS(989), - [anon_sym_break] = ACTIONS(989), - [anon_sym_const] = ACTIONS(989), - [anon_sym_continue] = ACTIONS(989), - [anon_sym_default] = ACTIONS(989), - [anon_sym_enum] = ACTIONS(989), - [anon_sym_fn] = ACTIONS(989), - [anon_sym_for] = ACTIONS(989), - [anon_sym_gen] = ACTIONS(989), - [anon_sym_if] = ACTIONS(989), - [anon_sym_impl] = ACTIONS(989), - [anon_sym_let] = ACTIONS(989), - [anon_sym_loop] = ACTIONS(989), - [anon_sym_match] = ACTIONS(989), - [anon_sym_mod] = ACTIONS(989), - [anon_sym_pub] = ACTIONS(989), - [anon_sym_return] = ACTIONS(989), - [anon_sym_static] = ACTIONS(989), - [anon_sym_struct] = ACTIONS(989), - [anon_sym_trait] = ACTIONS(989), - [anon_sym_type] = ACTIONS(989), - [anon_sym_union] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(989), - [anon_sym_use] = ACTIONS(989), - [anon_sym_where] = ACTIONS(989), - [anon_sym_while] = ACTIONS(989), - [sym_mutable_specifier] = ACTIONS(989), - [sym_integer_literal] = ACTIONS(991), - [aux_sym_string_literal_token1] = ACTIONS(991), - [sym_char_literal] = ACTIONS(991), - [anon_sym_true] = ACTIONS(989), - [anon_sym_false] = ACTIONS(989), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(989), - [sym_super] = ACTIONS(989), - [sym_crate] = ACTIONS(989), - [sym_metavariable] = ACTIONS(991), - [sym__raw_string_literal_start] = ACTIONS(991), - [sym_float_literal] = ACTIONS(991), - }, - [STATE(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(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(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(177)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), [sym_line_comment] = STATE(177), [sym_block_comment] = STATE(177), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(1001), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1003), + [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_EQ_GT] = ACTIONS(1003), + [anon_sym_COLON] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_u8] = ACTIONS(1001), + [anon_sym_i8] = ACTIONS(1001), + [anon_sym_u16] = ACTIONS(1001), + [anon_sym_i16] = ACTIONS(1001), + [anon_sym_u32] = ACTIONS(1001), + [anon_sym_i32] = ACTIONS(1001), + [anon_sym_u64] = ACTIONS(1001), + [anon_sym_i64] = ACTIONS(1001), + [anon_sym_u128] = ACTIONS(1001), + [anon_sym_i128] = ACTIONS(1001), + [anon_sym_isize] = ACTIONS(1001), + [anon_sym_usize] = ACTIONS(1001), + [anon_sym_f32] = ACTIONS(1001), + [anon_sym_f64] = ACTIONS(1001), + [anon_sym_bool] = ACTIONS(1001), + [anon_sym_str] = ACTIONS(1001), + [anon_sym_char] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1001), + [anon_sym_PERCENT] = ACTIONS(1001), + [anon_sym_CARET] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1001), + [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_PLUS_EQ] = ACTIONS(1003), + [anon_sym_DASH_EQ] = ACTIONS(1003), + [anon_sym_STAR_EQ] = ACTIONS(1003), + [anon_sym_SLASH_EQ] = ACTIONS(1003), + [anon_sym_PERCENT_EQ] = ACTIONS(1003), + [anon_sym_CARET_EQ] = ACTIONS(1003), + [anon_sym_AMP_EQ] = ACTIONS(1003), + [anon_sym_PIPE_EQ] = ACTIONS(1003), + [anon_sym_LT_LT_EQ] = ACTIONS(1003), + [anon_sym_GT_GT_EQ] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1001), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1001), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym__] = ACTIONS(1001), + [anon_sym_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_COLON_COLON] = ACTIONS(1003), + [anon_sym_DASH_GT] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_as] = ACTIONS(1001), + [anon_sym_async] = ACTIONS(1001), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_continue] = ACTIONS(1001), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1001), + [anon_sym_fn] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1001), + [anon_sym_gen] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_impl] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1001), + [anon_sym_loop] = ACTIONS(1001), + [anon_sym_match] = ACTIONS(1001), + [anon_sym_mod] = ACTIONS(1001), + [anon_sym_pub] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1001), + [anon_sym_static] = ACTIONS(1001), + [anon_sym_struct] = ACTIONS(1001), + [anon_sym_trait] = ACTIONS(1001), + [anon_sym_type] = ACTIONS(1001), + [anon_sym_union] = ACTIONS(1001), + [anon_sym_unsafe] = ACTIONS(1001), + [anon_sym_use] = ACTIONS(1001), + [anon_sym_where] = ACTIONS(1001), + [anon_sym_while] = ACTIONS(1001), + [sym_mutable_specifier] = ACTIONS(1001), + [sym_integer_literal] = ACTIONS(1003), + [aux_sym_string_literal_token1] = ACTIONS(1003), + [sym_char_literal] = ACTIONS(1003), + [anon_sym_true] = ACTIONS(1001), + [anon_sym_false] = ACTIONS(1001), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1001), + [sym_super] = ACTIONS(1001), + [sym_crate] = ACTIONS(1001), + [sym_metavariable] = ACTIONS(1003), + [sym__raw_string_literal_start] = ACTIONS(1003), + [sym_float_literal] = ACTIONS(1003), + }, + [STATE(178)] = { + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [sym_identifier] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1007), + [anon_sym_LPAREN] = ACTIONS(1007), + [anon_sym_RPAREN] = ACTIONS(1007), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_RBRACK] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1007), + [anon_sym_RBRACE] = ACTIONS(1007), + [anon_sym_EQ_GT] = ACTIONS(1007), + [anon_sym_COLON] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1005), + [anon_sym_QMARK] = ACTIONS(1007), + [anon_sym_u8] = ACTIONS(1005), + [anon_sym_i8] = ACTIONS(1005), + [anon_sym_u16] = ACTIONS(1005), + [anon_sym_i16] = ACTIONS(1005), + [anon_sym_u32] = ACTIONS(1005), + [anon_sym_i32] = ACTIONS(1005), + [anon_sym_u64] = ACTIONS(1005), + [anon_sym_i64] = ACTIONS(1005), + [anon_sym_u128] = ACTIONS(1005), + [anon_sym_i128] = ACTIONS(1005), + [anon_sym_isize] = ACTIONS(1005), + [anon_sym_usize] = ACTIONS(1005), + [anon_sym_f32] = ACTIONS(1005), + [anon_sym_f64] = ACTIONS(1005), + [anon_sym_bool] = ACTIONS(1005), + [anon_sym_str] = ACTIONS(1005), + [anon_sym_char] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_SLASH] = ACTIONS(1005), + [anon_sym_PERCENT] = ACTIONS(1005), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_AMP] = ACTIONS(1005), + [anon_sym_PIPE] = ACTIONS(1005), + [anon_sym_AMP_AMP] = ACTIONS(1007), + [anon_sym_PIPE_PIPE] = ACTIONS(1007), + [anon_sym_LT_LT] = ACTIONS(1005), + [anon_sym_GT_GT] = ACTIONS(1005), + [anon_sym_PLUS_EQ] = ACTIONS(1007), + [anon_sym_DASH_EQ] = ACTIONS(1007), + [anon_sym_STAR_EQ] = ACTIONS(1007), + [anon_sym_SLASH_EQ] = ACTIONS(1007), + [anon_sym_PERCENT_EQ] = ACTIONS(1007), + [anon_sym_CARET_EQ] = ACTIONS(1007), + [anon_sym_AMP_EQ] = ACTIONS(1007), + [anon_sym_PIPE_EQ] = ACTIONS(1007), + [anon_sym_LT_LT_EQ] = ACTIONS(1007), + [anon_sym_GT_GT_EQ] = ACTIONS(1007), + [anon_sym_EQ] = ACTIONS(1005), + [anon_sym_EQ_EQ] = ACTIONS(1007), + [anon_sym_BANG_EQ] = ACTIONS(1007), + [anon_sym_GT] = ACTIONS(1005), + [anon_sym_LT] = ACTIONS(1005), + [anon_sym_GT_EQ] = ACTIONS(1007), + [anon_sym_LT_EQ] = ACTIONS(1007), + [anon_sym_AT] = ACTIONS(1007), + [anon_sym__] = ACTIONS(1005), + [anon_sym_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1007), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1007), + [anon_sym_COMMA] = ACTIONS(1007), + [anon_sym_COLON_COLON] = ACTIONS(1007), + [anon_sym_DASH_GT] = ACTIONS(1007), + [anon_sym_POUND] = ACTIONS(1007), + [anon_sym_SQUOTE] = ACTIONS(1005), + [anon_sym_as] = ACTIONS(1005), + [anon_sym_async] = ACTIONS(1005), + [anon_sym_await] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_default] = ACTIONS(1005), + [anon_sym_enum] = ACTIONS(1005), + [anon_sym_fn] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_gen] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_impl] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_loop] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1005), + [anon_sym_mod] = ACTIONS(1005), + [anon_sym_pub] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_static] = ACTIONS(1005), + [anon_sym_struct] = ACTIONS(1005), + [anon_sym_trait] = ACTIONS(1005), + [anon_sym_type] = ACTIONS(1005), + [anon_sym_union] = ACTIONS(1005), + [anon_sym_unsafe] = ACTIONS(1005), + [anon_sym_use] = ACTIONS(1005), + [anon_sym_where] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [sym_mutable_specifier] = ACTIONS(1005), + [sym_integer_literal] = ACTIONS(1007), + [aux_sym_string_literal_token1] = ACTIONS(1007), + [sym_char_literal] = ACTIONS(1007), + [anon_sym_true] = ACTIONS(1005), + [anon_sym_false] = ACTIONS(1005), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1005), + [sym_super] = ACTIONS(1005), + [sym_crate] = ACTIONS(1005), + [sym_metavariable] = ACTIONS(1007), + [sym__raw_string_literal_start] = ACTIONS(1007), + [sym_float_literal] = ACTIONS(1007), + }, + [STATE(179)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1009), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1001), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37387,178 +37695,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(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), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1005), - [anon_sym_RBRACK] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_EQ_GT] = ACTIONS(1005), - [anon_sym_COLON] = ACTIONS(1003), - [anon_sym_DOLLAR] = ACTIONS(1003), - [anon_sym_PLUS] = ACTIONS(1003), - [anon_sym_STAR] = ACTIONS(1003), - [anon_sym_QMARK] = ACTIONS(1005), - [anon_sym_u8] = ACTIONS(1003), - [anon_sym_i8] = ACTIONS(1003), - [anon_sym_u16] = ACTIONS(1003), - [anon_sym_i16] = ACTIONS(1003), - [anon_sym_u32] = ACTIONS(1003), - [anon_sym_i32] = ACTIONS(1003), - [anon_sym_u64] = ACTIONS(1003), - [anon_sym_i64] = ACTIONS(1003), - [anon_sym_u128] = ACTIONS(1003), - [anon_sym_i128] = ACTIONS(1003), - [anon_sym_isize] = ACTIONS(1003), - [anon_sym_usize] = ACTIONS(1003), - [anon_sym_f32] = ACTIONS(1003), - [anon_sym_f64] = ACTIONS(1003), - [anon_sym_bool] = ACTIONS(1003), - [anon_sym_str] = ACTIONS(1003), - [anon_sym_char] = ACTIONS(1003), - [anon_sym_DASH] = ACTIONS(1003), - [anon_sym_SLASH] = ACTIONS(1003), - [anon_sym_PERCENT] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(1003), - [anon_sym_BANG] = ACTIONS(1003), - [anon_sym_AMP] = ACTIONS(1003), - [anon_sym_PIPE] = ACTIONS(1003), - [anon_sym_AMP_AMP] = ACTIONS(1005), - [anon_sym_PIPE_PIPE] = ACTIONS(1005), - [anon_sym_LT_LT] = ACTIONS(1003), - [anon_sym_GT_GT] = ACTIONS(1003), - [anon_sym_PLUS_EQ] = ACTIONS(1005), - [anon_sym_DASH_EQ] = ACTIONS(1005), - [anon_sym_STAR_EQ] = ACTIONS(1005), - [anon_sym_SLASH_EQ] = ACTIONS(1005), - [anon_sym_PERCENT_EQ] = ACTIONS(1005), - [anon_sym_CARET_EQ] = ACTIONS(1005), - [anon_sym_AMP_EQ] = ACTIONS(1005), - [anon_sym_PIPE_EQ] = ACTIONS(1005), - [anon_sym_LT_LT_EQ] = ACTIONS(1005), - [anon_sym_GT_GT_EQ] = ACTIONS(1005), - [anon_sym_EQ] = ACTIONS(1003), - [anon_sym_EQ_EQ] = ACTIONS(1005), - [anon_sym_BANG_EQ] = ACTIONS(1005), - [anon_sym_GT] = ACTIONS(1003), - [anon_sym_LT] = ACTIONS(1003), - [anon_sym_GT_EQ] = ACTIONS(1005), - [anon_sym_LT_EQ] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(1005), - [anon_sym__] = ACTIONS(1003), - [anon_sym_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT] = ACTIONS(1003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), - [anon_sym_COMMA] = ACTIONS(1005), - [anon_sym_COLON_COLON] = ACTIONS(1005), - [anon_sym_DASH_GT] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(1005), - [anon_sym_SQUOTE] = ACTIONS(1003), - [anon_sym_as] = ACTIONS(1003), - [anon_sym_async] = ACTIONS(1003), - [anon_sym_await] = ACTIONS(1003), - [anon_sym_break] = ACTIONS(1003), - [anon_sym_const] = ACTIONS(1003), - [anon_sym_continue] = ACTIONS(1003), - [anon_sym_default] = ACTIONS(1003), - [anon_sym_enum] = ACTIONS(1003), - [anon_sym_fn] = ACTIONS(1003), - [anon_sym_for] = ACTIONS(1003), - [anon_sym_gen] = ACTIONS(1003), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_impl] = ACTIONS(1003), - [anon_sym_let] = ACTIONS(1003), - [anon_sym_loop] = ACTIONS(1003), - [anon_sym_match] = ACTIONS(1003), - [anon_sym_mod] = ACTIONS(1003), - [anon_sym_pub] = ACTIONS(1003), - [anon_sym_return] = ACTIONS(1003), - [anon_sym_static] = ACTIONS(1003), - [anon_sym_struct] = ACTIONS(1003), - [anon_sym_trait] = ACTIONS(1003), - [anon_sym_type] = ACTIONS(1003), - [anon_sym_union] = ACTIONS(1003), - [anon_sym_unsafe] = ACTIONS(1003), - [anon_sym_use] = ACTIONS(1003), - [anon_sym_where] = ACTIONS(1003), - [anon_sym_while] = ACTIONS(1003), - [sym_mutable_specifier] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(1005), - [aux_sym_string_literal_token1] = ACTIONS(1005), - [sym_char_literal] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1003), - [anon_sym_false] = ACTIONS(1003), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1003), - [sym_super] = ACTIONS(1003), - [sym_crate] = ACTIONS(1003), - [sym_metavariable] = ACTIONS(1005), - [sym__raw_string_literal_start] = ACTIONS(1005), - [sym_float_literal] = ACTIONS(1005), - }, - [STATE(179)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [STATE(180)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1011), [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), @@ -37619,140 +37811,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(180)] = { - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), - [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(1009), - [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_metavariable] = ACTIONS(1011), - [sym__raw_string_literal_start] = ACTIONS(1011), - [sym_float_literal] = ACTIONS(1011), - }, [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(676), + [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(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_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_u8] = ACTIONS(1013), [anon_sym_i8] = ACTIONS(1013), [anon_sym_u16] = ACTIONS(1013), @@ -37770,44 +37845,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(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_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), @@ -37848,6 +37923,7 @@ 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), }, @@ -38084,61 +38160,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1023), }, [STATE(184)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), [sym_line_comment] = STATE(184), [sym_block_comment] = STATE(184), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [aux_sym__non_special_token_repeat1] = STATE(172), + [sym_identifier] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_RBRACK] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_EQ_GT] = ACTIONS(676), + [anon_sym_COLON] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_u8] = ACTIONS(1025), + [anon_sym_i8] = ACTIONS(1025), + [anon_sym_u16] = ACTIONS(1025), + [anon_sym_i16] = ACTIONS(1025), + [anon_sym_u32] = ACTIONS(1025), + [anon_sym_i32] = ACTIONS(1025), + [anon_sym_u64] = ACTIONS(1025), + [anon_sym_i64] = ACTIONS(1025), + [anon_sym_u128] = ACTIONS(1025), + [anon_sym_i128] = ACTIONS(1025), + [anon_sym_isize] = ACTIONS(1025), + [anon_sym_usize] = ACTIONS(1025), + [anon_sym_f32] = ACTIONS(1025), + [anon_sym_f64] = ACTIONS(1025), + [anon_sym_bool] = ACTIONS(1025), + [anon_sym_str] = ACTIONS(1025), + [anon_sym_char] = ACTIONS(1025), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_PLUS_EQ] = ACTIONS(676), + [anon_sym_DASH_EQ] = ACTIONS(676), + [anon_sym_STAR_EQ] = ACTIONS(676), + [anon_sym_SLASH_EQ] = ACTIONS(676), + [anon_sym_PERCENT_EQ] = ACTIONS(676), + [anon_sym_CARET_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_AT] = ACTIONS(676), + [anon_sym__] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_SQUOTE] = ACTIONS(1025), + [anon_sym_as] = ACTIONS(1025), + [anon_sym_async] = ACTIONS(1025), + [anon_sym_await] = ACTIONS(1025), + [anon_sym_break] = ACTIONS(1025), + [anon_sym_const] = ACTIONS(1025), + [anon_sym_continue] = ACTIONS(1025), + [anon_sym_default] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1025), + [anon_sym_fn] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(1025), + [anon_sym_gen] = ACTIONS(1025), + [anon_sym_if] = ACTIONS(1025), + [anon_sym_impl] = ACTIONS(1025), + [anon_sym_let] = ACTIONS(1025), + [anon_sym_loop] = ACTIONS(1025), + [anon_sym_match] = ACTIONS(1025), + [anon_sym_mod] = ACTIONS(1025), + [anon_sym_pub] = ACTIONS(1025), + [anon_sym_return] = ACTIONS(1025), + [anon_sym_static] = ACTIONS(1025), + [anon_sym_struct] = ACTIONS(1025), + [anon_sym_trait] = ACTIONS(1025), + [anon_sym_type] = ACTIONS(1025), + [anon_sym_union] = ACTIONS(1025), + [anon_sym_unsafe] = ACTIONS(1025), + [anon_sym_use] = ACTIONS(1025), + [anon_sym_where] = ACTIONS(1025), + [anon_sym_while] = ACTIONS(1025), + [sym_mutable_specifier] = ACTIONS(1025), + [sym_integer_literal] = ACTIONS(1027), + [aux_sym_string_literal_token1] = ACTIONS(1027), + [sym_char_literal] = ACTIONS(1027), + [anon_sym_true] = ACTIONS(1025), + [anon_sym_false] = ACTIONS(1025), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1025), + [sym_super] = ACTIONS(1025), + [sym_crate] = ACTIONS(1025), + [sym__raw_string_literal_start] = ACTIONS(1027), + [sym_float_literal] = ACTIONS(1027), + }, + [STATE(185)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1029), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38199,61 +38391,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(185)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1902), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [aux_sym_enum_variant_list_repeat1] = STATE(203), + [STATE(186)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1031), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -38315,219 +38507,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(186)] = { - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2745), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(3072), + [sym__let_chain] = STATE(3073), + [sym__condition] = STATE(2614), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(187), [sym_block_comment] = STATE(187), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), + [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -38540,110 +38616,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(188)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2821), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(3072), + [sym__let_chain] = STATE(3073), + [sym__condition] = STATE(2618), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(188), [sym_block_comment] = STATE(188), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), + [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -38656,226 +38732,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(189)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(3072), + [sym__let_chain] = STATE(3073), + [sym__condition] = STATE(2727), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(189), [sym_block_comment] = STATE(189), - [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2782), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), + [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -38888,110 +38848,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(191)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2788), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [STATE(190)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(3072), + [sym__let_chain] = STATE(3073), + [sym__condition] = STATE(2663), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(191)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(3072), + [sym__let_chain] = STATE(3073), + [sym__condition] = STATE(2713), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), + [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -39004,110 +39080,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(192)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2792), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(3072), + [sym__let_chain] = STATE(3073), + [sym__condition] = STATE(2714), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), + [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -39120,110 +39196,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(193)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2584), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(3072), + [sym__let_chain] = STATE(3073), + [sym__condition] = STATE(2733), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), + [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -39236,110 +39312,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(194)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2608), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(3072), + [sym__let_chain] = STATE(3073), + [sym__condition] = STATE(2748), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), + [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -39352,110 +39428,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(195)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2610), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(3072), + [sym__let_chain] = STATE(3073), + [sym__condition] = STATE(2749), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), + [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -39468,110 +39544,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(196)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(3090), - [sym__let_chain] = STATE(3116), - [sym__condition] = STATE(2627), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(3072), + [sym__let_chain] = STATE(3073), + [sym__condition] = STATE(2758), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(907), + [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -39584,526 +39660,296 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(197)] = { [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [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), + [sym_identifier] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_COLON] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_QMARK] = ACTIONS(1035), + [anon_sym_u8] = ACTIONS(1033), + [anon_sym_i8] = ACTIONS(1033), + [anon_sym_u16] = ACTIONS(1033), + [anon_sym_i16] = ACTIONS(1033), + [anon_sym_u32] = ACTIONS(1033), + [anon_sym_i32] = ACTIONS(1033), + [anon_sym_u64] = ACTIONS(1033), + [anon_sym_i64] = ACTIONS(1033), + [anon_sym_u128] = ACTIONS(1033), + [anon_sym_i128] = ACTIONS(1033), + [anon_sym_isize] = ACTIONS(1033), + [anon_sym_usize] = ACTIONS(1033), + [anon_sym_f32] = ACTIONS(1033), + [anon_sym_f64] = ACTIONS(1033), + [anon_sym_bool] = ACTIONS(1033), + [anon_sym_str] = ACTIONS(1033), + [anon_sym_char] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_PERCENT] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(1035), + [anon_sym_PIPE_PIPE] = ACTIONS(1035), + [anon_sym_LT_LT] = ACTIONS(1033), + [anon_sym_GT_GT] = ACTIONS(1033), + [anon_sym_PLUS_EQ] = ACTIONS(1035), + [anon_sym_DASH_EQ] = ACTIONS(1035), + [anon_sym_STAR_EQ] = ACTIONS(1035), + [anon_sym_SLASH_EQ] = ACTIONS(1035), + [anon_sym_PERCENT_EQ] = ACTIONS(1035), + [anon_sym_CARET_EQ] = ACTIONS(1035), + [anon_sym_AMP_EQ] = ACTIONS(1035), + [anon_sym_PIPE_EQ] = ACTIONS(1035), + [anon_sym_LT_LT_EQ] = ACTIONS(1035), + [anon_sym_GT_GT_EQ] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(1033), + [anon_sym_EQ_EQ] = ACTIONS(1035), + [anon_sym_BANG_EQ] = ACTIONS(1035), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_GT_EQ] = ACTIONS(1035), + [anon_sym_LT_EQ] = ACTIONS(1035), + [anon_sym_AT] = ACTIONS(1035), + [anon_sym__] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), + [anon_sym_COMMA] = ACTIONS(1035), + [anon_sym_COLON_COLON] = ACTIONS(1035), + [anon_sym_DASH_GT] = ACTIONS(1035), + [anon_sym_POUND] = ACTIONS(1035), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(1033), + [anon_sym_async] = ACTIONS(1033), + [anon_sym_await] = ACTIONS(1033), + [anon_sym_break] = ACTIONS(1033), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_continue] = ACTIONS(1033), + [anon_sym_default] = ACTIONS(1033), + [anon_sym_enum] = ACTIONS(1033), + [anon_sym_fn] = ACTIONS(1033), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_gen] = ACTIONS(1033), + [anon_sym_if] = ACTIONS(1033), + [anon_sym_impl] = ACTIONS(1033), + [anon_sym_let] = ACTIONS(1033), + [anon_sym_loop] = ACTIONS(1033), + [anon_sym_match] = ACTIONS(1033), + [anon_sym_mod] = ACTIONS(1033), + [anon_sym_pub] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(1033), + [anon_sym_static] = ACTIONS(1033), + [anon_sym_struct] = ACTIONS(1033), + [anon_sym_trait] = ACTIONS(1033), + [anon_sym_type] = ACTIONS(1033), + [anon_sym_union] = ACTIONS(1033), + [anon_sym_unsafe] = ACTIONS(1033), + [anon_sym_use] = ACTIONS(1033), + [anon_sym_where] = ACTIONS(1033), + [anon_sym_while] = ACTIONS(1033), + [sym_mutable_specifier] = ACTIONS(1033), + [sym_integer_literal] = ACTIONS(1035), + [aux_sym_string_literal_token1] = ACTIONS(1035), + [sym_char_literal] = ACTIONS(1035), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1033), + [sym_super] = ACTIONS(1033), + [sym_crate] = ACTIONS(1033), + [sym_metavariable] = ACTIONS(1035), + [sym__raw_string_literal_start] = ACTIONS(1035), + [sym_float_literal] = ACTIONS(1035), }, [STATE(198)] = { [sym_line_comment] = STATE(198), [sym_block_comment] = STATE(198), - [sym_identifier] = ACTIONS(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), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_EQ_GT] = ACTIONS(1039), + [anon_sym_COLON] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1037), + [anon_sym_i8] = ACTIONS(1037), + [anon_sym_u16] = ACTIONS(1037), + [anon_sym_i16] = ACTIONS(1037), + [anon_sym_u32] = ACTIONS(1037), + [anon_sym_i32] = ACTIONS(1037), + [anon_sym_u64] = ACTIONS(1037), + [anon_sym_i64] = ACTIONS(1037), + [anon_sym_u128] = ACTIONS(1037), + [anon_sym_i128] = ACTIONS(1037), + [anon_sym_isize] = ACTIONS(1037), + [anon_sym_usize] = ACTIONS(1037), + [anon_sym_f32] = ACTIONS(1037), + [anon_sym_f64] = ACTIONS(1037), + [anon_sym_bool] = ACTIONS(1037), + [anon_sym_str] = ACTIONS(1037), + [anon_sym_char] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS_EQ] = ACTIONS(1039), + [anon_sym_DASH_EQ] = ACTIONS(1039), + [anon_sym_STAR_EQ] = ACTIONS(1039), + [anon_sym_SLASH_EQ] = ACTIONS(1039), + [anon_sym_PERCENT_EQ] = ACTIONS(1039), + [anon_sym_CARET_EQ] = ACTIONS(1039), + [anon_sym_AMP_EQ] = ACTIONS(1039), + [anon_sym_PIPE_EQ] = ACTIONS(1039), + [anon_sym_LT_LT_EQ] = ACTIONS(1039), + [anon_sym_GT_GT_EQ] = ACTIONS(1039), + [anon_sym_EQ] = ACTIONS(1037), + [anon_sym_EQ_EQ] = ACTIONS(1039), + [anon_sym_BANG_EQ] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(1037), + [anon_sym_GT_EQ] = ACTIONS(1039), + [anon_sym_LT_EQ] = ACTIONS(1039), + [anon_sym_AT] = ACTIONS(1039), + [anon_sym__] = ACTIONS(1037), + [anon_sym_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1039), + [anon_sym_COMMA] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(1039), + [anon_sym_DASH_GT] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1039), + [anon_sym_SQUOTE] = ACTIONS(1037), + [anon_sym_as] = ACTIONS(1037), + [anon_sym_async] = ACTIONS(1037), + [anon_sym_await] = ACTIONS(1037), + [anon_sym_break] = ACTIONS(1037), + [anon_sym_const] = ACTIONS(1037), + [anon_sym_continue] = ACTIONS(1037), + [anon_sym_default] = ACTIONS(1037), + [anon_sym_enum] = ACTIONS(1037), + [anon_sym_fn] = ACTIONS(1037), + [anon_sym_for] = ACTIONS(1037), + [anon_sym_gen] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1037), + [anon_sym_impl] = ACTIONS(1037), + [anon_sym_let] = ACTIONS(1037), + [anon_sym_loop] = ACTIONS(1037), + [anon_sym_match] = ACTIONS(1037), + [anon_sym_mod] = ACTIONS(1037), + [anon_sym_pub] = ACTIONS(1037), + [anon_sym_return] = ACTIONS(1037), + [anon_sym_static] = ACTIONS(1037), + [anon_sym_struct] = ACTIONS(1037), + [anon_sym_trait] = ACTIONS(1037), + [anon_sym_type] = ACTIONS(1037), + [anon_sym_union] = ACTIONS(1037), + [anon_sym_unsafe] = ACTIONS(1037), + [anon_sym_use] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1037), + [anon_sym_while] = ACTIONS(1037), + [sym_mutable_specifier] = ACTIONS(1037), + [sym_integer_literal] = ACTIONS(1039), + [aux_sym_string_literal_token1] = ACTIONS(1039), + [sym_char_literal] = ACTIONS(1039), + [anon_sym_true] = ACTIONS(1037), + [anon_sym_false] = ACTIONS(1037), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1037), + [sym_super] = ACTIONS(1037), + [sym_crate] = ACTIONS(1037), + [sym__raw_string_literal_start] = ACTIONS(1039), + [sym_float_literal] = ACTIONS(1039), }, [STATE(199)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1942), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(199), [sym_block_comment] = STATE(199), - [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1666), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), + [aux_sym_enum_variant_list_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40167,58 +40013,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(202)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(202), - [sym_block_comment] = STATE(202), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [STATE(200)] = { + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [sym_identifier] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_RBRACK] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_EQ_GT] = ACTIONS(1043), + [anon_sym_COLON] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1041), + [anon_sym_i8] = ACTIONS(1041), + [anon_sym_u16] = ACTIONS(1041), + [anon_sym_i16] = ACTIONS(1041), + [anon_sym_u32] = ACTIONS(1041), + [anon_sym_i32] = ACTIONS(1041), + [anon_sym_u64] = ACTIONS(1041), + [anon_sym_i64] = ACTIONS(1041), + [anon_sym_u128] = ACTIONS(1041), + [anon_sym_i128] = ACTIONS(1041), + [anon_sym_isize] = ACTIONS(1041), + [anon_sym_usize] = ACTIONS(1041), + [anon_sym_f32] = ACTIONS(1041), + [anon_sym_f64] = ACTIONS(1041), + [anon_sym_bool] = ACTIONS(1041), + [anon_sym_str] = ACTIONS(1041), + [anon_sym_char] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1041), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_STAR_EQ] = ACTIONS(1043), + [anon_sym_SLASH_EQ] = ACTIONS(1043), + [anon_sym_PERCENT_EQ] = ACTIONS(1043), + [anon_sym_CARET_EQ] = ACTIONS(1043), + [anon_sym_AMP_EQ] = ACTIONS(1043), + [anon_sym_PIPE_EQ] = ACTIONS(1043), + [anon_sym_LT_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_GT_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_AT] = ACTIONS(1043), + [anon_sym__] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym_DASH_GT] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_fn] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_gen] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_impl] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_pub] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_struct] = ACTIONS(1041), + [anon_sym_trait] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_union] = ACTIONS(1041), + [anon_sym_unsafe] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [sym_mutable_specifier] = ACTIONS(1041), + [sym_integer_literal] = ACTIONS(1043), + [aux_sym_string_literal_token1] = ACTIONS(1043), + [sym_char_literal] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1041), + [sym_super] = ACTIONS(1041), + [sym_crate] = ACTIONS(1041), + [sym__raw_string_literal_start] = ACTIONS(1043), + [sym_float_literal] = ACTIONS(1043), + }, + [STATE(201)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1678), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [aux_sym_enum_variant_list_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40282,58 +40243,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(202)] = { + [sym_line_comment] = STATE(202), + [sym_block_comment] = STATE(202), + [sym_identifier] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(977), + [anon_sym_RBRACK] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(977), + [anon_sym_RBRACE] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_COLON] = ACTIONS(975), + [anon_sym_DOLLAR] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(975), + [anon_sym_QMARK] = ACTIONS(977), + [anon_sym_u8] = ACTIONS(975), + [anon_sym_i8] = ACTIONS(975), + [anon_sym_u16] = ACTIONS(975), + [anon_sym_i16] = ACTIONS(975), + [anon_sym_u32] = ACTIONS(975), + [anon_sym_i32] = ACTIONS(975), + [anon_sym_u64] = ACTIONS(975), + [anon_sym_i64] = ACTIONS(975), + [anon_sym_u128] = ACTIONS(975), + [anon_sym_i128] = ACTIONS(975), + [anon_sym_isize] = ACTIONS(975), + [anon_sym_usize] = ACTIONS(975), + [anon_sym_f32] = ACTIONS(975), + [anon_sym_f64] = ACTIONS(975), + [anon_sym_bool] = ACTIONS(975), + [anon_sym_str] = ACTIONS(975), + [anon_sym_char] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(975), + [anon_sym_SLASH] = ACTIONS(975), + [anon_sym_PERCENT] = ACTIONS(975), + [anon_sym_CARET] = ACTIONS(975), + [anon_sym_BANG] = ACTIONS(975), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_AMP_AMP] = ACTIONS(977), + [anon_sym_PIPE_PIPE] = ACTIONS(977), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(975), + [anon_sym_PLUS_EQ] = ACTIONS(977), + [anon_sym_DASH_EQ] = ACTIONS(977), + [anon_sym_STAR_EQ] = ACTIONS(977), + [anon_sym_SLASH_EQ] = ACTIONS(977), + [anon_sym_PERCENT_EQ] = ACTIONS(977), + [anon_sym_CARET_EQ] = ACTIONS(977), + [anon_sym_AMP_EQ] = ACTIONS(977), + [anon_sym_PIPE_EQ] = ACTIONS(977), + [anon_sym_LT_LT_EQ] = ACTIONS(977), + [anon_sym_GT_GT_EQ] = ACTIONS(977), + [anon_sym_EQ] = ACTIONS(975), + [anon_sym_EQ_EQ] = ACTIONS(977), + [anon_sym_BANG_EQ] = ACTIONS(977), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT_EQ] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(977), + [anon_sym_AT] = ACTIONS(977), + [anon_sym__] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT] = ACTIONS(975), + [anon_sym_DOT_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(977), + [anon_sym_COMMA] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(977), + [anon_sym_DASH_GT] = ACTIONS(977), + [anon_sym_POUND] = ACTIONS(977), + [anon_sym_SQUOTE] = ACTIONS(975), + [anon_sym_as] = ACTIONS(975), + [anon_sym_async] = ACTIONS(975), + [anon_sym_await] = ACTIONS(975), + [anon_sym_break] = ACTIONS(975), + [anon_sym_const] = ACTIONS(975), + [anon_sym_continue] = ACTIONS(975), + [anon_sym_default] = ACTIONS(975), + [anon_sym_enum] = ACTIONS(975), + [anon_sym_fn] = ACTIONS(975), + [anon_sym_for] = ACTIONS(975), + [anon_sym_gen] = ACTIONS(975), + [anon_sym_if] = ACTIONS(975), + [anon_sym_impl] = ACTIONS(975), + [anon_sym_let] = ACTIONS(975), + [anon_sym_loop] = ACTIONS(975), + [anon_sym_match] = ACTIONS(975), + [anon_sym_mod] = ACTIONS(975), + [anon_sym_pub] = ACTIONS(975), + [anon_sym_return] = ACTIONS(975), + [anon_sym_static] = ACTIONS(975), + [anon_sym_struct] = ACTIONS(975), + [anon_sym_trait] = ACTIONS(975), + [anon_sym_type] = ACTIONS(975), + [anon_sym_union] = ACTIONS(975), + [anon_sym_unsafe] = ACTIONS(975), + [anon_sym_use] = ACTIONS(975), + [anon_sym_where] = ACTIONS(975), + [anon_sym_while] = ACTIONS(975), + [sym_mutable_specifier] = ACTIONS(975), + [sym_integer_literal] = ACTIONS(977), + [aux_sym_string_literal_token1] = ACTIONS(977), + [sym_char_literal] = ACTIONS(977), + [anon_sym_true] = ACTIONS(975), + [anon_sym_false] = ACTIONS(975), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(975), + [sym_super] = ACTIONS(975), + [sym_crate] = ACTIONS(975), + [sym__raw_string_literal_start] = ACTIONS(977), + [sym_float_literal] = ACTIONS(977), + }, [STATE(203)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1906), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40398,583 +40474,698 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(204)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), [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), - [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(1001), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(1003), + [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_RBRACK] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(1003), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_EQ_GT] = ACTIONS(1003), + [anon_sym_COLON] = ACTIONS(1001), + [anon_sym_DOLLAR] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_STAR] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(1003), + [anon_sym_u8] = ACTIONS(1001), + [anon_sym_i8] = ACTIONS(1001), + [anon_sym_u16] = ACTIONS(1001), + [anon_sym_i16] = ACTIONS(1001), + [anon_sym_u32] = ACTIONS(1001), + [anon_sym_i32] = ACTIONS(1001), + [anon_sym_u64] = ACTIONS(1001), + [anon_sym_i64] = ACTIONS(1001), + [anon_sym_u128] = ACTIONS(1001), + [anon_sym_i128] = ACTIONS(1001), + [anon_sym_isize] = ACTIONS(1001), + [anon_sym_usize] = ACTIONS(1001), + [anon_sym_f32] = ACTIONS(1001), + [anon_sym_f64] = ACTIONS(1001), + [anon_sym_bool] = ACTIONS(1001), + [anon_sym_str] = ACTIONS(1001), + [anon_sym_char] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1001), + [anon_sym_PERCENT] = ACTIONS(1001), + [anon_sym_CARET] = ACTIONS(1001), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_AMP] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(1001), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [anon_sym_LT_LT] = ACTIONS(1001), + [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_PLUS_EQ] = ACTIONS(1003), + [anon_sym_DASH_EQ] = ACTIONS(1003), + [anon_sym_STAR_EQ] = ACTIONS(1003), + [anon_sym_SLASH_EQ] = ACTIONS(1003), + [anon_sym_PERCENT_EQ] = ACTIONS(1003), + [anon_sym_CARET_EQ] = ACTIONS(1003), + [anon_sym_AMP_EQ] = ACTIONS(1003), + [anon_sym_PIPE_EQ] = ACTIONS(1003), + [anon_sym_LT_LT_EQ] = ACTIONS(1003), + [anon_sym_GT_GT_EQ] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1001), + [anon_sym_EQ_EQ] = ACTIONS(1003), + [anon_sym_BANG_EQ] = ACTIONS(1003), + [anon_sym_GT] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1001), + [anon_sym_GT_EQ] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1003), + [anon_sym_AT] = ACTIONS(1003), + [anon_sym__] = ACTIONS(1001), + [anon_sym_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1003), + [anon_sym_COMMA] = ACTIONS(1003), + [anon_sym_COLON_COLON] = ACTIONS(1003), + [anon_sym_DASH_GT] = ACTIONS(1003), + [anon_sym_POUND] = ACTIONS(1003), + [anon_sym_SQUOTE] = ACTIONS(1001), + [anon_sym_as] = ACTIONS(1001), + [anon_sym_async] = ACTIONS(1001), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_break] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_continue] = ACTIONS(1001), + [anon_sym_default] = ACTIONS(1001), + [anon_sym_enum] = ACTIONS(1001), + [anon_sym_fn] = ACTIONS(1001), + [anon_sym_for] = ACTIONS(1001), + [anon_sym_gen] = ACTIONS(1001), + [anon_sym_if] = ACTIONS(1001), + [anon_sym_impl] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1001), + [anon_sym_loop] = ACTIONS(1001), + [anon_sym_match] = ACTIONS(1001), + [anon_sym_mod] = ACTIONS(1001), + [anon_sym_pub] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1001), + [anon_sym_static] = ACTIONS(1001), + [anon_sym_struct] = ACTIONS(1001), + [anon_sym_trait] = ACTIONS(1001), + [anon_sym_type] = ACTIONS(1001), + [anon_sym_union] = ACTIONS(1001), + [anon_sym_unsafe] = ACTIONS(1001), + [anon_sym_use] = ACTIONS(1001), + [anon_sym_where] = ACTIONS(1001), + [anon_sym_while] = ACTIONS(1001), + [sym_mutable_specifier] = ACTIONS(1001), + [sym_integer_literal] = ACTIONS(1003), + [aux_sym_string_literal_token1] = ACTIONS(1003), + [sym_char_literal] = ACTIONS(1003), + [anon_sym_true] = ACTIONS(1001), + [anon_sym_false] = ACTIONS(1001), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1001), + [sym_super] = ACTIONS(1001), + [sym_crate] = ACTIONS(1001), + [sym__raw_string_literal_start] = ACTIONS(1003), + [sym_float_literal] = ACTIONS(1003), }, [STATE(205)] = { [sym_line_comment] = STATE(205), [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(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), + [sym_identifier] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_RBRACK] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_EQ_GT] = ACTIONS(909), + [anon_sym_COLON] = ACTIONS(907), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(907), + [anon_sym_STAR] = ACTIONS(907), + [anon_sym_QMARK] = ACTIONS(909), + [anon_sym_u8] = ACTIONS(907), + [anon_sym_i8] = ACTIONS(907), + [anon_sym_u16] = ACTIONS(907), + [anon_sym_i16] = ACTIONS(907), + [anon_sym_u32] = ACTIONS(907), + [anon_sym_i32] = ACTIONS(907), + [anon_sym_u64] = ACTIONS(907), + [anon_sym_i64] = ACTIONS(907), + [anon_sym_u128] = ACTIONS(907), + [anon_sym_i128] = ACTIONS(907), + [anon_sym_isize] = ACTIONS(907), + [anon_sym_usize] = ACTIONS(907), + [anon_sym_f32] = ACTIONS(907), + [anon_sym_f64] = ACTIONS(907), + [anon_sym_bool] = ACTIONS(907), + [anon_sym_str] = ACTIONS(907), + [anon_sym_char] = ACTIONS(907), + [anon_sym_DASH] = ACTIONS(907), + [anon_sym_SLASH] = ACTIONS(907), + [anon_sym_PERCENT] = ACTIONS(907), + [anon_sym_CARET] = ACTIONS(907), + [anon_sym_BANG] = ACTIONS(907), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(907), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE_PIPE] = ACTIONS(909), + [anon_sym_LT_LT] = ACTIONS(907), + [anon_sym_GT_GT] = ACTIONS(907), + [anon_sym_PLUS_EQ] = ACTIONS(909), + [anon_sym_DASH_EQ] = ACTIONS(909), + [anon_sym_STAR_EQ] = ACTIONS(909), + [anon_sym_SLASH_EQ] = ACTIONS(909), + [anon_sym_PERCENT_EQ] = ACTIONS(909), + [anon_sym_CARET_EQ] = ACTIONS(909), + [anon_sym_AMP_EQ] = ACTIONS(909), + [anon_sym_PIPE_EQ] = ACTIONS(909), + [anon_sym_LT_LT_EQ] = ACTIONS(909), + [anon_sym_GT_GT_EQ] = ACTIONS(909), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(907), + [anon_sym_LT] = ACTIONS(907), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_AT] = ACTIONS(909), + [anon_sym__] = ACTIONS(907), + [anon_sym_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(909), + [anon_sym_COMMA] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(909), + [anon_sym_DASH_GT] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(909), + [anon_sym_SQUOTE] = ACTIONS(907), + [anon_sym_as] = ACTIONS(907), + [anon_sym_async] = ACTIONS(907), + [anon_sym_await] = ACTIONS(907), + [anon_sym_break] = ACTIONS(907), + [anon_sym_const] = ACTIONS(907), + [anon_sym_continue] = ACTIONS(907), + [anon_sym_default] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(907), + [anon_sym_fn] = ACTIONS(907), + [anon_sym_for] = ACTIONS(907), + [anon_sym_gen] = ACTIONS(907), + [anon_sym_if] = ACTIONS(907), + [anon_sym_impl] = ACTIONS(907), + [anon_sym_let] = ACTIONS(907), + [anon_sym_loop] = ACTIONS(907), + [anon_sym_match] = ACTIONS(907), + [anon_sym_mod] = ACTIONS(907), + [anon_sym_pub] = ACTIONS(907), + [anon_sym_return] = ACTIONS(907), + [anon_sym_static] = ACTIONS(907), + [anon_sym_struct] = ACTIONS(907), + [anon_sym_trait] = ACTIONS(907), + [anon_sym_type] = ACTIONS(907), + [anon_sym_union] = ACTIONS(907), + [anon_sym_unsafe] = ACTIONS(907), + [anon_sym_use] = ACTIONS(907), + [anon_sym_where] = ACTIONS(907), + [anon_sym_while] = ACTIONS(907), + [sym_mutable_specifier] = ACTIONS(907), + [sym_integer_literal] = ACTIONS(909), + [aux_sym_string_literal_token1] = ACTIONS(909), + [sym_char_literal] = ACTIONS(909), + [anon_sym_true] = ACTIONS(907), + [anon_sym_false] = ACTIONS(907), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(907), + [sym_super] = ACTIONS(907), + [sym_crate] = ACTIONS(907), + [sym__raw_string_literal_start] = ACTIONS(909), + [sym_float_literal] = ACTIONS(909), }, [STATE(206)] = { [sym_line_comment] = STATE(206), [sym_block_comment] = STATE(206), - [sym_identifier] = ACTIONS(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), + [sym_identifier] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_RBRACK] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_EQ_GT] = ACTIONS(913), + [anon_sym_COLON] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(911), + [anon_sym_QMARK] = ACTIONS(913), + [anon_sym_u8] = ACTIONS(911), + [anon_sym_i8] = ACTIONS(911), + [anon_sym_u16] = ACTIONS(911), + [anon_sym_i16] = ACTIONS(911), + [anon_sym_u32] = ACTIONS(911), + [anon_sym_i32] = ACTIONS(911), + [anon_sym_u64] = ACTIONS(911), + [anon_sym_i64] = ACTIONS(911), + [anon_sym_u128] = ACTIONS(911), + [anon_sym_i128] = ACTIONS(911), + [anon_sym_isize] = ACTIONS(911), + [anon_sym_usize] = ACTIONS(911), + [anon_sym_f32] = ACTIONS(911), + [anon_sym_f64] = ACTIONS(911), + [anon_sym_bool] = ACTIONS(911), + [anon_sym_str] = ACTIONS(911), + [anon_sym_char] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_PERCENT] = ACTIONS(911), + [anon_sym_CARET] = ACTIONS(911), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_AMP] = ACTIONS(911), + [anon_sym_PIPE] = ACTIONS(911), + [anon_sym_AMP_AMP] = ACTIONS(913), + [anon_sym_PIPE_PIPE] = ACTIONS(913), + [anon_sym_LT_LT] = ACTIONS(911), + [anon_sym_GT_GT] = ACTIONS(911), + [anon_sym_PLUS_EQ] = ACTIONS(913), + [anon_sym_DASH_EQ] = ACTIONS(913), + [anon_sym_STAR_EQ] = ACTIONS(913), + [anon_sym_SLASH_EQ] = ACTIONS(913), + [anon_sym_PERCENT_EQ] = ACTIONS(913), + [anon_sym_CARET_EQ] = ACTIONS(913), + [anon_sym_AMP_EQ] = ACTIONS(913), + [anon_sym_PIPE_EQ] = ACTIONS(913), + [anon_sym_LT_LT_EQ] = ACTIONS(913), + [anon_sym_GT_GT_EQ] = ACTIONS(913), + [anon_sym_EQ] = ACTIONS(911), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(911), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_AT] = ACTIONS(913), + [anon_sym__] = ACTIONS(911), + [anon_sym_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT] = ACTIONS(911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(913), + [anon_sym_COMMA] = ACTIONS(913), + [anon_sym_COLON_COLON] = ACTIONS(913), + [anon_sym_DASH_GT] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(913), + [anon_sym_SQUOTE] = ACTIONS(911), + [anon_sym_as] = ACTIONS(911), + [anon_sym_async] = ACTIONS(911), + [anon_sym_await] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_default] = ACTIONS(911), + [anon_sym_enum] = ACTIONS(911), + [anon_sym_fn] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_gen] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_impl] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(911), + [anon_sym_match] = ACTIONS(911), + [anon_sym_mod] = ACTIONS(911), + [anon_sym_pub] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_static] = ACTIONS(911), + [anon_sym_struct] = ACTIONS(911), + [anon_sym_trait] = ACTIONS(911), + [anon_sym_type] = ACTIONS(911), + [anon_sym_union] = ACTIONS(911), + [anon_sym_unsafe] = ACTIONS(911), + [anon_sym_use] = ACTIONS(911), + [anon_sym_where] = ACTIONS(911), + [anon_sym_while] = ACTIONS(911), + [sym_mutable_specifier] = ACTIONS(911), + [sym_integer_literal] = ACTIONS(913), + [aux_sym_string_literal_token1] = ACTIONS(913), + [sym_char_literal] = ACTIONS(913), + [anon_sym_true] = ACTIONS(911), + [anon_sym_false] = ACTIONS(911), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(911), + [sym_super] = ACTIONS(911), + [sym_crate] = ACTIONS(911), + [sym__raw_string_literal_start] = ACTIONS(913), + [sym_float_literal] = ACTIONS(913), }, [STATE(207)] = { [sym_line_comment] = STATE(207), [sym_block_comment] = STATE(207), - [sym_identifier] = ACTIONS(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), + [sym_identifier] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_RBRACK] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_EQ_GT] = ACTIONS(917), + [anon_sym_COLON] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(917), + [anon_sym_u8] = ACTIONS(915), + [anon_sym_i8] = ACTIONS(915), + [anon_sym_u16] = ACTIONS(915), + [anon_sym_i16] = ACTIONS(915), + [anon_sym_u32] = ACTIONS(915), + [anon_sym_i32] = ACTIONS(915), + [anon_sym_u64] = ACTIONS(915), + [anon_sym_i64] = ACTIONS(915), + [anon_sym_u128] = ACTIONS(915), + [anon_sym_i128] = ACTIONS(915), + [anon_sym_isize] = ACTIONS(915), + [anon_sym_usize] = ACTIONS(915), + [anon_sym_f32] = ACTIONS(915), + [anon_sym_f64] = ACTIONS(915), + [anon_sym_bool] = ACTIONS(915), + [anon_sym_str] = ACTIONS(915), + [anon_sym_char] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_AMP_AMP] = ACTIONS(917), + [anon_sym_PIPE_PIPE] = ACTIONS(917), + [anon_sym_LT_LT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_PLUS_EQ] = ACTIONS(917), + [anon_sym_DASH_EQ] = ACTIONS(917), + [anon_sym_STAR_EQ] = ACTIONS(917), + [anon_sym_SLASH_EQ] = ACTIONS(917), + [anon_sym_PERCENT_EQ] = ACTIONS(917), + [anon_sym_CARET_EQ] = ACTIONS(917), + [anon_sym_AMP_EQ] = ACTIONS(917), + [anon_sym_PIPE_EQ] = ACTIONS(917), + [anon_sym_LT_LT_EQ] = ACTIONS(917), + [anon_sym_GT_GT_EQ] = ACTIONS(917), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_AT] = ACTIONS(917), + [anon_sym__] = ACTIONS(915), + [anon_sym_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_DOT_DOT_EQ] = ACTIONS(917), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_COLON_COLON] = ACTIONS(917), + [anon_sym_DASH_GT] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(915), + [anon_sym_as] = ACTIONS(915), + [anon_sym_async] = ACTIONS(915), + [anon_sym_await] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_default] = ACTIONS(915), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_fn] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_gen] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_impl] = ACTIONS(915), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mod] = ACTIONS(915), + [anon_sym_pub] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_static] = ACTIONS(915), + [anon_sym_struct] = ACTIONS(915), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_type] = ACTIONS(915), + [anon_sym_union] = ACTIONS(915), + [anon_sym_unsafe] = ACTIONS(915), + [anon_sym_use] = ACTIONS(915), + [anon_sym_where] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [sym_mutable_specifier] = ACTIONS(915), + [sym_integer_literal] = ACTIONS(917), + [aux_sym_string_literal_token1] = ACTIONS(917), + [sym_char_literal] = ACTIONS(917), + [anon_sym_true] = ACTIONS(915), + [anon_sym_false] = ACTIONS(915), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1037), - [sym_super] = ACTIONS(1037), - [sym_crate] = ACTIONS(1037), - [sym__raw_string_literal_start] = ACTIONS(1039), - [sym_float_literal] = ACTIONS(1039), + [sym_self] = ACTIONS(915), + [sym_super] = ACTIONS(915), + [sym_crate] = ACTIONS(915), + [sym__raw_string_literal_start] = ACTIONS(917), + [sym_float_literal] = ACTIONS(917), }, [STATE(208)] = { [sym_line_comment] = STATE(208), [sym_block_comment] = STATE(208), - [sym_identifier] = ACTIONS(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), + [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(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1041), - [sym__raw_string_literal_start] = ACTIONS(1043), - [sym_float_literal] = ACTIONS(1043), + [sym_self] = ACTIONS(919), + [sym_super] = ACTIONS(919), + [sym_crate] = ACTIONS(919), + [sym__raw_string_literal_start] = ACTIONS(921), + [sym_float_literal] = ACTIONS(921), }, [STATE(209)] = { [sym_line_comment] = STATE(209), [sym_block_comment] = STATE(209), + [sym_identifier] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_RBRACK] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_EQ_GT] = ACTIONS(1027), + [anon_sym_COLON] = ACTIONS(1025), + [anon_sym_DOLLAR] = ACTIONS(1027), + [anon_sym_PLUS] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_QMARK] = ACTIONS(1027), + [anon_sym_u8] = ACTIONS(1025), + [anon_sym_i8] = ACTIONS(1025), + [anon_sym_u16] = ACTIONS(1025), + [anon_sym_i16] = ACTIONS(1025), + [anon_sym_u32] = ACTIONS(1025), + [anon_sym_i32] = ACTIONS(1025), + [anon_sym_u64] = ACTIONS(1025), + [anon_sym_i64] = ACTIONS(1025), + [anon_sym_u128] = ACTIONS(1025), + [anon_sym_i128] = ACTIONS(1025), + [anon_sym_isize] = ACTIONS(1025), + [anon_sym_usize] = ACTIONS(1025), + [anon_sym_f32] = ACTIONS(1025), + [anon_sym_f64] = ACTIONS(1025), + [anon_sym_bool] = ACTIONS(1025), + [anon_sym_str] = ACTIONS(1025), + [anon_sym_char] = ACTIONS(1025), + [anon_sym_DASH] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1025), + [anon_sym_PERCENT] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1025), + [anon_sym_GT_GT] = ACTIONS(1025), + [anon_sym_PLUS_EQ] = ACTIONS(1027), + [anon_sym_DASH_EQ] = ACTIONS(1027), + [anon_sym_STAR_EQ] = ACTIONS(1027), + [anon_sym_SLASH_EQ] = ACTIONS(1027), + [anon_sym_PERCENT_EQ] = ACTIONS(1027), + [anon_sym_CARET_EQ] = ACTIONS(1027), + [anon_sym_AMP_EQ] = ACTIONS(1027), + [anon_sym_PIPE_EQ] = ACTIONS(1027), + [anon_sym_LT_LT_EQ] = ACTIONS(1027), + [anon_sym_GT_GT_EQ] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(1025), + [anon_sym_EQ_EQ] = ACTIONS(1027), + [anon_sym_BANG_EQ] = ACTIONS(1027), + [anon_sym_GT] = ACTIONS(1025), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_GT_EQ] = ACTIONS(1027), + [anon_sym_LT_EQ] = ACTIONS(1027), + [anon_sym_AT] = ACTIONS(1027), + [anon_sym__] = ACTIONS(1025), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), + [anon_sym_COMMA] = ACTIONS(1027), + [anon_sym_COLON_COLON] = ACTIONS(1027), + [anon_sym_DASH_GT] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1025), + [anon_sym_as] = ACTIONS(1025), + [anon_sym_async] = ACTIONS(1025), + [anon_sym_await] = ACTIONS(1025), + [anon_sym_break] = ACTIONS(1025), + [anon_sym_const] = ACTIONS(1025), + [anon_sym_continue] = ACTIONS(1025), + [anon_sym_default] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1025), + [anon_sym_fn] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(1025), + [anon_sym_gen] = ACTIONS(1025), + [anon_sym_if] = ACTIONS(1025), + [anon_sym_impl] = ACTIONS(1025), + [anon_sym_let] = ACTIONS(1025), + [anon_sym_loop] = ACTIONS(1025), + [anon_sym_match] = ACTIONS(1025), + [anon_sym_mod] = ACTIONS(1025), + [anon_sym_pub] = ACTIONS(1025), + [anon_sym_return] = ACTIONS(1025), + [anon_sym_static] = ACTIONS(1025), + [anon_sym_struct] = ACTIONS(1025), + [anon_sym_trait] = ACTIONS(1025), + [anon_sym_type] = ACTIONS(1025), + [anon_sym_union] = ACTIONS(1025), + [anon_sym_unsafe] = ACTIONS(1025), + [anon_sym_use] = ACTIONS(1025), + [anon_sym_where] = ACTIONS(1025), + [anon_sym_while] = ACTIONS(1025), + [sym_mutable_specifier] = ACTIONS(1025), + [sym_integer_literal] = ACTIONS(1027), + [aux_sym_string_literal_token1] = ACTIONS(1027), + [sym_char_literal] = ACTIONS(1027), + [anon_sym_true] = ACTIONS(1025), + [anon_sym_false] = ACTIONS(1025), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1025), + [sym_super] = ACTIONS(1025), + [sym_crate] = ACTIONS(1025), + [sym__raw_string_literal_start] = ACTIONS(1027), + [sym_float_literal] = ACTIONS(1027), + }, + [STATE(210)] = { + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), [sym_identifier] = ACTIONS(1045), [anon_sym_SEMI] = ACTIONS(1047), [anon_sym_LPAREN] = ACTIONS(1047), @@ -41087,9 +41278,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(210)] = { - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), + [STATE(211)] = { + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), [sym_identifier] = ACTIONS(1049), [anon_sym_SEMI] = ACTIONS(1051), [anon_sym_LPAREN] = ACTIONS(1051), @@ -41196,64 +41387,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1049), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym__raw_string_literal_start] = ACTIONS(1051), - [sym_float_literal] = ACTIONS(1051), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym__raw_string_literal_start] = ACTIONS(1051), + [sym_float_literal] = ACTIONS(1051), + }, + [STATE(212)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1937), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), + [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(211)] = { - [sym_attribute_item] = STATE(1031), - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1936), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), + [STATE(213)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1658), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [aux_sym_enum_variant_list_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41317,173 +41623,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(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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1660), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), + [STATE(214)] = { + [sym_attribute_item] = STATE(1050), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1664), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [aux_sym_enum_variant_list_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41547,220 +41738,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(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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1439), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1701), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(215), [sym_block_comment] = STATE(215), - [sym_identifier] = ACTIONS(467), + [aux_sym_tuple_expression_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1053), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [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(1053), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1057), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(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(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -41769,61 +41845,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(216)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1747), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1439), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1574), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1532), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(216), [sym_block_comment] = STATE(216), [sym_identifier] = ACTIONS(339), @@ -41853,10 +41929,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(1053), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1057), + [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41891,59 +41967,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(217)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(217), [sym_block_comment] = STATE(217), - [aux_sym_tuple_expression_repeat1] = STATE(245), + [aux_sym_tuple_expression_repeat1] = STATE(222), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1059), + [anon_sym_RPAREN] = ACTIONS(1061), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42005,57 +42081,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(218)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1548), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1439), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(218), [sym_block_comment] = STATE(218), + [aux_sym_tuple_expression_repeat1] = STATE(224), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1061), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42076,15 +42154,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1061), + [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), @@ -42119,59 +42195,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(219)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1447), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), [sym_line_comment] = STATE(219), [sym_block_comment] = STATE(219), - [aux_sym_tuple_expression_repeat1] = STATE(240), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1069), + [anon_sym_raw] = ACTIONS(1071), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(220)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1447), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1075), + [anon_sym_raw] = ACTIONS(1077), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(221)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [aux_sym_tuple_expression_repeat1] = STATE(217), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1079), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42232,58 +42536,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(220)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1557), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1501), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), + [STATE(222)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [aux_sym_tuple_expression_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1081), + [anon_sym_LPAREN] = ACTIONS(1084), + [anon_sym_RPAREN] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1095), + [anon_sym_u8] = ACTIONS(1098), + [anon_sym_i8] = ACTIONS(1098), + [anon_sym_u16] = ACTIONS(1098), + [anon_sym_i16] = ACTIONS(1098), + [anon_sym_u32] = ACTIONS(1098), + [anon_sym_i32] = ACTIONS(1098), + [anon_sym_u64] = ACTIONS(1098), + [anon_sym_i64] = ACTIONS(1098), + [anon_sym_u128] = ACTIONS(1098), + [anon_sym_i128] = ACTIONS(1098), + [anon_sym_isize] = ACTIONS(1098), + [anon_sym_usize] = ACTIONS(1098), + [anon_sym_f32] = ACTIONS(1098), + [anon_sym_f64] = ACTIONS(1098), + [anon_sym_bool] = ACTIONS(1098), + [anon_sym_str] = ACTIONS(1098), + [anon_sym_char] = ACTIONS(1098), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1095), + [anon_sym_AMP] = ACTIONS(1101), + [anon_sym_PIPE] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1107), + [anon_sym_DOT_DOT] = ACTIONS(1110), + [anon_sym_COLON_COLON] = ACTIONS(1113), + [anon_sym_SQUOTE] = ACTIONS(1116), + [anon_sym_async] = ACTIONS(1119), + [anon_sym_break] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1125), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_default] = ACTIONS(1131), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_gen] = ACTIONS(1137), + [anon_sym_if] = ACTIONS(1140), + [anon_sym_loop] = ACTIONS(1143), + [anon_sym_match] = ACTIONS(1146), + [anon_sym_return] = ACTIONS(1149), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_union] = ACTIONS(1131), + [anon_sym_unsafe] = ACTIONS(1155), + [anon_sym_while] = ACTIONS(1158), + [anon_sym_yield] = ACTIONS(1161), + [anon_sym_move] = ACTIONS(1164), + [anon_sym_try] = ACTIONS(1167), + [sym_integer_literal] = ACTIONS(1170), + [aux_sym_string_literal_token1] = ACTIONS(1173), + [sym_char_literal] = ACTIONS(1170), + [anon_sym_true] = ACTIONS(1176), + [anon_sym_false] = ACTIONS(1176), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1179), + [sym_super] = ACTIONS(1182), + [sym_crate] = ACTIONS(1182), + [sym_metavariable] = ACTIONS(1185), + [sym__raw_string_literal_start] = ACTIONS(1188), + [sym_float_literal] = ACTIONS(1170), + }, + [STATE(223)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1532), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(224)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [aux_sym_tuple_expression_repeat1] = STATE(222), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1191), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42304,15 +42838,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(1061), + [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), @@ -42346,58 +42878,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(221)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1419), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), + [STATE(225)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [aux_sym_tuple_expression_repeat1] = STATE(232), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1193), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42423,7 +42957,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(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -42441,8 +42975,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(1069), - [anon_sym_raw] = ACTIONS(1071), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -42460,175 +42992,403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(222)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1694), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1501), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [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), + [STATE(226)] = { + [sym_attribute_item] = STATE(394), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(2995), + [sym_variadic_parameter] = STATE(2995), + [sym_parameter] = STATE(2995), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2730), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1217), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1225), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(227)] = { + [sym_attribute_item] = STATE(419), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(2859), + [sym_variadic_parameter] = STATE(2859), + [sym_parameter] = STATE(2859), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2651), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1275), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(228)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1824), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1840), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1067), + [anon_sym__] = ACTIONS(1277), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1281), [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_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(223)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), + [STATE(229)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1828), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1913), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), [sym_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_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -42646,13 +43406,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym__] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1285), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -42669,8 +43431,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(1081), - [anon_sym_raw] = ACTIONS(1083), [anon_sym_yield] = ACTIONS(445), [anon_sym_move] = ACTIONS(447), [anon_sym_try] = ACTIONS(449), @@ -42688,58 +43448,288 @@ 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(224)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1766), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1501), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), + [STATE(230)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1708), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1532), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(231)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1672), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1511), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(232)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [aux_sym_tuple_expression_repeat1] = STATE(222), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1291), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42760,15 +43750,127 @@ 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_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(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [aux_sym_tuple_expression_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1291), + [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(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), @@ -42795,112 +43897,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(234)] = { + [sym_attribute_item] = STATE(407), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3068), + [sym_variadic_parameter] = STATE(3068), + [sym_parameter] = STATE(3068), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2595), + [sym_bracketed_type] = STATE(3661), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2571), + [sym_scoped_identifier] = STATE(2200), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2548), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1303), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1305), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1313), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(235)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1858), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1319), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1321), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(225)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1419), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [sym_identifier] = ACTIONS(467), + [STATE(236)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1511), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym__] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1289), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1085), - [anon_sym_raw] = ACTIONS(1087), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42909,108 +44239,108 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(226)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1635), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(2629), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [sym_identifier] = ACTIONS(467), + [STATE(237)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1688), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1472), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym__] = ACTIONS(1323), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1325), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [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_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -43023,67 +44353,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(227)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [aux_sym_tuple_expression_repeat1] = STATE(240), + [STATE(238)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1572), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1472), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), [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), @@ -43104,13 +44432,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(1323), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1325), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -43144,289 +44474,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(228)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1672), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), + [STATE(239)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1798), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_let_condition] = STATE(2587), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1521), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [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(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(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(229)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1879), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(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(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1784), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1712), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43444,15 +44547,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(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1097), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [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), @@ -43462,6 +44563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(427), [anon_sym_gen] = ACTIONS(429), [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(995), [anon_sym_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -43486,62 +44588,62 @@ 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(231)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_let_condition] = STATE(2629), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), + [STATE(240)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1923), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_let_condition] = STATE(2587), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43559,12 +44661,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(993), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -43575,7 +44677,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_let] = ACTIONS(995), [anon_sym_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -43600,219 +44702,219 @@ 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(232)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1789), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1697), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [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), + [STATE(241)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1667), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(2587), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1101), - [anon_sym_DOT_DOT] = ACTIONS(1079), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1103), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(233)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1521), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [sym_identifier] = ACTIONS(339), + [STATE(242)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_let_condition] = STATE(2587), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1089), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1091), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(929), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -43821,67 +44923,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(234)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [aux_sym_tuple_expression_repeat1] = STATE(240), + [STATE(243)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1511), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1105), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43902,13 +45002,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(1287), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1289), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -43942,60 +45044,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(235)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [aux_sym_tuple_expression_repeat1] = STATE(219), + [STATE(244)] = { + [sym_attribute_item] = STATE(407), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3068), + [sym_variadic_parameter] = STATE(3068), + [sym_parameter] = STATE(3068), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2595), + [sym_bracketed_type] = STATE(3661), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2571), + [sym_scoped_identifier] = STATE(2200), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2548), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1303), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1313), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(245)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1784), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1532), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), [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), @@ -44016,13 +45230,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(1055), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44056,176 +45272,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(236)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1716), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_let_condition] = STATE(2629), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), + [STATE(246)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [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(237)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1928), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_let_condition] = STATE(2629), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), [sym_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_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -44243,12 +45344,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(983), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -44259,7 +45360,6 @@ 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), @@ -44267,6 +45367,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(425), [anon_sym_unsafe] = ACTIONS(441), [anon_sym_while] = ACTIONS(443), + [sym_mutable_specifier] = ACTIONS(1331), + [anon_sym_raw] = ACTIONS(1333), [anon_sym_yield] = ACTIONS(445), [anon_sym_move] = ACTIONS(447), [anon_sym_try] = ACTIONS(449), @@ -44284,170 +45386,170 @@ 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(238)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1501), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), - [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(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(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(247)] = { + [sym_attribute_item] = STATE(407), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3068), + [sym_variadic_parameter] = STATE(3068), + [sym_parameter] = STATE(3068), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2595), + [sym_bracketed_type] = STATE(3661), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2571), + [sym_scoped_identifier] = STATE(2200), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2548), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1303), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1337), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1313), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, - [STATE(239)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1738), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1521), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), + [STATE(248)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1792), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1472), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -44475,10 +45577,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(1089), + [anon_sym__] = ACTIONS(1323), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1091), + [anon_sym_DASH_GT] = ACTIONS(1325), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44512,288 +45614,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(240)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1916), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1419), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [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), - [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), - [sym_integer_literal] = ACTIONS(97), - [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(242)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), - [aux_sym_tuple_expression_repeat1] = STATE(234), + [STATE(249)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1447), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1221), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44819,7 +45691,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(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -44837,6 +45709,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1339), + [anon_sym_raw] = ACTIONS(1341), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -44854,60 +45728,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(243)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), - [aux_sym_tuple_expression_repeat1] = STATE(227), + [STATE(250)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1511), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1223), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44928,13 +45800,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(1287), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1289), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44968,105 +45842,219 @@ static 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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1521), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [sym_identifier] = ACTIONS(467), + [STATE(251)] = { + [sym_attribute_item] = STATE(407), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3068), + [sym_variadic_parameter] = STATE(3068), + [sym_parameter] = STATE(3068), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2595), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1345), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1347), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(252)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1724), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1472), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1089), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1091), + [anon_sym__] = ACTIONS(1323), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1325), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -45075,67 +46063,1082 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(245)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(245), - [sym_block_comment] = STATE(245), - [aux_sym_tuple_expression_repeat1] = STATE(240), + [STATE(253)] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3183), + [sym_variadic_parameter] = STATE(3183), + [sym_parameter] = STATE(3183), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2992), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(254)] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3183), + [sym_variadic_parameter] = STATE(3183), + [sym_parameter] = STATE(3183), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2992), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1353), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(255)] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3183), + [sym_variadic_parameter] = STATE(3183), + [sym_parameter] = STATE(3183), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2992), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1355), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(256)] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3183), + [sym_variadic_parameter] = STATE(3183), + [sym_parameter] = STATE(3183), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2992), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(257)] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3183), + [sym_variadic_parameter] = STATE(3183), + [sym_parameter] = STATE(3183), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2992), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1359), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(258)] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3183), + [sym_variadic_parameter] = STATE(3183), + [sym_parameter] = STATE(3183), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2992), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(259)] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3183), + [sym_variadic_parameter] = STATE(3183), + [sym_parameter] = STATE(3183), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2992), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(260)] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3183), + [sym_variadic_parameter] = STATE(3183), + [sym_parameter] = STATE(3183), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2992), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(261)] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3183), + [sym_variadic_parameter] = STATE(3183), + [sym_parameter] = STATE(3183), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2992), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(262)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1925), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), [sym_identifier] = ACTIONS(339), [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), @@ -45196,217 +47199,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(246)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1439), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1540), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), - [sym_identifier] = ACTIONS(339), + [STATE(263)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -45415,63 +47304,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(248)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), + [STATE(264)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1924), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45534,56 +47423,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(249)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), + [STATE(265)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1576), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45611,7 +47500,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(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -45646,168 +47535,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(250)] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2950), - [sym_variadic_parameter] = STATE(2950), - [sym_parameter] = STATE(2950), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2754), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2551), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1932), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), + [STATE(266)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1495), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45835,7 +47612,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(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -45870,56 +47647,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(252)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1808), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), + [STATE(267)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45982,56 +47759,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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1901), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), + [STATE(268)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46094,172 +47871,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(254)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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(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(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [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), - [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(255)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1930), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(255), - [sym_block_comment] = STATE(255), + [STATE(269)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1739), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(471), + [sym_match_expression] = STATE(471), + [sym_while_expression] = STATE(471), + [sym_loop_expression] = STATE(471), + [sym_for_expression] = STATE(471), + [sym_const_block] = STATE(471), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3729), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(471), + [sym_async_block] = STATE(471), + [sym_gen_block] = STATE(471), + [sym_try_block] = STATE(471), + [sym_block] = STATE(471), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1369), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46286,6 +47951,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1373), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_gen] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1383), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1389), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_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(270)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1578), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -46318,56 +48095,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(256)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1941), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), + [STATE(271)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1922), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46430,56 +48207,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(257)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), + [STATE(272)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46542,56 +48319,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(258)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), + [STATE(273)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1851), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46654,56 +48431,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(259)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1537), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), + [STATE(274)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1579), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46731,7 +48508,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(1061), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -46766,91 +48543,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(260)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1609), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), - [sym_identifier] = ACTIONS(467), + [STATE(275)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1614), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -46858,7 +48635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -46871,63 +48648,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(261)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), + [STATE(276)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1580), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46955,7 +48732,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(1061), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -46990,56 +48767,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(262)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1539), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), + [STATE(277)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1549), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47067,7 +48844,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(1061), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47102,56 +48879,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(263)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1541), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), + [STATE(278)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1550), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47179,7 +48956,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(1061), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47214,56 +48991,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(264)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1542), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), + [STATE(279)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1548), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47291,7 +49068,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(1061), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47326,56 +49103,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(265)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1543), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), + [STATE(280)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1551), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47403,7 +49180,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(1061), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47438,56 +49215,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(266)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), + [STATE(281)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1557), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47515,7 +49292,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(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47550,56 +49327,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(267)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1823), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), + [STATE(282)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1558), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47627,7 +49404,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(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47662,56 +49439,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(268)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), + [STATE(283)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1899), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47774,60 +49551,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(269)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), + [STATE(284)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1900), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47854,24 +49631,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(1303), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(353), [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_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(1317), - [anon_sym_while] = ACTIONS(1319), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1321), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -47886,56 +49663,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(270)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1920), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), + [STATE(285)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1912), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47998,60 +49775,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(271)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1927), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), + [STATE(286)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1914), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_for_expression] = STATE(473), + [sym_const_block] = STATE(473), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3729), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(473), + [sym_async_block] = STATE(473), + [sym_gen_block] = STATE(473), + [sym_try_block] = STATE(473), + [sym_block] = STATE(473), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1369), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48078,24 +49855,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(1371), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1373), [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(1375), + [anon_sym_gen] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1383), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1387), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1389), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48110,56 +49887,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(272)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1544), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), + [STATE(287)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1926), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48187,7 +49964,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(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48222,56 +49999,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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1545), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), + [STATE(288)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1921), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48299,7 +50076,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(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48334,56 +50111,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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1546), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), + [STATE(289)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1567), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48411,7 +50188,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(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48446,56 +50223,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(275)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1547), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), + [STATE(290)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1434), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48523,7 +50300,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(1061), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48558,56 +50335,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(276)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), + [STATE(291)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48670,56 +50447,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(277)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), + [STATE(292)] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3183), + [sym_variadic_parameter] = STATE(3183), + [sym_parameter] = STATE(3183), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2992), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1229), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(293)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1759), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48782,60 +50671,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(278)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1934), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), + [STATE(294)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1943), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(471), + [sym_match_expression] = STATE(471), + [sym_while_expression] = STATE(471), + [sym_loop_expression] = STATE(471), + [sym_for_expression] = STATE(471), + [sym_const_block] = STATE(471), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3729), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(471), + [sym_async_block] = STATE(471), + [sym_gen_block] = STATE(471), + [sym_try_block] = STATE(471), + [sym_block] = STATE(471), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1369), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48862,24 +50751,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(1303), + [anon_sym_async] = ACTIONS(1371), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(1373), [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_for] = ACTIONS(1375), + [anon_sym_gen] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1383), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1319), + [anon_sym_unsafe] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1387), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1321), + [anon_sym_try] = ACTIONS(1389), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48894,56 +50783,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(279)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1940), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), + [STATE(295)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1947), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49006,168 +50895,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(280)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1505), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), - [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(1061), - [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(281)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1908), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), + [STATE(296)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1438), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49195,7 +50972,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(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49230,60 +51007,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(282)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(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(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3706), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [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(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), + [STATE(297)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1935), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(473), + [sym_match_expression] = STATE(473), + [sym_while_expression] = STATE(473), + [sym_loop_expression] = STATE(473), + [sym_for_expression] = STATE(473), + [sym_const_block] = STATE(473), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3729), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(473), + [sym_async_block] = STATE(473), + [sym_gen_block] = STATE(473), + [sym_try_block] = STATE(473), + [sym_block] = STATE(473), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1301), + [anon_sym_LBRACE] = ACTIONS(1369), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49310,24 +51087,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(1303), + [anon_sym_async] = ACTIONS(1371), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1305), + [anon_sym_const] = ACTIONS(1373), [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_for] = ACTIONS(1375), + [anon_sym_gen] = ACTIONS(1377), + [anon_sym_if] = ACTIONS(1379), + [anon_sym_loop] = ACTIONS(1381), + [anon_sym_match] = ACTIONS(1383), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_while] = ACTIONS(1319), + [anon_sym_unsafe] = ACTIONS(1385), + [anon_sym_while] = ACTIONS(1387), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1321), + [anon_sym_try] = ACTIONS(1389), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49342,56 +51119,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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), + [STATE(298)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1952), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49454,173 +51231,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(284)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1480), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [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(1061), - [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(285)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), + [STATE(299)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1719), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -49638,12 +51303,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -49678,91 +51343,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(286)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1507), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(467), + [STATE(300)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1538), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -49770,7 +51435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -49783,98 +51448,98 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(287)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1633), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), - [sym_identifier] = ACTIONS(467), + [STATE(301)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -49882,7 +51547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -49895,98 +51560,98 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(288)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), - [sym_identifier] = ACTIONS(467), + [STATE(302)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1495), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -49994,7 +51659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -50007,98 +51672,98 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(289)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1636), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(467), + [STATE(303)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -50106,7 +51771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -50119,98 +51784,98 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(290)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1676), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), - [sym_identifier] = ACTIONS(467), + [STATE(304)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1668), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -50218,7 +51883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -50231,98 +51896,98 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(291)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(467), + [STATE(305)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1663), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -50330,7 +51995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -50343,110 +52008,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(292)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_identifier] = ACTIONS(467), + [STATE(306)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1731), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50455,98 +52120,98 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(293)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(467), + [STATE(307)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -50554,7 +52219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -50567,98 +52232,98 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(294)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1656), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(467), + [STATE(308)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -50666,7 +52331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -50679,98 +52344,98 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(295)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1661), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(467), + [STATE(309)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1680), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -50778,7 +52443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -50791,98 +52456,98 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(296)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1662), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(467), + [STATE(310)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1684), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -50890,7 +52555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -50903,98 +52568,98 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(297)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1664), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_identifier] = ACTIONS(467), + [STATE(311)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1687), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -51002,7 +52667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -51015,63 +52680,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(298)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1549), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), + [STATE(312)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1567), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51099,7 +52764,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(1061), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51134,91 +52799,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(299)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1480), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(467), + [STATE(313)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1438), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -51226,7 +52891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -51239,68 +52904,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(300)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1912), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), + [STATE(314)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1934), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -51318,12 +52983,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(983), + [anon_sym_DOT_DOT] = ACTIONS(993), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -51358,215 +53023,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(301)] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2950), - [sym_variadic_parameter] = STATE(2950), - [sym_parameter] = STATE(2950), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2754), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(467), + [STATE(315)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1744), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51575,110 +53128,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(303)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1507), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), - [sym_identifier] = ACTIONS(467), + [STATE(316)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1610), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), [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_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(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), @@ -51687,110 +53240,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(304)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(467), + [STATE(317)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1538), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_identifier] = ACTIONS(339), [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_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [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(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [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(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), @@ -51799,110 +53352,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(305)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(467), + [STATE(318)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1538), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51911,110 +53464,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(306)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(467), + [STATE(319)] = { + [sym_else_clause] = STATE(414), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(1393), + [sym_identifier] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1393), + [anon_sym_macro_rules_BANG] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_LBRACE] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_QMARK] = ACTIONS(1393), + [anon_sym_u8] = ACTIONS(1395), + [anon_sym_i8] = ACTIONS(1395), + [anon_sym_u16] = ACTIONS(1395), + [anon_sym_i16] = ACTIONS(1395), + [anon_sym_u32] = ACTIONS(1395), + [anon_sym_i32] = ACTIONS(1395), + [anon_sym_u64] = ACTIONS(1395), + [anon_sym_i64] = ACTIONS(1395), + [anon_sym_u128] = ACTIONS(1395), + [anon_sym_i128] = ACTIONS(1395), + [anon_sym_isize] = ACTIONS(1395), + [anon_sym_usize] = ACTIONS(1395), + [anon_sym_f32] = ACTIONS(1395), + [anon_sym_f64] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_str] = ACTIONS(1395), + [anon_sym_char] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1395), + [anon_sym_PERCENT] = ACTIONS(1395), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1395), + [anon_sym_GT_GT] = ACTIONS(1395), + [anon_sym_PLUS_EQ] = ACTIONS(1393), + [anon_sym_DASH_EQ] = ACTIONS(1393), + [anon_sym_STAR_EQ] = ACTIONS(1393), + [anon_sym_SLASH_EQ] = ACTIONS(1393), + [anon_sym_PERCENT_EQ] = ACTIONS(1393), + [anon_sym_CARET_EQ] = ACTIONS(1393), + [anon_sym_AMP_EQ] = ACTIONS(1393), + [anon_sym_PIPE_EQ] = ACTIONS(1393), + [anon_sym_LT_LT_EQ] = ACTIONS(1393), + [anon_sym_GT_GT_EQ] = ACTIONS(1393), + [anon_sym_EQ] = ACTIONS(1395), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_BANG_EQ] = ACTIONS(1393), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1393), + [anon_sym_LT_EQ] = ACTIONS(1393), + [anon_sym_DOT] = ACTIONS(1395), + [anon_sym_DOT_DOT] = ACTIONS(1395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1393), + [anon_sym_COLON_COLON] = ACTIONS(1393), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_SQUOTE] = ACTIONS(1395), + [anon_sym_as] = ACTIONS(1395), + [anon_sym_async] = ACTIONS(1395), + [anon_sym_break] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_continue] = ACTIONS(1395), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_fn] = ACTIONS(1395), + [anon_sym_for] = ACTIONS(1395), + [anon_sym_gen] = ACTIONS(1395), + [anon_sym_if] = ACTIONS(1395), + [anon_sym_impl] = ACTIONS(1395), + [anon_sym_let] = ACTIONS(1395), + [anon_sym_loop] = ACTIONS(1395), + [anon_sym_match] = ACTIONS(1395), + [anon_sym_mod] = ACTIONS(1395), + [anon_sym_pub] = ACTIONS(1395), + [anon_sym_return] = ACTIONS(1395), + [anon_sym_static] = ACTIONS(1395), + [anon_sym_struct] = ACTIONS(1395), + [anon_sym_trait] = ACTIONS(1395), + [anon_sym_type] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1395), + [anon_sym_unsafe] = ACTIONS(1395), + [anon_sym_use] = ACTIONS(1395), + [anon_sym_while] = ACTIONS(1395), + [anon_sym_extern] = ACTIONS(1395), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_yield] = ACTIONS(1395), + [anon_sym_move] = ACTIONS(1395), + [anon_sym_try] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1393), + [aux_sym_string_literal_token1] = ACTIONS(1393), + [sym_char_literal] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1393), + [sym__raw_string_literal_start] = ACTIONS(1393), + [sym_float_literal] = ACTIONS(1393), + }, + [STATE(320)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52023,110 +53688,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(307)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(467), + [STATE(321)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1495), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52135,110 +53800,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(308)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1858), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(467), + [STATE(322)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1728), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52247,110 +53912,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(309)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1635), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(467), + [STATE(323)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1729), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52359,110 +54024,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(310)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(467), + [STATE(324)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1730), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52471,110 +54136,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(311)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(467), + [STATE(325)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1667), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(326)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1732), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52583,110 +54360,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(312)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(467), + [STATE(327)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1733), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52695,110 +54472,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(313)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(467), + [STATE(328)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1734), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52807,110 +54584,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(314)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(467), + [STATE(329)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1735), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52919,110 +54696,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(315)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(467), + [STATE(330)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1736), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53031,222 +54808,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(316)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1602), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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(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(317)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1480), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(467), + [STATE(331)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1438), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53255,63 +54920,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(318)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1507), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), + [STATE(332)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1785), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53339,7 +55004,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(1061), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53374,173 +55039,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(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(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1693), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), + [STATE(333)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1850), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -53558,12 +55111,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -53598,173 +55151,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(321)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1739), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [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(322)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1750), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), + [STATE(334)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1794), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -53782,12 +55223,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -53822,61 +55263,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(323)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), + [STATE(335)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -53894,12 +55335,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -53934,61 +55375,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(324)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), + [STATE(336)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -54006,12 +55447,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -54046,61 +55487,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(325)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1752), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), + [STATE(337)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1796), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -54118,12 +55559,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -54158,61 +55599,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(326)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1753), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), + [STATE(338)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1797), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -54230,12 +55671,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -54270,61 +55711,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(327)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), + [STATE(339)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1798), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -54342,12 +55783,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -54382,61 +55823,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(328)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), + [STATE(340)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1799), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -54454,12 +55895,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -54494,61 +55935,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(329)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1756), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), + [STATE(341)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1800), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -54566,12 +56007,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -54606,61 +56047,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(330)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), + [STATE(342)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -54678,12 +56119,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -54718,61 +56159,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(331)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), + [STATE(343)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1802), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -54790,12 +56231,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -54830,61 +56271,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(332)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), + [STATE(344)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1803), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -54902,12 +56343,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -54942,103 +56383,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(333)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(467), + [STATE(345)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1737), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55047,68 +56488,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(334)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1889), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), + [STATE(346)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -55126,12 +56567,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -55166,91 +56607,91 @@ 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(335)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(467), + [STATE(347)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -55258,7 +56699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -55271,110 +56712,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(336)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_identifier] = ACTIONS(467), + [STATE(348)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [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(349)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1737), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55383,68 +56936,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(337)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), + [STATE(350)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -55462,12 +57015,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(983), + [anon_sym_DOT_DOT] = ACTIONS(993), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -55502,61 +57055,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [STATE(338)] = { - [sym_bracketed_type] = STATE(3621), - [sym_generic_function] = STATE(1691), - [sym_generic_type_with_turbofish] = STATE(3063), - [sym__expression_except_range] = STATE(1659), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1708), - [sym_scoped_identifier] = STATE(1599), - [sym_scoped_type_identifier_in_expression_position] = STATE(3307), - [sym_range_expression] = STATE(1695), - [sym_unary_expression] = STATE(1691), - [sym_try_expression] = STATE(1691), - [sym_reference_expression] = STATE(1691), - [sym_binary_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_compound_assignment_expr] = STATE(1691), - [sym_type_cast_expression] = STATE(1691), - [sym_return_expression] = STATE(1691), - [sym_yield_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_array_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_tuple_expression] = STATE(1691), - [sym_unit_expression] = STATE(1691), - [sym_struct_expression] = STATE(1691), - [sym_if_expression] = STATE(1691), - [sym_match_expression] = STATE(1691), - [sym_while_expression] = STATE(1691), - [sym_loop_expression] = STATE(1691), - [sym_for_expression] = STATE(1691), - [sym_const_block] = STATE(1691), - [sym_closure_expression] = STATE(1691), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3712), - [sym_break_expression] = STATE(1691), - [sym_continue_expression] = STATE(1691), - [sym_index_expression] = STATE(1691), - [sym_await_expression] = STATE(1691), - [sym_field_expression] = STATE(1671), - [sym_unsafe_block] = STATE(1691), - [sym_async_block] = STATE(1691), - [sym_gen_block] = STATE(1691), - [sym_try_block] = STATE(1691), - [sym_block] = STATE(1691), - [sym__literal] = STATE(1691), - [sym_string_literal] = STATE(1776), - [sym_raw_string_literal] = STATE(1776), - [sym_boolean_literal] = STATE(1776), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), + [STATE(351)] = { + [sym_bracketed_type] = STATE(3628), + [sym_generic_function] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(2927), + [sym__expression_except_range] = STATE(1645), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1716), + [sym_scoped_identifier] = STATE(1620), + [sym_scoped_type_identifier_in_expression_position] = STATE(3242), + [sym_range_expression] = STATE(1703), + [sym_unary_expression] = STATE(1711), + [sym_try_expression] = STATE(1711), + [sym_reference_expression] = STATE(1711), + [sym_binary_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_compound_assignment_expr] = STATE(1711), + [sym_type_cast_expression] = STATE(1711), + [sym_return_expression] = STATE(1711), + [sym_yield_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_array_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_tuple_expression] = STATE(1711), + [sym_unit_expression] = STATE(1711), + [sym_struct_expression] = STATE(1711), + [sym_if_expression] = STATE(1711), + [sym_match_expression] = STATE(1711), + [sym_while_expression] = STATE(1711), + [sym_loop_expression] = STATE(1711), + [sym_for_expression] = STATE(1711), + [sym_const_block] = STATE(1711), + [sym_closure_expression] = STATE(1711), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3735), + [sym_break_expression] = STATE(1711), + [sym_continue_expression] = STATE(1711), + [sym_index_expression] = STATE(1711), + [sym_await_expression] = STATE(1711), + [sym_field_expression] = STATE(1640), + [sym_unsafe_block] = STATE(1711), + [sym_async_block] = STATE(1711), + [sym_gen_block] = STATE(1711), + [sym_try_block] = STATE(1711), + [sym_block] = STATE(1711), + [sym__literal] = STATE(1711), + [sym_string_literal] = STATE(1819), + [sym_raw_string_literal] = STATE(1819), + [sym_boolean_literal] = STATE(1819), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(989), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -55574,12 +57127,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(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(981), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(991), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1279), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -55614,56 +57167,168 @@ 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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), + [STATE(352)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1434), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1073), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(353)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1933), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55726,103 +57391,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(340)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1505), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(467), + [STATE(354)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2790), + [sym_bracketed_type] = STATE(3661), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2571), + [sym_scoped_identifier] = STATE(2200), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym_closure_expression] = STATE(3136), + [sym_closure_parameters] = STATE(245), + [sym__pattern] = STATE(2844), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1407), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_move] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1315), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(355)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1938), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_identifier] = ACTIONS(339), [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_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [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(1055), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(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(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55831,175 +57608,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(341)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2843), - [sym_variadic_parameter] = STATE(2843), - [sym_parameter] = STATE(2843), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2734), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(356)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2790), + [sym_bracketed_type] = STATE(3661), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2571), + [sym_scoped_identifier] = STATE(2200), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym_closure_expression] = STATE(3136), + [sym_closure_parameters] = STATE(245), + [sym__pattern] = STATE(2844), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1407), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_move] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1315), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, - [STATE(342)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1931), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), + [STATE(357)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1939), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56062,56 +57839,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(343)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1937), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), + [STATE(358)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1940), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56174,215 +57951,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(344)] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2950), - [sym_variadic_parameter] = STATE(2950), - [sym_parameter] = STATE(2950), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2754), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2551), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1505), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(467), + [STATE(359)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1434), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1067), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56391,63 +58056,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(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(346)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1938), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), + [STATE(360)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2790), + [sym_bracketed_type] = STATE(3661), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2571), + [sym_scoped_identifier] = STATE(2200), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym_closure_expression] = STATE(3136), + [sym_closure_parameters] = STATE(245), + [sym__pattern] = STATE(2844), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1407), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_move] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1315), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(361)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(362)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1915), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56510,56 +58399,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(347)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1939), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), + [STATE(363)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56622,392 +58511,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(348)] = { - [sym_attribute_item] = STATE(422), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2993), - [sym_variadic_parameter] = STATE(2993), - [sym_parameter] = STATE(2993), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2577), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2950), - [sym_variadic_parameter] = STATE(2950), - [sym_parameter] = STATE(2950), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2754), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2551), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1899), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), + [STATE(364)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1726), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57070,103 +58623,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(352)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(467), + [STATE(365)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1849), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57175,63 +58728,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(353)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1914), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), + [STATE(366)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1948), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57294,56 +58847,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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1915), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), + [STATE(367)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1920), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57406,91 +58959,91 @@ static 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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1612), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), - [sym_identifier] = ACTIONS(467), + [STATE(368)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1622), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -57498,7 +59051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -57511,63 +59064,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(356)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), + [STATE(369)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1857), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57630,56 +59183,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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1917), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), + [STATE(370)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1928), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57742,56 +59295,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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1905), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), + [STATE(371)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1931), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57854,56 +59407,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(359)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), + [STATE(372)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57966,56 +59519,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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1919), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), + [STATE(373)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1944), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58078,56 +59631,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(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), + [STATE(374)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58190,56 +59743,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(362)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1921), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), + [STATE(375)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1946), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58302,91 +59855,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(363)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1613), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(467), + [STATE(376)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1624), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [sym_identifier] = ACTIONS(465), [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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -58394,7 +59947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -58407,63 +59960,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(364)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), + [STATE(377)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1865), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58526,56 +60079,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(365)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1922), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), + [STATE(378)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58638,56 +60191,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(366)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1923), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), + [STATE(379)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1951), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58750,56 +60303,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(367)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1924), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), + [STATE(380)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1932), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58862,56 +60415,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(368)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1925), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), + [STATE(381)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58974,103 +60527,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(369)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(467), + [STATE(382)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -59079,98 +60632,98 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(370)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1616), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(467), + [STATE(383)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -59178,7 +60731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -59191,63 +60744,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(371)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3106), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1929), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1520), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(233), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), + [STATE(384)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3030), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1941), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1531), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(216), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59310,91 +60863,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(372)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1617), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), - [sym_identifier] = ACTIONS(467), + [STATE(385)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1627), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -59402,7 +60955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -59415,110 +60968,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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(373)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(244), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), - [sym_identifier] = ACTIONS(467), + [STATE(386)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(230), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(1063), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1063), + [anon_sym_BANG] = ACTIONS(1063), + [anon_sym_AMP] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [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(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -59527,98 +61080,98 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(374)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1618), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [sym_identifier] = ACTIONS(467), + [STATE(387)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1628), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -59626,7 +61179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -59639,98 +61192,98 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(375)] = { - [sym_bracketed_type] = STATE(3688), - [sym_generic_function] = STATE(1504), - [sym_generic_type_with_turbofish] = STATE(3056), - [sym__expression_except_range] = STATE(1399), - [sym__expression] = STATE(1619), - [sym_macro_invocation] = STATE(1463), - [sym_scoped_identifier] = STATE(1591), - [sym_scoped_type_identifier_in_expression_position] = STATE(3180), - [sym_range_expression] = STATE(1513), - [sym_unary_expression] = STATE(1504), - [sym_try_expression] = STATE(1504), - [sym_reference_expression] = STATE(1504), - [sym_binary_expression] = STATE(1504), - [sym_assignment_expression] = STATE(1504), - [sym_compound_assignment_expr] = STATE(1504), - [sym_type_cast_expression] = STATE(1504), - [sym_return_expression] = STATE(1504), - [sym_yield_expression] = STATE(1504), - [sym_call_expression] = STATE(1504), - [sym_array_expression] = STATE(1504), - [sym_parenthesized_expression] = STATE(1504), - [sym_tuple_expression] = STATE(1504), - [sym_unit_expression] = STATE(1504), - [sym_struct_expression] = STATE(1504), - [sym_if_expression] = STATE(1504), - [sym_match_expression] = STATE(1504), - [sym_while_expression] = STATE(1504), - [sym_loop_expression] = STATE(1504), - [sym_for_expression] = STATE(1504), - [sym_const_block] = STATE(1504), - [sym_closure_expression] = STATE(1504), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3660), - [sym_break_expression] = STATE(1504), - [sym_continue_expression] = STATE(1504), - [sym_index_expression] = STATE(1504), - [sym_await_expression] = STATE(1504), - [sym_field_expression] = STATE(1401), - [sym_unsafe_block] = STATE(1504), - [sym_async_block] = STATE(1504), - [sym_gen_block] = STATE(1504), - [sym_try_block] = STATE(1504), - [sym_block] = STATE(1504), - [sym__literal] = STATE(1504), - [sym_string_literal] = STATE(1473), - [sym_raw_string_literal] = STATE(1473), - [sym_boolean_literal] = STATE(1473), - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), - [sym_identifier] = ACTIONS(467), + [STATE(388)] = { + [sym_bracketed_type] = STATE(3461), + [sym_generic_function] = STATE(1515), + [sym_generic_type_with_turbofish] = STATE(3058), + [sym__expression_except_range] = STATE(1416), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1490), + [sym_scoped_identifier] = STATE(1601), + [sym_scoped_type_identifier_in_expression_position] = STATE(3187), + [sym_range_expression] = STATE(1524), + [sym_unary_expression] = STATE(1515), + [sym_try_expression] = STATE(1515), + [sym_reference_expression] = STATE(1515), + [sym_binary_expression] = STATE(1515), + [sym_assignment_expression] = STATE(1515), + [sym_compound_assignment_expr] = STATE(1515), + [sym_type_cast_expression] = STATE(1515), + [sym_return_expression] = STATE(1515), + [sym_yield_expression] = STATE(1515), + [sym_call_expression] = STATE(1515), + [sym_array_expression] = STATE(1515), + [sym_parenthesized_expression] = STATE(1515), + [sym_tuple_expression] = STATE(1515), + [sym_unit_expression] = STATE(1515), + [sym_struct_expression] = STATE(1515), + [sym_if_expression] = STATE(1515), + [sym_match_expression] = STATE(1515), + [sym_while_expression] = STATE(1515), + [sym_loop_expression] = STATE(1515), + [sym_for_expression] = STATE(1515), + [sym_const_block] = STATE(1515), + [sym_closure_expression] = STATE(1515), + [sym_closure_parameters] = STATE(223), + [sym_label] = STATE(3669), + [sym_break_expression] = STATE(1515), + [sym_continue_expression] = STATE(1515), + [sym_index_expression] = STATE(1515), + [sym_await_expression] = STATE(1515), + [sym_field_expression] = STATE(1418), + [sym_unsafe_block] = STATE(1515), + [sym_async_block] = STATE(1515), + [sym_gen_block] = STATE(1515), + [sym_try_block] = STATE(1515), + [sym_block] = STATE(1515), + [sym__literal] = STATE(1515), + [sym_string_literal] = STATE(1491), + [sym_raw_string_literal] = STATE(1491), + [sym_boolean_literal] = STATE(1491), + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(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_STAR] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(925), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), @@ -59738,7 +61291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(515), @@ -59751,1829 +61304,388 @@ 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(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(376)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1377), - [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(377)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1381), - [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(378)] = { - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), - [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_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_BANG] = 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_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_COLON_COLON] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1385), - [anon_sym_as] = 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_else] = 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(379)] = { - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), - [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_PLUS] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_QMARK] = 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(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1387), - [anon_sym_PIPE_PIPE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(1389), - [anon_sym_GT_GT] = ACTIONS(1389), - [anon_sym_PLUS_EQ] = ACTIONS(1387), - [anon_sym_DASH_EQ] = ACTIONS(1387), - [anon_sym_STAR_EQ] = ACTIONS(1387), - [anon_sym_SLASH_EQ] = ACTIONS(1387), - [anon_sym_PERCENT_EQ] = ACTIONS(1387), - [anon_sym_CARET_EQ] = ACTIONS(1387), - [anon_sym_AMP_EQ] = ACTIONS(1387), - [anon_sym_PIPE_EQ] = ACTIONS(1387), - [anon_sym_LT_LT_EQ] = ACTIONS(1387), - [anon_sym_GT_GT_EQ] = ACTIONS(1387), - [anon_sym_EQ] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1387), - [anon_sym_BANG_EQ] = ACTIONS(1387), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1387), - [anon_sym_LT_EQ] = ACTIONS(1387), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1387), - [anon_sym_POUND] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1389), - [anon_sym_as] = 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_else] = 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(380)] = { - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), - [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_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [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(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(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(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(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(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_RPAREN] = ACTIONS(1407), - [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(387)] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(423), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(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_line_comment] = STATE(389), [sym_block_comment] = STATE(389), - [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), + [ts_builtin_sym_end] = ACTIONS(1419), + [sym_identifier] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_macro_rules_BANG] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_u8] = ACTIONS(1421), + [anon_sym_i8] = ACTIONS(1421), + [anon_sym_u16] = ACTIONS(1421), + [anon_sym_i16] = ACTIONS(1421), + [anon_sym_u32] = ACTIONS(1421), + [anon_sym_i32] = ACTIONS(1421), + [anon_sym_u64] = ACTIONS(1421), + [anon_sym_i64] = ACTIONS(1421), + [anon_sym_u128] = ACTIONS(1421), + [anon_sym_i128] = ACTIONS(1421), + [anon_sym_isize] = ACTIONS(1421), + [anon_sym_usize] = ACTIONS(1421), + [anon_sym_f32] = ACTIONS(1421), + [anon_sym_f64] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_str] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_PERCENT] = ACTIONS(1421), + [anon_sym_CARET] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1419), + [anon_sym_PIPE_PIPE] = ACTIONS(1419), + [anon_sym_LT_LT] = ACTIONS(1421), + [anon_sym_GT_GT] = ACTIONS(1421), + [anon_sym_PLUS_EQ] = ACTIONS(1419), + [anon_sym_DASH_EQ] = ACTIONS(1419), + [anon_sym_STAR_EQ] = ACTIONS(1419), + [anon_sym_SLASH_EQ] = ACTIONS(1419), + [anon_sym_PERCENT_EQ] = ACTIONS(1419), + [anon_sym_CARET_EQ] = ACTIONS(1419), + [anon_sym_AMP_EQ] = ACTIONS(1419), + [anon_sym_PIPE_EQ] = ACTIONS(1419), + [anon_sym_LT_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_GT_EQ] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_as] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_gen] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_impl] = ACTIONS(1421), + [anon_sym_let] = ACTIONS(1421), + [anon_sym_loop] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_pub] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_trait] = ACTIONS(1421), + [anon_sym_type] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_unsafe] = ACTIONS(1421), + [anon_sym_use] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_else] = ACTIONS(1421), + [anon_sym_yield] = ACTIONS(1421), + [anon_sym_move] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1419), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1421), + [sym_super] = ACTIONS(1421), + [sym_crate] = ACTIONS(1421), + [sym_metavariable] = ACTIONS(1419), + [sym__raw_string_literal_start] = ACTIONS(1419), + [sym_float_literal] = ACTIONS(1419), }, [STATE(390)] = { [sym_line_comment] = STATE(390), [sym_block_comment] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(1417), - [sym_identifier] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_macro_rules_BANG] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LBRACE] = 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_BANG] = 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_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_COLON_COLON] = ACTIONS(1417), - [anon_sym_POUND] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [anon_sym_as] = ACTIONS(1419), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_enum] = ACTIONS(1419), - [anon_sym_fn] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_gen] = ACTIONS(1419), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_impl] = ACTIONS(1419), - [anon_sym_let] = ACTIONS(1419), - [anon_sym_loop] = ACTIONS(1419), - [anon_sym_match] = ACTIONS(1419), - [anon_sym_mod] = ACTIONS(1419), - [anon_sym_pub] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(1419), - [anon_sym_trait] = ACTIONS(1419), - [anon_sym_type] = ACTIONS(1419), - [anon_sym_union] = ACTIONS(1419), - [anon_sym_unsafe] = ACTIONS(1419), - [anon_sym_use] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1419), - [anon_sym_yield] = ACTIONS(1419), - [anon_sym_move] = ACTIONS(1419), - [anon_sym_try] = 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), + [ts_builtin_sym_end] = ACTIONS(1423), + [sym_identifier] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_macro_rules_BANG] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_u8] = ACTIONS(1425), + [anon_sym_i8] = ACTIONS(1425), + [anon_sym_u16] = ACTIONS(1425), + [anon_sym_i16] = ACTIONS(1425), + [anon_sym_u32] = ACTIONS(1425), + [anon_sym_i32] = ACTIONS(1425), + [anon_sym_u64] = ACTIONS(1425), + [anon_sym_i64] = ACTIONS(1425), + [anon_sym_u128] = ACTIONS(1425), + [anon_sym_i128] = ACTIONS(1425), + [anon_sym_isize] = ACTIONS(1425), + [anon_sym_usize] = ACTIONS(1425), + [anon_sym_f32] = ACTIONS(1425), + [anon_sym_f64] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_str] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PERCENT] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_PIPE_PIPE] = ACTIONS(1423), + [anon_sym_LT_LT] = ACTIONS(1425), + [anon_sym_GT_GT] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1423), + [anon_sym_DASH_EQ] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1423), + [anon_sym_SLASH_EQ] = ACTIONS(1423), + [anon_sym_PERCENT_EQ] = ACTIONS(1423), + [anon_sym_CARET_EQ] = ACTIONS(1423), + [anon_sym_AMP_EQ] = ACTIONS(1423), + [anon_sym_PIPE_EQ] = ACTIONS(1423), + [anon_sym_LT_LT_EQ] = ACTIONS(1423), + [anon_sym_GT_GT_EQ] = ACTIONS(1423), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1423), + [anon_sym_BANG_EQ] = ACTIONS(1423), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_LT] = ACTIONS(1425), + [anon_sym_GT_EQ] = ACTIONS(1423), + [anon_sym_LT_EQ] = ACTIONS(1423), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1423), + [anon_sym_COLON_COLON] = ACTIONS(1423), + [anon_sym_POUND] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_as] = ACTIONS(1425), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1425), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_gen] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_impl] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_pub] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_trait] = ACTIONS(1425), + [anon_sym_type] = ACTIONS(1425), + [anon_sym_union] = ACTIONS(1425), + [anon_sym_unsafe] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_yield] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1423), + [aux_sym_string_literal_token1] = ACTIONS(1423), + [sym_char_literal] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1425), + [sym_crate] = ACTIONS(1425), + [sym_metavariable] = ACTIONS(1423), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1423), }, [STATE(391)] = { [sym_line_comment] = STATE(391), [sym_block_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(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(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), + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_identifier] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_macro_rules_BANG] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1427), + [anon_sym_u8] = ACTIONS(1429), + [anon_sym_i8] = ACTIONS(1429), + [anon_sym_u16] = ACTIONS(1429), + [anon_sym_i16] = ACTIONS(1429), + [anon_sym_u32] = ACTIONS(1429), + [anon_sym_i32] = ACTIONS(1429), + [anon_sym_u64] = ACTIONS(1429), + [anon_sym_i64] = ACTIONS(1429), + [anon_sym_u128] = ACTIONS(1429), + [anon_sym_i128] = ACTIONS(1429), + [anon_sym_isize] = ACTIONS(1429), + [anon_sym_usize] = ACTIONS(1429), + [anon_sym_f32] = ACTIONS(1429), + [anon_sym_f64] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_str] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1427), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1429), + [anon_sym_PLUS_EQ] = ACTIONS(1427), + [anon_sym_DASH_EQ] = ACTIONS(1427), + [anon_sym_STAR_EQ] = ACTIONS(1427), + [anon_sym_SLASH_EQ] = ACTIONS(1427), + [anon_sym_PERCENT_EQ] = ACTIONS(1427), + [anon_sym_CARET_EQ] = ACTIONS(1427), + [anon_sym_AMP_EQ] = ACTIONS(1427), + [anon_sym_PIPE_EQ] = ACTIONS(1427), + [anon_sym_LT_LT_EQ] = ACTIONS(1427), + [anon_sym_GT_GT_EQ] = ACTIONS(1427), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1427), + [anon_sym_LT_EQ] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_gen] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_impl] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_pub] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_trait] = ACTIONS(1429), + [anon_sym_type] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_unsafe] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(1429), + [anon_sym_move] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1427), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_crate] = ACTIONS(1429), + [sym_metavariable] = ACTIONS(1427), + [sym__raw_string_literal_start] = ACTIONS(1427), + [sym_float_literal] = ACTIONS(1427), }, [STATE(392)] = { [sym_line_comment] = STATE(392), [sym_block_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(1431), + [sym_identifier] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_macro_rules_BANG] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), [anon_sym_QMARK] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(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_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_PERCENT] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_PIPE] = ACTIONS(1433), [anon_sym_AMP_AMP] = ACTIONS(1431), [anon_sym_PIPE_PIPE] = ACTIONS(1431), - [anon_sym_LT_LT] = ACTIONS(1429), - [anon_sym_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT] = ACTIONS(1433), + [anon_sym_GT_GT] = ACTIONS(1433), [anon_sym_PLUS_EQ] = ACTIONS(1431), [anon_sym_DASH_EQ] = ACTIONS(1431), [anon_sym_STAR_EQ] = ACTIONS(1431), @@ -61584,283 +61696,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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] = ACTIONS(1433), [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] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(1433), [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] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(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), + [anon_sym_COLON_COLON] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_as] = ACTIONS(1433), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_default] = ACTIONS(1433), + [anon_sym_enum] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_gen] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_impl] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_pub] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1433), + [anon_sym_trait] = ACTIONS(1433), + [anon_sym_type] = ACTIONS(1433), + [anon_sym_union] = ACTIONS(1433), + [anon_sym_unsafe] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(1433), + [anon_sym_yield] = ACTIONS(1433), + [anon_sym_move] = ACTIONS(1433), + [anon_sym_try] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1431), + [aux_sym_string_literal_token1] = ACTIONS(1431), + [sym_char_literal] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1433), + [sym_super] = ACTIONS(1433), + [sym_crate] = ACTIONS(1433), + [sym_metavariable] = ACTIONS(1431), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1431), }, [STATE(393)] = { [sym_line_comment] = STATE(393), [sym_block_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(1435), + [sym_identifier] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_macro_rules_BANG] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1435), + [anon_sym_u8] = ACTIONS(1437), + [anon_sym_i8] = ACTIONS(1437), + [anon_sym_u16] = ACTIONS(1437), + [anon_sym_i16] = ACTIONS(1437), + [anon_sym_u32] = ACTIONS(1437), + [anon_sym_i32] = ACTIONS(1437), + [anon_sym_u64] = ACTIONS(1437), + [anon_sym_i64] = ACTIONS(1437), + [anon_sym_u128] = ACTIONS(1437), + [anon_sym_i128] = ACTIONS(1437), + [anon_sym_isize] = ACTIONS(1437), + [anon_sym_usize] = ACTIONS(1437), + [anon_sym_f32] = ACTIONS(1437), + [anon_sym_f64] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_str] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PERCENT] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_LT_LT] = ACTIONS(1437), + [anon_sym_GT_GT] = ACTIONS(1437), + [anon_sym_PLUS_EQ] = ACTIONS(1435), + [anon_sym_DASH_EQ] = ACTIONS(1435), + [anon_sym_STAR_EQ] = ACTIONS(1435), + [anon_sym_SLASH_EQ] = ACTIONS(1435), + [anon_sym_PERCENT_EQ] = ACTIONS(1435), + [anon_sym_CARET_EQ] = ACTIONS(1435), + [anon_sym_AMP_EQ] = ACTIONS(1435), + [anon_sym_PIPE_EQ] = ACTIONS(1435), + [anon_sym_LT_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1435), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1437), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_async] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1437), + [anon_sym_enum] = ACTIONS(1437), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_gen] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_impl] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_pub] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_struct] = ACTIONS(1437), + [anon_sym_trait] = ACTIONS(1437), + [anon_sym_type] = ACTIONS(1437), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_unsafe] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1437), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_move] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1435), + [aux_sym_string_literal_token1] = ACTIONS(1435), + [sym_char_literal] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1437), + [sym_super] = ACTIONS(1437), + [sym_crate] = ACTIONS(1437), + [sym_metavariable] = ACTIONS(1435), + [sym__raw_string_literal_start] = ACTIONS(1435), + [sym_float_literal] = ACTIONS(1435), }, [STATE(394)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3006), + [sym_variadic_parameter] = STATE(3006), + [sym_parameter] = STATE(3006), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2735), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(1437), - [sym_identifier] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_macro_rules_BANG] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_u8] = ACTIONS(1439), - [anon_sym_i8] = ACTIONS(1439), - [anon_sym_u16] = ACTIONS(1439), - [anon_sym_i16] = ACTIONS(1439), - [anon_sym_u32] = ACTIONS(1439), - [anon_sym_i32] = ACTIONS(1439), - [anon_sym_u64] = ACTIONS(1439), - [anon_sym_i64] = ACTIONS(1439), - [anon_sym_u128] = ACTIONS(1439), - [anon_sym_i128] = ACTIONS(1439), - [anon_sym_isize] = ACTIONS(1439), - [anon_sym_usize] = ACTIONS(1439), - [anon_sym_f32] = ACTIONS(1439), - [anon_sym_f64] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_str] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_PERCENT] = ACTIONS(1439), - [anon_sym_CARET] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_PIPE_PIPE] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_PLUS_EQ] = ACTIONS(1437), - [anon_sym_DASH_EQ] = ACTIONS(1437), - [anon_sym_STAR_EQ] = ACTIONS(1437), - [anon_sym_SLASH_EQ] = ACTIONS(1437), - [anon_sym_PERCENT_EQ] = ACTIONS(1437), - [anon_sym_CARET_EQ] = ACTIONS(1437), - [anon_sym_AMP_EQ] = ACTIONS(1437), - [anon_sym_PIPE_EQ] = ACTIONS(1437), - [anon_sym_LT_LT_EQ] = ACTIONS(1437), - [anon_sym_GT_GT_EQ] = ACTIONS(1437), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_EQ_EQ] = ACTIONS(1437), - [anon_sym_BANG_EQ] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1439), - [anon_sym_GT_EQ] = ACTIONS(1437), - [anon_sym_LT_EQ] = ACTIONS(1437), - [anon_sym_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), - [anon_sym_COLON_COLON] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_as] = ACTIONS(1439), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_enum] = ACTIONS(1439), - [anon_sym_fn] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_gen] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_impl] = ACTIONS(1439), - [anon_sym_let] = ACTIONS(1439), - [anon_sym_loop] = ACTIONS(1439), - [anon_sym_match] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_pub] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_struct] = ACTIONS(1439), - [anon_sym_trait] = ACTIONS(1439), - [anon_sym_type] = ACTIONS(1439), - [anon_sym_union] = ACTIONS(1439), - [anon_sym_unsafe] = ACTIONS(1439), - [anon_sym_use] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_extern] = ACTIONS(1439), - [anon_sym_yield] = ACTIONS(1439), - [anon_sym_move] = ACTIONS(1439), - [anon_sym_try] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1437), - [aux_sym_string_literal_token1] = ACTIONS(1437), - [sym_char_literal] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1439), - [sym_super] = ACTIONS(1439), - [sym_crate] = ACTIONS(1439), - [sym_metavariable] = ACTIONS(1437), - [sym__raw_string_literal_start] = ACTIONS(1437), - [sym_float_literal] = ACTIONS(1437), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1439), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(395)] = { [sym_line_comment] = STATE(395), @@ -61973,118 +62087,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1441), }, [STATE(396)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2817), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3069), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2770), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [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(1449), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_QMARK] = ACTIONS(1451), + [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(1449), + [anon_sym_PERCENT] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1447), [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_PIPE] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_PIPE_PIPE] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_PLUS_EQ] = ACTIONS(1451), + [anon_sym_DASH_EQ] = ACTIONS(1451), + [anon_sym_STAR_EQ] = ACTIONS(1451), + [anon_sym_SLASH_EQ] = ACTIONS(1451), + [anon_sym_PERCENT_EQ] = ACTIONS(1451), + [anon_sym_CARET_EQ] = ACTIONS(1451), + [anon_sym_AMP_EQ] = ACTIONS(1451), + [anon_sym_PIPE_EQ] = ACTIONS(1451), + [anon_sym_LT_LT_EQ] = ACTIONS(1451), + [anon_sym_GT_GT_EQ] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1451), + [anon_sym_BANG_EQ] = ACTIONS(1451), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1449), + [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(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), [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_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_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_try] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1457), + [aux_sym_string_literal_token1] = ACTIONS(1457), + [sym_char_literal] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(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), + [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(397)] = { - [sym_line_comment] = STATE(397), - [sym_block_comment] = STATE(397), + [STATE(399)] = { + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), [ts_builtin_sym_end] = ACTIONS(1461), [sym_identifier] = ACTIONS(1463), [anon_sym_SEMI] = ACTIONS(1461), @@ -62192,665 +62526,445 @@ 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(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3147), - [sym_variadic_parameter] = STATE(3147), - [sym_parameter] = STATE(3147), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2975), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(398), - [sym_block_comment] = STATE(398), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(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), }, - [STATE(399)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2817), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3069), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2770), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(399), - [sym_block_comment] = STATE(399), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [STATE(401)] = { + [sym_line_comment] = STATE(401), + [sym_block_comment] = STATE(401), + [ts_builtin_sym_end] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_macro_rules_BANG] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1041), + [anon_sym_i8] = ACTIONS(1041), + [anon_sym_u16] = ACTIONS(1041), + [anon_sym_i16] = ACTIONS(1041), + [anon_sym_u32] = ACTIONS(1041), + [anon_sym_i32] = ACTIONS(1041), + [anon_sym_u64] = ACTIONS(1041), + [anon_sym_i64] = ACTIONS(1041), + [anon_sym_u128] = ACTIONS(1041), + [anon_sym_i128] = ACTIONS(1041), + [anon_sym_isize] = ACTIONS(1041), + [anon_sym_usize] = ACTIONS(1041), + [anon_sym_f32] = ACTIONS(1041), + [anon_sym_f64] = ACTIONS(1041), + [anon_sym_bool] = ACTIONS(1041), + [anon_sym_str] = ACTIONS(1041), + [anon_sym_char] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1041), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_STAR_EQ] = ACTIONS(1043), + [anon_sym_SLASH_EQ] = ACTIONS(1043), + [anon_sym_PERCENT_EQ] = ACTIONS(1043), + [anon_sym_CARET_EQ] = ACTIONS(1043), + [anon_sym_AMP_EQ] = ACTIONS(1043), + [anon_sym_PIPE_EQ] = ACTIONS(1043), + [anon_sym_LT_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_GT_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_fn] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_gen] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_impl] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_pub] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_struct] = ACTIONS(1041), + [anon_sym_trait] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_union] = ACTIONS(1041), + [anon_sym_unsafe] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_yield] = ACTIONS(1041), + [anon_sym_move] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [sym_integer_literal] = ACTIONS(1043), + [aux_sym_string_literal_token1] = ACTIONS(1043), + [sym_char_literal] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(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(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(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), + [sym_self] = ACTIONS(1041), + [sym_super] = ACTIONS(1041), + [sym_crate] = ACTIONS(1041), + [sym_metavariable] = ACTIONS(1043), + [sym__raw_string_literal_start] = ACTIONS(1043), + [sym_float_literal] = ACTIONS(1043), }, [STATE(402)] = { [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [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), + [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), }, [STATE(403)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2817), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3069), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2770), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [ts_builtin_sym_end] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_macro_rules_BANG] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_QMARK] = ACTIONS(1473), + [anon_sym_u8] = ACTIONS(1475), + [anon_sym_i8] = ACTIONS(1475), + [anon_sym_u16] = ACTIONS(1475), + [anon_sym_i16] = ACTIONS(1475), + [anon_sym_u32] = ACTIONS(1475), + [anon_sym_i32] = ACTIONS(1475), + [anon_sym_u64] = ACTIONS(1475), + [anon_sym_i64] = ACTIONS(1475), + [anon_sym_u128] = ACTIONS(1475), + [anon_sym_i128] = ACTIONS(1475), + [anon_sym_isize] = ACTIONS(1475), + [anon_sym_usize] = ACTIONS(1475), + [anon_sym_f32] = ACTIONS(1475), + [anon_sym_f64] = ACTIONS(1475), + [anon_sym_bool] = ACTIONS(1475), + [anon_sym_str] = ACTIONS(1475), + [anon_sym_char] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_SLASH] = ACTIONS(1475), + [anon_sym_PERCENT] = ACTIONS(1475), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_AMP_AMP] = ACTIONS(1473), + [anon_sym_PIPE_PIPE] = ACTIONS(1473), + [anon_sym_LT_LT] = ACTIONS(1475), + [anon_sym_GT_GT] = ACTIONS(1475), + [anon_sym_PLUS_EQ] = ACTIONS(1473), + [anon_sym_DASH_EQ] = ACTIONS(1473), + [anon_sym_STAR_EQ] = ACTIONS(1473), + [anon_sym_SLASH_EQ] = ACTIONS(1473), + [anon_sym_PERCENT_EQ] = ACTIONS(1473), + [anon_sym_CARET_EQ] = ACTIONS(1473), + [anon_sym_AMP_EQ] = ACTIONS(1473), + [anon_sym_PIPE_EQ] = ACTIONS(1473), + [anon_sym_LT_LT_EQ] = ACTIONS(1473), + [anon_sym_GT_GT_EQ] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_EQ_EQ] = ACTIONS(1473), + [anon_sym_BANG_EQ] = ACTIONS(1473), + [anon_sym_GT] = ACTIONS(1475), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(1473), + [anon_sym_LT_EQ] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_as] = ACTIONS(1475), + [anon_sym_async] = ACTIONS(1475), + [anon_sym_break] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_continue] = ACTIONS(1475), + [anon_sym_default] = ACTIONS(1475), + [anon_sym_enum] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1475), + [anon_sym_for] = ACTIONS(1475), + [anon_sym_gen] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1475), + [anon_sym_impl] = ACTIONS(1475), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_loop] = ACTIONS(1475), + [anon_sym_match] = ACTIONS(1475), + [anon_sym_mod] = ACTIONS(1475), + [anon_sym_pub] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_struct] = ACTIONS(1475), + [anon_sym_trait] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1475), + [anon_sym_unsafe] = ACTIONS(1475), + [anon_sym_use] = ACTIONS(1475), + [anon_sym_while] = ACTIONS(1475), + [anon_sym_extern] = ACTIONS(1475), + [anon_sym_yield] = ACTIONS(1475), + [anon_sym_move] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1475), + [sym_integer_literal] = ACTIONS(1473), + [aux_sym_string_literal_token1] = ACTIONS(1473), + [sym_char_literal] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1475), + [sym_super] = ACTIONS(1475), + [sym_crate] = ACTIONS(1475), + [sym_metavariable] = ACTIONS(1473), + [sym__raw_string_literal_start] = ACTIONS(1473), + [sym_float_literal] = ACTIONS(1473), }, [STATE(404)] = { [sym_line_comment] = STATE(404), @@ -63183,1108 +63297,1218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1485), }, [STATE(407)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3084), + [sym_variadic_parameter] = STATE(3084), + [sym_parameter] = STATE(3084), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2802), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [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), - [anon_sym_mod] = ACTIONS(1491), - [anon_sym_pub] = ACTIONS(1491), - [anon_sym_return] = ACTIONS(1491), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_struct] = ACTIONS(1491), - [anon_sym_trait] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_union] = ACTIONS(1491), - [anon_sym_unsafe] = ACTIONS(1491), - [anon_sym_use] = ACTIONS(1491), - [anon_sym_while] = ACTIONS(1491), - [anon_sym_extern] = ACTIONS(1491), - [anon_sym_yield] = ACTIONS(1491), - [anon_sym_move] = ACTIONS(1491), - [anon_sym_try] = ACTIONS(1491), - [sym_integer_literal] = ACTIONS(1489), - [aux_sym_string_literal_token1] = ACTIONS(1489), - [sym_char_literal] = ACTIONS(1489), - [anon_sym_true] = ACTIONS(1491), - [anon_sym_false] = ACTIONS(1491), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1491), - [sym_super] = ACTIONS(1491), - [sym_crate] = ACTIONS(1491), - [sym_metavariable] = ACTIONS(1489), - [sym__raw_string_literal_start] = ACTIONS(1489), - [sym_float_literal] = ACTIONS(1489), + [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(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), - [anon_sym_macro_rules_BANG] = ACTIONS(1493), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_u8] = ACTIONS(1495), - [anon_sym_i8] = ACTIONS(1495), - [anon_sym_u16] = ACTIONS(1495), - [anon_sym_i16] = ACTIONS(1495), - [anon_sym_u32] = ACTIONS(1495), - [anon_sym_i32] = ACTIONS(1495), - [anon_sym_u64] = ACTIONS(1495), - [anon_sym_i64] = ACTIONS(1495), - [anon_sym_u128] = ACTIONS(1495), - [anon_sym_i128] = ACTIONS(1495), - [anon_sym_isize] = ACTIONS(1495), - [anon_sym_usize] = ACTIONS(1495), - [anon_sym_f32] = ACTIONS(1495), - [anon_sym_f64] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_str] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_PERCENT] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1495), - [anon_sym_GT_GT] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1493), - [anon_sym_DASH_EQ] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1493), - [anon_sym_SLASH_EQ] = ACTIONS(1493), - [anon_sym_PERCENT_EQ] = ACTIONS(1493), - [anon_sym_CARET_EQ] = ACTIONS(1493), - [anon_sym_AMP_EQ] = ACTIONS(1493), - [anon_sym_PIPE_EQ] = ACTIONS(1493), - [anon_sym_LT_LT_EQ] = ACTIONS(1493), - [anon_sym_GT_GT_EQ] = ACTIONS(1493), - [anon_sym_EQ] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_as] = ACTIONS(1495), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_break] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_continue] = ACTIONS(1495), - [anon_sym_default] = ACTIONS(1495), - [anon_sym_enum] = ACTIONS(1495), - [anon_sym_fn] = ACTIONS(1495), - [anon_sym_for] = ACTIONS(1495), - [anon_sym_gen] = ACTIONS(1495), - [anon_sym_if] = ACTIONS(1495), - [anon_sym_impl] = ACTIONS(1495), - [anon_sym_let] = ACTIONS(1495), - [anon_sym_loop] = ACTIONS(1495), - [anon_sym_match] = ACTIONS(1495), - [anon_sym_mod] = ACTIONS(1495), - [anon_sym_pub] = ACTIONS(1495), - [anon_sym_return] = ACTIONS(1495), - [anon_sym_static] = ACTIONS(1495), - [anon_sym_struct] = ACTIONS(1495), - [anon_sym_trait] = ACTIONS(1495), - [anon_sym_type] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_unsafe] = ACTIONS(1495), - [anon_sym_use] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [anon_sym_extern] = ACTIONS(1495), - [anon_sym_yield] = ACTIONS(1495), - [anon_sym_move] = ACTIONS(1495), - [anon_sym_try] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1493), - [aux_sym_string_literal_token1] = ACTIONS(1493), - [sym_char_literal] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1495), - [sym_super] = ACTIONS(1495), - [sym_crate] = ACTIONS(1495), - [sym_metavariable] = ACTIONS(1493), - [sym__raw_string_literal_start] = ACTIONS(1493), - [sym_float_literal] = ACTIONS(1493), + [ts_builtin_sym_end] = ACTIONS(1491), + [sym_identifier] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_macro_rules_BANG] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_QMARK] = ACTIONS(1491), + [anon_sym_u8] = ACTIONS(1493), + [anon_sym_i8] = ACTIONS(1493), + [anon_sym_u16] = ACTIONS(1493), + [anon_sym_i16] = ACTIONS(1493), + [anon_sym_u32] = ACTIONS(1493), + [anon_sym_i32] = ACTIONS(1493), + [anon_sym_u64] = ACTIONS(1493), + [anon_sym_i64] = ACTIONS(1493), + [anon_sym_u128] = ACTIONS(1493), + [anon_sym_i128] = ACTIONS(1493), + [anon_sym_isize] = ACTIONS(1493), + [anon_sym_usize] = ACTIONS(1493), + [anon_sym_f32] = ACTIONS(1493), + [anon_sym_f64] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_str] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_PIPE_PIPE] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_PLUS_EQ] = ACTIONS(1491), + [anon_sym_DASH_EQ] = ACTIONS(1491), + [anon_sym_STAR_EQ] = ACTIONS(1491), + [anon_sym_SLASH_EQ] = ACTIONS(1491), + [anon_sym_PERCENT_EQ] = ACTIONS(1491), + [anon_sym_CARET_EQ] = ACTIONS(1491), + [anon_sym_AMP_EQ] = ACTIONS(1491), + [anon_sym_PIPE_EQ] = ACTIONS(1491), + [anon_sym_LT_LT_EQ] = ACTIONS(1491), + [anon_sym_GT_GT_EQ] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1491), + [anon_sym_BANG_EQ] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_GT_EQ] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_COLON_COLON] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_as] = ACTIONS(1493), + [anon_sym_async] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1493), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_gen] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_impl] = ACTIONS(1493), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_loop] = ACTIONS(1493), + [anon_sym_match] = ACTIONS(1493), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_pub] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_struct] = ACTIONS(1493), + [anon_sym_trait] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_unsafe] = ACTIONS(1493), + [anon_sym_use] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_extern] = ACTIONS(1493), + [anon_sym_yield] = ACTIONS(1493), + [anon_sym_move] = ACTIONS(1493), + [anon_sym_try] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1491), + [aux_sym_string_literal_token1] = ACTIONS(1491), + [sym_char_literal] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1493), + [sym_super] = ACTIONS(1493), + [sym_crate] = ACTIONS(1493), + [sym_metavariable] = ACTIONS(1491), + [sym__raw_string_literal_start] = ACTIONS(1491), + [sym_float_literal] = ACTIONS(1491), }, [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), - [anon_sym_macro_rules_BANG] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1497), - [anon_sym_u8] = ACTIONS(1499), - [anon_sym_i8] = ACTIONS(1499), - [anon_sym_u16] = ACTIONS(1499), - [anon_sym_i16] = ACTIONS(1499), - [anon_sym_u32] = ACTIONS(1499), - [anon_sym_i32] = ACTIONS(1499), - [anon_sym_u64] = ACTIONS(1499), - [anon_sym_i64] = ACTIONS(1499), - [anon_sym_u128] = ACTIONS(1499), - [anon_sym_i128] = ACTIONS(1499), - [anon_sym_isize] = ACTIONS(1499), - [anon_sym_usize] = ACTIONS(1499), - [anon_sym_f32] = ACTIONS(1499), - [anon_sym_f64] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_str] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1499), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1497), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_PLUS_EQ] = ACTIONS(1497), - [anon_sym_DASH_EQ] = ACTIONS(1497), - [anon_sym_STAR_EQ] = ACTIONS(1497), - [anon_sym_SLASH_EQ] = ACTIONS(1497), - [anon_sym_PERCENT_EQ] = ACTIONS(1497), - [anon_sym_CARET_EQ] = ACTIONS(1497), - [anon_sym_AMP_EQ] = ACTIONS(1497), - [anon_sym_PIPE_EQ] = ACTIONS(1497), - [anon_sym_LT_LT_EQ] = ACTIONS(1497), - [anon_sym_GT_GT_EQ] = ACTIONS(1497), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ] = ACTIONS(1497), - [anon_sym_GT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_COLON_COLON] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1499), - [anon_sym_as] = ACTIONS(1499), - [anon_sym_async] = ACTIONS(1499), - [anon_sym_break] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_continue] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_enum] = ACTIONS(1499), - [anon_sym_fn] = ACTIONS(1499), - [anon_sym_for] = ACTIONS(1499), - [anon_sym_gen] = ACTIONS(1499), - [anon_sym_if] = ACTIONS(1499), - [anon_sym_impl] = ACTIONS(1499), - [anon_sym_let] = ACTIONS(1499), - [anon_sym_loop] = ACTIONS(1499), - [anon_sym_match] = ACTIONS(1499), - [anon_sym_mod] = ACTIONS(1499), - [anon_sym_pub] = ACTIONS(1499), - [anon_sym_return] = ACTIONS(1499), - [anon_sym_static] = ACTIONS(1499), - [anon_sym_struct] = ACTIONS(1499), - [anon_sym_trait] = ACTIONS(1499), - [anon_sym_type] = ACTIONS(1499), - [anon_sym_union] = ACTIONS(1499), - [anon_sym_unsafe] = ACTIONS(1499), - [anon_sym_use] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1499), - [anon_sym_extern] = ACTIONS(1499), - [anon_sym_yield] = ACTIONS(1499), - [anon_sym_move] = ACTIONS(1499), - [anon_sym_try] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1497), - [aux_sym_string_literal_token1] = ACTIONS(1497), - [sym_char_literal] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1499), - [sym_super] = ACTIONS(1499), - [sym_crate] = ACTIONS(1499), - [sym_metavariable] = ACTIONS(1497), - [sym__raw_string_literal_start] = ACTIONS(1497), - [sym_float_literal] = ACTIONS(1497), + [ts_builtin_sym_end] = ACTIONS(1495), + [sym_identifier] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_macro_rules_BANG] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_QMARK] = ACTIONS(1495), + [anon_sym_u8] = ACTIONS(1497), + [anon_sym_i8] = ACTIONS(1497), + [anon_sym_u16] = ACTIONS(1497), + [anon_sym_i16] = ACTIONS(1497), + [anon_sym_u32] = ACTIONS(1497), + [anon_sym_i32] = ACTIONS(1497), + [anon_sym_u64] = ACTIONS(1497), + [anon_sym_i64] = ACTIONS(1497), + [anon_sym_u128] = ACTIONS(1497), + [anon_sym_i128] = ACTIONS(1497), + [anon_sym_isize] = ACTIONS(1497), + [anon_sym_usize] = ACTIONS(1497), + [anon_sym_f32] = ACTIONS(1497), + [anon_sym_f64] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_str] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_PIPE_PIPE] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_PLUS_EQ] = ACTIONS(1495), + [anon_sym_DASH_EQ] = ACTIONS(1495), + [anon_sym_STAR_EQ] = ACTIONS(1495), + [anon_sym_SLASH_EQ] = ACTIONS(1495), + [anon_sym_PERCENT_EQ] = ACTIONS(1495), + [anon_sym_CARET_EQ] = ACTIONS(1495), + [anon_sym_AMP_EQ] = ACTIONS(1495), + [anon_sym_PIPE_EQ] = ACTIONS(1495), + [anon_sym_LT_LT_EQ] = ACTIONS(1495), + [anon_sym_GT_GT_EQ] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), + [anon_sym_COLON_COLON] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_async] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_enum] = ACTIONS(1497), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_gen] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_impl] = ACTIONS(1497), + [anon_sym_let] = ACTIONS(1497), + [anon_sym_loop] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1497), + [anon_sym_mod] = ACTIONS(1497), + [anon_sym_pub] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_struct] = ACTIONS(1497), + [anon_sym_trait] = ACTIONS(1497), + [anon_sym_type] = ACTIONS(1497), + [anon_sym_union] = ACTIONS(1497), + [anon_sym_unsafe] = ACTIONS(1497), + [anon_sym_use] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym_yield] = ACTIONS(1497), + [anon_sym_move] = ACTIONS(1497), + [anon_sym_try] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1495), + [aux_sym_string_literal_token1] = ACTIONS(1495), + [sym_char_literal] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1497), + [sym_super] = ACTIONS(1497), + [sym_crate] = ACTIONS(1497), + [sym_metavariable] = ACTIONS(1495), + [sym__raw_string_literal_start] = ACTIONS(1495), + [sym_float_literal] = ACTIONS(1495), }, [STATE(411)] = { [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(1501), - [sym_identifier] = ACTIONS(1503), - [anon_sym_SEMI] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym_identifier] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_macro_rules_BANG] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_QMARK] = ACTIONS(1499), + [anon_sym_u8] = ACTIONS(1501), + [anon_sym_i8] = ACTIONS(1501), + [anon_sym_u16] = ACTIONS(1501), + [anon_sym_i16] = ACTIONS(1501), + [anon_sym_u32] = ACTIONS(1501), + [anon_sym_i32] = ACTIONS(1501), + [anon_sym_u64] = ACTIONS(1501), + [anon_sym_i64] = ACTIONS(1501), + [anon_sym_u128] = ACTIONS(1501), + [anon_sym_i128] = ACTIONS(1501), + [anon_sym_isize] = ACTIONS(1501), + [anon_sym_usize] = ACTIONS(1501), + [anon_sym_f32] = ACTIONS(1501), + [anon_sym_f64] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_str] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_SLASH] = ACTIONS(1501), + [anon_sym_PERCENT] = ACTIONS(1501), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_PIPE_PIPE] = ACTIONS(1499), + [anon_sym_LT_LT] = ACTIONS(1501), + [anon_sym_GT_GT] = ACTIONS(1501), + [anon_sym_PLUS_EQ] = ACTIONS(1499), + [anon_sym_DASH_EQ] = ACTIONS(1499), + [anon_sym_STAR_EQ] = ACTIONS(1499), + [anon_sym_SLASH_EQ] = ACTIONS(1499), + [anon_sym_PERCENT_EQ] = ACTIONS(1499), + [anon_sym_CARET_EQ] = ACTIONS(1499), + [anon_sym_AMP_EQ] = ACTIONS(1499), + [anon_sym_PIPE_EQ] = ACTIONS(1499), + [anon_sym_LT_LT_EQ] = ACTIONS(1499), + [anon_sym_GT_GT_EQ] = ACTIONS(1499), + [anon_sym_EQ] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1499), + [anon_sym_BANG_EQ] = ACTIONS(1499), + [anon_sym_GT] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_GT_EQ] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_COLON_COLON] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1501), + [anon_sym_as] = ACTIONS(1501), + [anon_sym_async] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_enum] = ACTIONS(1501), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_gen] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_impl] = ACTIONS(1501), + [anon_sym_let] = ACTIONS(1501), + [anon_sym_loop] = ACTIONS(1501), + [anon_sym_match] = ACTIONS(1501), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_pub] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_struct] = ACTIONS(1501), + [anon_sym_trait] = ACTIONS(1501), + [anon_sym_type] = ACTIONS(1501), + [anon_sym_union] = ACTIONS(1501), + [anon_sym_unsafe] = ACTIONS(1501), + [anon_sym_use] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_extern] = ACTIONS(1501), + [anon_sym_yield] = ACTIONS(1501), + [anon_sym_move] = ACTIONS(1501), + [anon_sym_try] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1499), + [aux_sym_string_literal_token1] = ACTIONS(1499), + [sym_char_literal] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1501), + [sym_super] = ACTIONS(1501), + [sym_crate] = ACTIONS(1501), + [sym_metavariable] = ACTIONS(1499), + [sym__raw_string_literal_start] = ACTIONS(1499), + [sym_float_literal] = ACTIONS(1499), }, [STATE(412)] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(1505), - [sym_identifier] = ACTIONS(1507), - [anon_sym_SEMI] = ACTIONS(1505), - [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), + [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), }, [STATE(413)] = { [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1509), - [sym_identifier] = ACTIONS(1511), - [anon_sym_SEMI] = ACTIONS(1509), - [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), + [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), }, [STATE(414)] = { [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(1513), - [sym_identifier] = ACTIONS(1515), - [anon_sym_SEMI] = ACTIONS(1513), - [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), + [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), }, [STATE(415)] = { [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(1517), - [sym_identifier] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1517), - [anon_sym_macro_rules_BANG] = ACTIONS(1517), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1517), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_QMARK] = ACTIONS(1517), - [anon_sym_u8] = ACTIONS(1519), - [anon_sym_i8] = ACTIONS(1519), - [anon_sym_u16] = ACTIONS(1519), - [anon_sym_i16] = ACTIONS(1519), - [anon_sym_u32] = ACTIONS(1519), - [anon_sym_i32] = ACTIONS(1519), - [anon_sym_u64] = ACTIONS(1519), - [anon_sym_i64] = ACTIONS(1519), - [anon_sym_u128] = ACTIONS(1519), - [anon_sym_i128] = ACTIONS(1519), - [anon_sym_isize] = ACTIONS(1519), - [anon_sym_usize] = ACTIONS(1519), - [anon_sym_f32] = ACTIONS(1519), - [anon_sym_f64] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_str] = ACTIONS(1519), - [anon_sym_char] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_PERCENT] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1517), - [anon_sym_PIPE_PIPE] = ACTIONS(1517), - [anon_sym_LT_LT] = ACTIONS(1519), - [anon_sym_GT_GT] = ACTIONS(1519), - [anon_sym_PLUS_EQ] = ACTIONS(1517), - [anon_sym_DASH_EQ] = ACTIONS(1517), - [anon_sym_STAR_EQ] = ACTIONS(1517), - [anon_sym_SLASH_EQ] = ACTIONS(1517), - [anon_sym_PERCENT_EQ] = ACTIONS(1517), - [anon_sym_CARET_EQ] = ACTIONS(1517), - [anon_sym_AMP_EQ] = ACTIONS(1517), - [anon_sym_PIPE_EQ] = ACTIONS(1517), - [anon_sym_LT_LT_EQ] = ACTIONS(1517), - [anon_sym_GT_GT_EQ] = ACTIONS(1517), - [anon_sym_EQ] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1517), - [anon_sym_LT_EQ] = ACTIONS(1517), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_COLON_COLON] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(1517), - [anon_sym_SQUOTE] = ACTIONS(1519), - [anon_sym_as] = ACTIONS(1519), - [anon_sym_async] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_default] = ACTIONS(1519), - [anon_sym_enum] = ACTIONS(1519), - [anon_sym_fn] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_gen] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_impl] = ACTIONS(1519), - [anon_sym_let] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1519), - [anon_sym_match] = ACTIONS(1519), - [anon_sym_mod] = ACTIONS(1519), - [anon_sym_pub] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_struct] = ACTIONS(1519), - [anon_sym_trait] = ACTIONS(1519), - [anon_sym_type] = ACTIONS(1519), - [anon_sym_union] = ACTIONS(1519), - [anon_sym_unsafe] = ACTIONS(1519), - [anon_sym_use] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_extern] = ACTIONS(1519), - [anon_sym_yield] = ACTIONS(1519), - [anon_sym_move] = ACTIONS(1519), - [anon_sym_try] = ACTIONS(1519), - [sym_integer_literal] = ACTIONS(1517), - [aux_sym_string_literal_token1] = ACTIONS(1517), - [sym_char_literal] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1519), - [sym_super] = ACTIONS(1519), - [sym_crate] = ACTIONS(1519), - [sym_metavariable] = ACTIONS(1517), - [sym__raw_string_literal_start] = ACTIONS(1517), - [sym_float_literal] = ACTIONS(1517), + [ts_builtin_sym_end] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_macro_rules_BANG] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_QMARK] = ACTIONS(1515), + [anon_sym_u8] = ACTIONS(1517), + [anon_sym_i8] = ACTIONS(1517), + [anon_sym_u16] = ACTIONS(1517), + [anon_sym_i16] = ACTIONS(1517), + [anon_sym_u32] = ACTIONS(1517), + [anon_sym_i32] = ACTIONS(1517), + [anon_sym_u64] = ACTIONS(1517), + [anon_sym_i64] = ACTIONS(1517), + [anon_sym_u128] = ACTIONS(1517), + [anon_sym_i128] = ACTIONS(1517), + [anon_sym_isize] = ACTIONS(1517), + [anon_sym_usize] = ACTIONS(1517), + [anon_sym_f32] = ACTIONS(1517), + [anon_sym_f64] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_str] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_LT_LT] = ACTIONS(1517), + [anon_sym_GT_GT] = ACTIONS(1517), + [anon_sym_PLUS_EQ] = ACTIONS(1515), + [anon_sym_DASH_EQ] = ACTIONS(1515), + [anon_sym_STAR_EQ] = ACTIONS(1515), + [anon_sym_SLASH_EQ] = ACTIONS(1515), + [anon_sym_PERCENT_EQ] = ACTIONS(1515), + [anon_sym_CARET_EQ] = ACTIONS(1515), + [anon_sym_AMP_EQ] = ACTIONS(1515), + [anon_sym_PIPE_EQ] = ACTIONS(1515), + [anon_sym_LT_LT_EQ] = ACTIONS(1515), + [anon_sym_GT_GT_EQ] = ACTIONS(1515), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_EQ_EQ] = ACTIONS(1515), + [anon_sym_BANG_EQ] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1517), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_GT_EQ] = ACTIONS(1515), + [anon_sym_LT_EQ] = ACTIONS(1515), + [anon_sym_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_default] = ACTIONS(1517), + [anon_sym_enum] = ACTIONS(1517), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_gen] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_impl] = ACTIONS(1517), + [anon_sym_let] = ACTIONS(1517), + [anon_sym_loop] = ACTIONS(1517), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_mod] = ACTIONS(1517), + [anon_sym_pub] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_struct] = ACTIONS(1517), + [anon_sym_trait] = ACTIONS(1517), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_union] = ACTIONS(1517), + [anon_sym_unsafe] = ACTIONS(1517), + [anon_sym_use] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_extern] = ACTIONS(1517), + [anon_sym_yield] = ACTIONS(1517), + [anon_sym_move] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1515), + [aux_sym_string_literal_token1] = ACTIONS(1515), + [sym_char_literal] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1517), + [sym_super] = ACTIONS(1517), + [sym_crate] = ACTIONS(1517), + [sym_metavariable] = ACTIONS(1515), + [sym__raw_string_literal_start] = ACTIONS(1515), + [sym_float_literal] = ACTIONS(1515), }, [STATE(416)] = { [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1521), - [sym_identifier] = ACTIONS(1523), - [anon_sym_SEMI] = ACTIONS(1521), - [anon_sym_macro_rules_BANG] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1521), - [anon_sym_u8] = ACTIONS(1523), - [anon_sym_i8] = ACTIONS(1523), - [anon_sym_u16] = ACTIONS(1523), - [anon_sym_i16] = ACTIONS(1523), - [anon_sym_u32] = ACTIONS(1523), - [anon_sym_i32] = ACTIONS(1523), - [anon_sym_u64] = ACTIONS(1523), - [anon_sym_i64] = ACTIONS(1523), - [anon_sym_u128] = ACTIONS(1523), - [anon_sym_i128] = ACTIONS(1523), - [anon_sym_isize] = ACTIONS(1523), - [anon_sym_usize] = ACTIONS(1523), - [anon_sym_f32] = ACTIONS(1523), - [anon_sym_f64] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_str] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_SLASH] = ACTIONS(1523), - [anon_sym_PERCENT] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1523), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_PIPE] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1521), - [anon_sym_PIPE_PIPE] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS_EQ] = ACTIONS(1521), - [anon_sym_DASH_EQ] = ACTIONS(1521), - [anon_sym_STAR_EQ] = ACTIONS(1521), - [anon_sym_SLASH_EQ] = ACTIONS(1521), - [anon_sym_PERCENT_EQ] = ACTIONS(1521), - [anon_sym_CARET_EQ] = ACTIONS(1521), - [anon_sym_AMP_EQ] = ACTIONS(1521), - [anon_sym_PIPE_EQ] = ACTIONS(1521), - [anon_sym_LT_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_GT_EQ] = ACTIONS(1521), - [anon_sym_EQ] = ACTIONS(1523), - [anon_sym_EQ_EQ] = ACTIONS(1521), - [anon_sym_BANG_EQ] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1523), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(1521), - [anon_sym_SQUOTE] = ACTIONS(1523), - [anon_sym_as] = ACTIONS(1523), - [anon_sym_async] = ACTIONS(1523), - [anon_sym_break] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_continue] = ACTIONS(1523), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_enum] = ACTIONS(1523), - [anon_sym_fn] = ACTIONS(1523), - [anon_sym_for] = ACTIONS(1523), - [anon_sym_gen] = ACTIONS(1523), - [anon_sym_if] = ACTIONS(1523), - [anon_sym_impl] = ACTIONS(1523), - [anon_sym_let] = ACTIONS(1523), - [anon_sym_loop] = ACTIONS(1523), - [anon_sym_match] = ACTIONS(1523), - [anon_sym_mod] = ACTIONS(1523), - [anon_sym_pub] = ACTIONS(1523), - [anon_sym_return] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_struct] = ACTIONS(1523), - [anon_sym_trait] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_unsafe] = ACTIONS(1523), - [anon_sym_use] = ACTIONS(1523), - [anon_sym_while] = ACTIONS(1523), - [anon_sym_extern] = ACTIONS(1523), - [anon_sym_yield] = ACTIONS(1523), - [anon_sym_move] = ACTIONS(1523), - [anon_sym_try] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1521), - [aux_sym_string_literal_token1] = ACTIONS(1521), - [sym_char_literal] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1523), - [sym_super] = ACTIONS(1523), - [sym_crate] = ACTIONS(1523), - [sym_metavariable] = ACTIONS(1521), - [sym__raw_string_literal_start] = ACTIONS(1521), - [sym_float_literal] = ACTIONS(1521), + [ts_builtin_sym_end] = ACTIONS(1519), + [sym_identifier] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_macro_rules_BANG] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_u8] = ACTIONS(1521), + [anon_sym_i8] = ACTIONS(1521), + [anon_sym_u16] = ACTIONS(1521), + [anon_sym_i16] = ACTIONS(1521), + [anon_sym_u32] = ACTIONS(1521), + [anon_sym_i32] = ACTIONS(1521), + [anon_sym_u64] = ACTIONS(1521), + [anon_sym_i64] = ACTIONS(1521), + [anon_sym_u128] = ACTIONS(1521), + [anon_sym_i128] = ACTIONS(1521), + [anon_sym_isize] = ACTIONS(1521), + [anon_sym_usize] = ACTIONS(1521), + [anon_sym_f32] = ACTIONS(1521), + [anon_sym_f64] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_str] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PERCENT] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_PIPE_PIPE] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_PLUS_EQ] = ACTIONS(1451), + [anon_sym_DASH_EQ] = ACTIONS(1451), + [anon_sym_STAR_EQ] = ACTIONS(1451), + [anon_sym_SLASH_EQ] = ACTIONS(1451), + [anon_sym_PERCENT_EQ] = ACTIONS(1451), + [anon_sym_CARET_EQ] = ACTIONS(1451), + [anon_sym_AMP_EQ] = ACTIONS(1451), + [anon_sym_PIPE_EQ] = ACTIONS(1451), + [anon_sym_LT_LT_EQ] = ACTIONS(1451), + [anon_sym_GT_GT_EQ] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1451), + [anon_sym_BANG_EQ] = ACTIONS(1451), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), + [anon_sym_COLON_COLON] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1521), + [anon_sym_as] = ACTIONS(1449), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_enum] = ACTIONS(1521), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_gen] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_impl] = ACTIONS(1521), + [anon_sym_let] = ACTIONS(1521), + [anon_sym_loop] = ACTIONS(1521), + [anon_sym_match] = ACTIONS(1521), + [anon_sym_mod] = ACTIONS(1521), + [anon_sym_pub] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_struct] = ACTIONS(1521), + [anon_sym_trait] = ACTIONS(1521), + [anon_sym_type] = ACTIONS(1521), + [anon_sym_union] = ACTIONS(1521), + [anon_sym_unsafe] = ACTIONS(1521), + [anon_sym_use] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_extern] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1519), + [aux_sym_string_literal_token1] = ACTIONS(1519), + [sym_char_literal] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1521), + [sym_super] = ACTIONS(1521), + [sym_crate] = ACTIONS(1521), + [sym_metavariable] = ACTIONS(1519), + [sym__raw_string_literal_start] = ACTIONS(1519), + [sym_float_literal] = ACTIONS(1519), }, [STATE(417)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(3163), + [sym_variadic_parameter] = STATE(3163), + [sym_parameter] = STATE(3163), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2983), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1523), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(418)] = { + [sym_line_comment] = STATE(418), + [sym_block_comment] = STATE(418), [ts_builtin_sym_end] = ACTIONS(1525), [sym_identifier] = ACTIONS(1527), [anon_sym_SEMI] = ACTIONS(1525), @@ -64359,5296 +64583,6163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(1527), [anon_sym_gen] = ACTIONS(1527), [anon_sym_if] = ACTIONS(1527), - [anon_sym_impl] = ACTIONS(1527), - [anon_sym_let] = ACTIONS(1527), - [anon_sym_loop] = ACTIONS(1527), - [anon_sym_match] = ACTIONS(1527), - [anon_sym_mod] = ACTIONS(1527), - [anon_sym_pub] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(1527), - [anon_sym_struct] = ACTIONS(1527), - [anon_sym_trait] = ACTIONS(1527), - [anon_sym_type] = ACTIONS(1527), - [anon_sym_union] = ACTIONS(1527), - [anon_sym_unsafe] = ACTIONS(1527), - [anon_sym_use] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_extern] = ACTIONS(1527), - [anon_sym_yield] = ACTIONS(1527), - [anon_sym_move] = ACTIONS(1527), - [anon_sym_try] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1525), - [aux_sym_string_literal_token1] = ACTIONS(1525), - [sym_char_literal] = ACTIONS(1525), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1527), - [sym_super] = ACTIONS(1527), - [sym_crate] = ACTIONS(1527), - [sym_metavariable] = ACTIONS(1525), - [sym__raw_string_literal_start] = ACTIONS(1525), - [sym_float_literal] = ACTIONS(1525), - }, - [STATE(418)] = { - [sym_line_comment] = STATE(418), - [sym_block_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(1529), - [sym_identifier] = ACTIONS(1531), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_macro_rules_BANG] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_RBRACE] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_QMARK] = ACTIONS(1529), - [anon_sym_u8] = ACTIONS(1531), - [anon_sym_i8] = ACTIONS(1531), - [anon_sym_u16] = ACTIONS(1531), - [anon_sym_i16] = ACTIONS(1531), - [anon_sym_u32] = ACTIONS(1531), - [anon_sym_i32] = ACTIONS(1531), - [anon_sym_u64] = ACTIONS(1531), - [anon_sym_i64] = ACTIONS(1531), - [anon_sym_u128] = ACTIONS(1531), - [anon_sym_i128] = ACTIONS(1531), - [anon_sym_isize] = ACTIONS(1531), - [anon_sym_usize] = ACTIONS(1531), - [anon_sym_f32] = ACTIONS(1531), - [anon_sym_f64] = ACTIONS(1531), - [anon_sym_bool] = ACTIONS(1531), - [anon_sym_str] = ACTIONS(1531), - [anon_sym_char] = ACTIONS(1531), - [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_SLASH] = ACTIONS(1531), - [anon_sym_PERCENT] = ACTIONS(1531), - [anon_sym_CARET] = ACTIONS(1531), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1531), - [anon_sym_PIPE] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1529), - [anon_sym_PIPE_PIPE] = ACTIONS(1529), - [anon_sym_LT_LT] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1531), - [anon_sym_PLUS_EQ] = ACTIONS(1529), - [anon_sym_DASH_EQ] = ACTIONS(1529), - [anon_sym_STAR_EQ] = ACTIONS(1529), - [anon_sym_SLASH_EQ] = ACTIONS(1529), - [anon_sym_PERCENT_EQ] = ACTIONS(1529), - [anon_sym_CARET_EQ] = ACTIONS(1529), - [anon_sym_AMP_EQ] = ACTIONS(1529), - [anon_sym_PIPE_EQ] = ACTIONS(1529), - [anon_sym_LT_LT_EQ] = ACTIONS(1529), - [anon_sym_GT_GT_EQ] = ACTIONS(1529), - [anon_sym_EQ] = ACTIONS(1531), - [anon_sym_EQ_EQ] = ACTIONS(1529), - [anon_sym_BANG_EQ] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1531), - [anon_sym_GT_EQ] = ACTIONS(1529), - [anon_sym_LT_EQ] = ACTIONS(1529), - [anon_sym_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT] = ACTIONS(1531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), - [anon_sym_COLON_COLON] = ACTIONS(1529), - [anon_sym_POUND] = ACTIONS(1529), - [anon_sym_SQUOTE] = ACTIONS(1531), - [anon_sym_as] = ACTIONS(1531), - [anon_sym_async] = ACTIONS(1531), - [anon_sym_break] = ACTIONS(1531), - [anon_sym_const] = ACTIONS(1531), - [anon_sym_continue] = ACTIONS(1531), - [anon_sym_default] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1531), - [anon_sym_fn] = ACTIONS(1531), - [anon_sym_for] = ACTIONS(1531), - [anon_sym_gen] = ACTIONS(1531), - [anon_sym_if] = ACTIONS(1531), - [anon_sym_impl] = ACTIONS(1531), - [anon_sym_let] = ACTIONS(1531), - [anon_sym_loop] = ACTIONS(1531), - [anon_sym_match] = ACTIONS(1531), - [anon_sym_mod] = ACTIONS(1531), - [anon_sym_pub] = ACTIONS(1531), - [anon_sym_return] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1531), - [anon_sym_struct] = ACTIONS(1531), - [anon_sym_trait] = ACTIONS(1531), - [anon_sym_type] = ACTIONS(1531), - [anon_sym_union] = ACTIONS(1531), - [anon_sym_unsafe] = ACTIONS(1531), - [anon_sym_use] = ACTIONS(1531), - [anon_sym_while] = ACTIONS(1531), - [anon_sym_extern] = ACTIONS(1531), - [anon_sym_yield] = ACTIONS(1531), - [anon_sym_move] = ACTIONS(1531), - [anon_sym_try] = ACTIONS(1531), - [sym_integer_literal] = ACTIONS(1529), - [aux_sym_string_literal_token1] = ACTIONS(1529), - [sym_char_literal] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(1531), - [anon_sym_false] = ACTIONS(1531), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1531), - [sym_super] = ACTIONS(1531), - [sym_crate] = ACTIONS(1531), - [sym_metavariable] = ACTIONS(1529), - [sym__raw_string_literal_start] = ACTIONS(1529), - [sym_float_literal] = ACTIONS(1529), - }, - [STATE(419)] = { - [sym_line_comment] = STATE(419), - [sym_block_comment] = STATE(419), - [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), + [anon_sym_impl] = ACTIONS(1527), + [anon_sym_let] = ACTIONS(1527), + [anon_sym_loop] = ACTIONS(1527), + [anon_sym_match] = ACTIONS(1527), + [anon_sym_mod] = ACTIONS(1527), + [anon_sym_pub] = ACTIONS(1527), + [anon_sym_return] = ACTIONS(1527), + [anon_sym_static] = ACTIONS(1527), + [anon_sym_struct] = ACTIONS(1527), + [anon_sym_trait] = ACTIONS(1527), + [anon_sym_type] = ACTIONS(1527), + [anon_sym_union] = ACTIONS(1527), + [anon_sym_unsafe] = ACTIONS(1527), + [anon_sym_use] = ACTIONS(1527), + [anon_sym_while] = ACTIONS(1527), + [anon_sym_extern] = ACTIONS(1527), + [anon_sym_yield] = ACTIONS(1527), + [anon_sym_move] = ACTIONS(1527), + [anon_sym_try] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1525), + [aux_sym_string_literal_token1] = ACTIONS(1525), + [sym_char_literal] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1527), + [anon_sym_false] = ACTIONS(1527), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1527), + [sym_super] = ACTIONS(1527), + [sym_crate] = ACTIONS(1527), + [sym_metavariable] = ACTIONS(1525), + [sym__raw_string_literal_start] = ACTIONS(1525), + [sym_float_literal] = ACTIONS(1525), + }, + [STATE(419)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_self_parameter] = STATE(2908), + [sym_variadic_parameter] = STATE(2908), + [sym_parameter] = STATE(2908), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2666), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(2909), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3213), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(419), + [sym_block_comment] = STATE(419), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(420)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(2893), - [sym_variadic_parameter] = STATE(2893), - [sym_parameter] = STATE(2893), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2803), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(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), + [ts_builtin_sym_end] = ACTIONS(1531), + [sym_identifier] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_macro_rules_BANG] = ACTIONS(1531), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_QMARK] = ACTIONS(1531), + [anon_sym_u8] = ACTIONS(1533), + [anon_sym_i8] = ACTIONS(1533), + [anon_sym_u16] = ACTIONS(1533), + [anon_sym_i16] = ACTIONS(1533), + [anon_sym_u32] = ACTIONS(1533), + [anon_sym_i32] = ACTIONS(1533), + [anon_sym_u64] = ACTIONS(1533), + [anon_sym_i64] = ACTIONS(1533), + [anon_sym_u128] = ACTIONS(1533), + [anon_sym_i128] = ACTIONS(1533), + [anon_sym_isize] = ACTIONS(1533), + [anon_sym_usize] = ACTIONS(1533), + [anon_sym_f32] = ACTIONS(1533), + [anon_sym_f64] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_str] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PERCENT] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PERCENT_EQ] = ACTIONS(1531), + [anon_sym_CARET_EQ] = ACTIONS(1531), + [anon_sym_AMP_EQ] = ACTIONS(1531), + [anon_sym_PIPE_EQ] = ACTIONS(1531), + [anon_sym_LT_LT_EQ] = ACTIONS(1531), + [anon_sym_GT_GT_EQ] = ACTIONS(1531), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_EQ_EQ] = ACTIONS(1531), + [anon_sym_BANG_EQ] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(1531), + [anon_sym_LT_EQ] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), + [anon_sym_COLON_COLON] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(1531), + [anon_sym_SQUOTE] = ACTIONS(1533), + [anon_sym_as] = ACTIONS(1533), + [anon_sym_async] = ACTIONS(1533), + [anon_sym_break] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_continue] = ACTIONS(1533), + [anon_sym_default] = ACTIONS(1533), + [anon_sym_enum] = ACTIONS(1533), + [anon_sym_fn] = ACTIONS(1533), + [anon_sym_for] = ACTIONS(1533), + [anon_sym_gen] = ACTIONS(1533), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_impl] = ACTIONS(1533), + [anon_sym_let] = ACTIONS(1533), + [anon_sym_loop] = ACTIONS(1533), + [anon_sym_match] = ACTIONS(1533), + [anon_sym_mod] = ACTIONS(1533), + [anon_sym_pub] = ACTIONS(1533), + [anon_sym_return] = ACTIONS(1533), + [anon_sym_static] = ACTIONS(1533), + [anon_sym_struct] = ACTIONS(1533), + [anon_sym_trait] = ACTIONS(1533), + [anon_sym_type] = ACTIONS(1533), + [anon_sym_union] = ACTIONS(1533), + [anon_sym_unsafe] = ACTIONS(1533), + [anon_sym_use] = ACTIONS(1533), + [anon_sym_while] = ACTIONS(1533), + [anon_sym_extern] = ACTIONS(1533), + [anon_sym_yield] = ACTIONS(1533), + [anon_sym_move] = ACTIONS(1533), + [anon_sym_try] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1531), + [aux_sym_string_literal_token1] = ACTIONS(1531), + [sym_char_literal] = ACTIONS(1531), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1533), + [sym_super] = ACTIONS(1533), + [sym_crate] = ACTIONS(1533), + [sym_metavariable] = ACTIONS(1531), + [sym__raw_string_literal_start] = ACTIONS(1531), + [sym_float_literal] = ACTIONS(1531), }, [STATE(421)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3081), - [sym_variadic_parameter] = STATE(3081), - [sym_parameter] = STATE(3081), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2725), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(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), + [ts_builtin_sym_end] = ACTIONS(1535), + [sym_identifier] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_macro_rules_BANG] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_QMARK] = ACTIONS(1535), + [anon_sym_u8] = ACTIONS(1537), + [anon_sym_i8] = ACTIONS(1537), + [anon_sym_u16] = ACTIONS(1537), + [anon_sym_i16] = ACTIONS(1537), + [anon_sym_u32] = ACTIONS(1537), + [anon_sym_i32] = ACTIONS(1537), + [anon_sym_u64] = ACTIONS(1537), + [anon_sym_i64] = ACTIONS(1537), + [anon_sym_u128] = ACTIONS(1537), + [anon_sym_i128] = ACTIONS(1537), + [anon_sym_isize] = ACTIONS(1537), + [anon_sym_usize] = ACTIONS(1537), + [anon_sym_f32] = ACTIONS(1537), + [anon_sym_f64] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_str] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_SLASH] = ACTIONS(1537), + [anon_sym_PERCENT] = ACTIONS(1537), + [anon_sym_CARET] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_PIPE_PIPE] = ACTIONS(1535), + [anon_sym_LT_LT] = ACTIONS(1537), + [anon_sym_GT_GT] = ACTIONS(1537), + [anon_sym_PLUS_EQ] = ACTIONS(1535), + [anon_sym_DASH_EQ] = ACTIONS(1535), + [anon_sym_STAR_EQ] = ACTIONS(1535), + [anon_sym_SLASH_EQ] = ACTIONS(1535), + [anon_sym_PERCENT_EQ] = ACTIONS(1535), + [anon_sym_CARET_EQ] = ACTIONS(1535), + [anon_sym_AMP_EQ] = ACTIONS(1535), + [anon_sym_PIPE_EQ] = ACTIONS(1535), + [anon_sym_LT_LT_EQ] = ACTIONS(1535), + [anon_sym_GT_GT_EQ] = ACTIONS(1535), + [anon_sym_EQ] = ACTIONS(1537), + [anon_sym_EQ_EQ] = ACTIONS(1535), + [anon_sym_BANG_EQ] = ACTIONS(1535), + [anon_sym_GT] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_GT_EQ] = ACTIONS(1535), + [anon_sym_LT_EQ] = ACTIONS(1535), + [anon_sym_DOT] = ACTIONS(1537), + [anon_sym_DOT_DOT] = ACTIONS(1537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_as] = ACTIONS(1537), + [anon_sym_async] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1537), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_gen] = ACTIONS(1537), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_impl] = ACTIONS(1537), + [anon_sym_let] = ACTIONS(1537), + [anon_sym_loop] = ACTIONS(1537), + [anon_sym_match] = ACTIONS(1537), + [anon_sym_mod] = ACTIONS(1537), + [anon_sym_pub] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_struct] = ACTIONS(1537), + [anon_sym_trait] = ACTIONS(1537), + [anon_sym_type] = ACTIONS(1537), + [anon_sym_union] = ACTIONS(1537), + [anon_sym_unsafe] = ACTIONS(1537), + [anon_sym_use] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_extern] = ACTIONS(1537), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_move] = ACTIONS(1537), + [anon_sym_try] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1535), + [aux_sym_string_literal_token1] = ACTIONS(1535), + [sym_char_literal] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1537), + [sym_super] = ACTIONS(1537), + [sym_crate] = ACTIONS(1537), + [sym_metavariable] = ACTIONS(1535), + [sym__raw_string_literal_start] = ACTIONS(1535), + [sym_float_literal] = ACTIONS(1535), }, [STATE(422)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3001), - [sym_variadic_parameter] = STATE(3001), - [sym_parameter] = STATE(3001), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2590), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(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), + [ts_builtin_sym_end] = ACTIONS(1539), + [sym_identifier] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_macro_rules_BANG] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_QMARK] = ACTIONS(1539), + [anon_sym_u8] = ACTIONS(1541), + [anon_sym_i8] = ACTIONS(1541), + [anon_sym_u16] = ACTIONS(1541), + [anon_sym_i16] = ACTIONS(1541), + [anon_sym_u32] = ACTIONS(1541), + [anon_sym_i32] = ACTIONS(1541), + [anon_sym_u64] = ACTIONS(1541), + [anon_sym_i64] = ACTIONS(1541), + [anon_sym_u128] = ACTIONS(1541), + [anon_sym_i128] = ACTIONS(1541), + [anon_sym_isize] = ACTIONS(1541), + [anon_sym_usize] = ACTIONS(1541), + [anon_sym_f32] = ACTIONS(1541), + [anon_sym_f64] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_str] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_SLASH] = ACTIONS(1541), + [anon_sym_PERCENT] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_PIPE_PIPE] = ACTIONS(1539), + [anon_sym_LT_LT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1539), + [anon_sym_DASH_EQ] = ACTIONS(1539), + [anon_sym_STAR_EQ] = ACTIONS(1539), + [anon_sym_SLASH_EQ] = ACTIONS(1539), + [anon_sym_PERCENT_EQ] = ACTIONS(1539), + [anon_sym_CARET_EQ] = ACTIONS(1539), + [anon_sym_AMP_EQ] = ACTIONS(1539), + [anon_sym_PIPE_EQ] = ACTIONS(1539), + [anon_sym_LT_LT_EQ] = ACTIONS(1539), + [anon_sym_GT_GT_EQ] = ACTIONS(1539), + [anon_sym_EQ] = ACTIONS(1541), + [anon_sym_EQ_EQ] = ACTIONS(1539), + [anon_sym_BANG_EQ] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1539), + [anon_sym_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), + [anon_sym_COLON_COLON] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1541), + [anon_sym_as] = ACTIONS(1541), + [anon_sym_async] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_enum] = ACTIONS(1541), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_gen] = ACTIONS(1541), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_impl] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1541), + [anon_sym_loop] = ACTIONS(1541), + [anon_sym_match] = ACTIONS(1541), + [anon_sym_mod] = ACTIONS(1541), + [anon_sym_pub] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_trait] = ACTIONS(1541), + [anon_sym_type] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1541), + [anon_sym_unsafe] = ACTIONS(1541), + [anon_sym_use] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_extern] = ACTIONS(1541), + [anon_sym_yield] = ACTIONS(1541), + [anon_sym_move] = ACTIONS(1541), + [anon_sym_try] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1539), + [aux_sym_string_literal_token1] = ACTIONS(1539), + [sym_char_literal] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1541), + [sym_super] = ACTIONS(1541), + [sym_crate] = ACTIONS(1541), + [sym_metavariable] = ACTIONS(1539), + [sym__raw_string_literal_start] = ACTIONS(1539), + [sym_float_literal] = ACTIONS(1539), }, [STATE(423)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_self_parameter] = STATE(3328), - [sym_variadic_parameter] = STATE(3328), - [sym_parameter] = STATE(3328), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3079), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3011), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3345), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(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), + [sym_identifier] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_macro_rules_BANG] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_u8] = ACTIONS(1521), + [anon_sym_i8] = ACTIONS(1521), + [anon_sym_u16] = ACTIONS(1521), + [anon_sym_i16] = ACTIONS(1521), + [anon_sym_u32] = ACTIONS(1521), + [anon_sym_i32] = ACTIONS(1521), + [anon_sym_u64] = ACTIONS(1521), + [anon_sym_i64] = ACTIONS(1521), + [anon_sym_u128] = ACTIONS(1521), + [anon_sym_i128] = ACTIONS(1521), + [anon_sym_isize] = ACTIONS(1521), + [anon_sym_usize] = ACTIONS(1521), + [anon_sym_f32] = ACTIONS(1521), + [anon_sym_f64] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_str] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PERCENT] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_PIPE_PIPE] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_PLUS_EQ] = ACTIONS(1451), + [anon_sym_DASH_EQ] = ACTIONS(1451), + [anon_sym_STAR_EQ] = ACTIONS(1451), + [anon_sym_SLASH_EQ] = ACTIONS(1451), + [anon_sym_PERCENT_EQ] = ACTIONS(1451), + [anon_sym_CARET_EQ] = ACTIONS(1451), + [anon_sym_AMP_EQ] = ACTIONS(1451), + [anon_sym_PIPE_EQ] = ACTIONS(1451), + [anon_sym_LT_LT_EQ] = ACTIONS(1451), + [anon_sym_GT_GT_EQ] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1451), + [anon_sym_BANG_EQ] = ACTIONS(1451), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), + [anon_sym_COLON_COLON] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1521), + [anon_sym_as] = ACTIONS(1449), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_enum] = ACTIONS(1521), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_gen] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_impl] = ACTIONS(1521), + [anon_sym_let] = ACTIONS(1521), + [anon_sym_loop] = ACTIONS(1521), + [anon_sym_match] = ACTIONS(1521), + [anon_sym_mod] = ACTIONS(1521), + [anon_sym_pub] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_struct] = ACTIONS(1521), + [anon_sym_trait] = ACTIONS(1521), + [anon_sym_type] = ACTIONS(1521), + [anon_sym_union] = ACTIONS(1521), + [anon_sym_unsafe] = ACTIONS(1521), + [anon_sym_use] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_extern] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1519), + [aux_sym_string_literal_token1] = ACTIONS(1519), + [sym_char_literal] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1521), + [sym_super] = ACTIONS(1521), + [sym_crate] = ACTIONS(1521), + [sym_metavariable] = ACTIONS(1519), + [sym__raw_string_literal_start] = ACTIONS(1519), + [sym_float_literal] = ACTIONS(1519), }, [STATE(424)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2856), - [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3387), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2544), - [sym_scoped_identifier] = STATE(2237), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2787), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3087), + [sym_bracketed_type] = STATE(3662), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3403), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2575), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2708), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_RBRACK] = ACTIONS(1545), - [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), - [anon_sym_i16] = ACTIONS(1547), - [anon_sym_u32] = ACTIONS(1547), - [anon_sym_i32] = ACTIONS(1547), - [anon_sym_u64] = ACTIONS(1547), - [anon_sym_i64] = ACTIONS(1547), - [anon_sym_u128] = ACTIONS(1547), - [anon_sym_i128] = ACTIONS(1547), - [anon_sym_isize] = ACTIONS(1547), - [anon_sym_usize] = ACTIONS(1547), - [anon_sym_f32] = ACTIONS(1547), - [anon_sym_f64] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_str] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1549), - [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(1553), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1557), - [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(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_RBRACK] = ACTIONS(1547), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1549), + [anon_sym_i8] = ACTIONS(1549), + [anon_sym_u16] = ACTIONS(1549), + [anon_sym_i16] = ACTIONS(1549), + [anon_sym_u32] = ACTIONS(1549), + [anon_sym_i32] = ACTIONS(1549), + [anon_sym_u64] = ACTIONS(1549), + [anon_sym_i64] = ACTIONS(1549), + [anon_sym_u128] = ACTIONS(1549), + [anon_sym_i128] = ACTIONS(1549), + [anon_sym_isize] = ACTIONS(1549), + [anon_sym_usize] = ACTIONS(1549), + [anon_sym_f32] = ACTIONS(1549), + [anon_sym_f64] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_str] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1559), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1559), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1561), + [sym_super] = ACTIONS(1561), + [sym_crate] = ACTIONS(1561), + [sym_metavariable] = ACTIONS(1563), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(425)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(855), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2152), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2178), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1567), - [sym_super] = ACTIONS(1345), - [sym_crate] = ACTIONS(1345), - [sym_metavariable] = ACTIONS(1347), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(426)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(855), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2152), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2178), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1297), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1265), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(427)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2053), [sym_bracketed_type] = STATE(3653), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3387), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2544), - [sym_scoped_identifier] = STATE(2237), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2161), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_lifetime] = STATE(853), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2173), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1543), - [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), - [anon_sym_i16] = ACTIONS(1547), - [anon_sym_u32] = ACTIONS(1547), - [anon_sym_i32] = ACTIONS(1547), - [anon_sym_u64] = ACTIONS(1547), - [anon_sym_i64] = ACTIONS(1547), - [anon_sym_u128] = ACTIONS(1547), - [anon_sym_i128] = ACTIONS(1547), - [anon_sym_isize] = ACTIONS(1547), - [anon_sym_usize] = ACTIONS(1547), - [anon_sym_f32] = ACTIONS(1547), - [anon_sym_f64] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_str] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1549), - [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(1553), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1557), - [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(1299), - [sym_float_literal] = ACTIONS(1287), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1571), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(428)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2161), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3661), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2571), + [sym_scoped_identifier] = STATE(2200), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2178), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1573), - [sym_super] = ACTIONS(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1297), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(429)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2152), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2053), + [sym_bracketed_type] = STATE(3662), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3403), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2575), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2173), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1549), + [anon_sym_i8] = ACTIONS(1549), + [anon_sym_u16] = ACTIONS(1549), + [anon_sym_i16] = ACTIONS(1549), + [anon_sym_u32] = ACTIONS(1549), + [anon_sym_i32] = ACTIONS(1549), + [anon_sym_u64] = ACTIONS(1549), + [anon_sym_i64] = ACTIONS(1549), + [anon_sym_u128] = ACTIONS(1549), + [anon_sym_i128] = ACTIONS(1549), + [anon_sym_isize] = ACTIONS(1549), + [anon_sym_usize] = ACTIONS(1549), + [anon_sym_f32] = ACTIONS(1549), + [anon_sym_f64] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_str] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1559), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1559), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), [sym_mutable_specifier] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1287), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1287), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(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), + [sym_self] = ACTIONS(1561), + [sym_super] = ACTIONS(1561), + [sym_crate] = ACTIONS(1561), + [sym_metavariable] = ACTIONS(1563), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(430)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2161), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2053), + [sym_bracketed_type] = STATE(3661), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2571), + [sym_scoped_identifier] = STATE(2200), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2173), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1315), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(431)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3652), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2517), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2161), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2053), + [sym_bracketed_type] = STATE(3653), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3301), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2510), + [sym_scoped_identifier] = STATE(2309), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2173), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1207), + [anon_sym_i8] = ACTIONS(1207), + [anon_sym_u16] = ACTIONS(1207), + [anon_sym_i16] = ACTIONS(1207), + [anon_sym_u32] = ACTIONS(1207), + [anon_sym_i32] = ACTIONS(1207), + [anon_sym_u64] = ACTIONS(1207), + [anon_sym_i64] = ACTIONS(1207), + [anon_sym_u128] = ACTIONS(1207), + [anon_sym_i128] = ACTIONS(1207), + [anon_sym_isize] = ACTIONS(1207), + [anon_sym_usize] = ACTIONS(1207), + [anon_sym_f32] = ACTIONS(1207), + [anon_sym_f64] = ACTIONS(1207), + [anon_sym_bool] = ACTIONS(1207), + [anon_sym_str] = ACTIONS(1207), + [anon_sym_char] = ACTIONS(1207), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1237), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1243), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1243), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1579), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1265), + [sym_super] = ACTIONS(1265), + [sym_crate] = ACTIONS(1265), + [sym_metavariable] = ACTIONS(1267), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(432)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2161), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3662), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3403), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2575), + [sym_scoped_identifier] = STATE(2249), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2178), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1545), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1549), + [anon_sym_i8] = ACTIONS(1549), + [anon_sym_u16] = ACTIONS(1549), + [anon_sym_i16] = ACTIONS(1549), + [anon_sym_u32] = ACTIONS(1549), + [anon_sym_i32] = ACTIONS(1549), + [anon_sym_u64] = ACTIONS(1549), + [anon_sym_i64] = ACTIONS(1549), + [anon_sym_u128] = ACTIONS(1549), + [anon_sym_i128] = ACTIONS(1549), + [anon_sym_isize] = ACTIONS(1549), + [anon_sym_usize] = ACTIONS(1549), + [anon_sym_f32] = ACTIONS(1549), + [anon_sym_f64] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_str] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1559), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1559), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1561), + [sym_super] = ACTIONS(1561), + [sym_crate] = ACTIONS(1561), + [sym_metavariable] = ACTIONS(1563), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(433)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3653), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2053), + [sym_bracketed_type] = STATE(3661), [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3387), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2544), - [sym_scoped_identifier] = STATE(2237), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2152), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2571), + [sym_scoped_identifier] = STATE(2200), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2173), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1543), - [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), - [anon_sym_i16] = ACTIONS(1547), - [anon_sym_u32] = ACTIONS(1547), - [anon_sym_i32] = ACTIONS(1547), - [anon_sym_u64] = ACTIONS(1547), - [anon_sym_i64] = ACTIONS(1547), - [anon_sym_u128] = ACTIONS(1547), - [anon_sym_i128] = ACTIONS(1547), - [anon_sym_isize] = ACTIONS(1547), - [anon_sym_usize] = ACTIONS(1547), - [anon_sym_f32] = ACTIONS(1547), - [anon_sym_f64] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_str] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_AMP] = ACTIONS(1549), - [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(1553), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1265), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1273), - [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1277), - [anon_sym_union] = ACTIONS(1557), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1559), - [sym_super] = ACTIONS(1559), - [sym_crate] = ACTIONS(1559), - [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_self] = ACTIONS(1583), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(434)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3644), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3299), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2550), - [sym_scoped_identifier] = STATE(2273), - [sym_scoped_type_identifier] = STATE(2154), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2152), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3661), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3398), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2571), + [sym_scoped_identifier] = STATE(2200), + [sym_scoped_type_identifier] = STATE(2185), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2178), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1201), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1307), + [anon_sym_SQUOTE] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1235), + [anon_sym_default] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1311), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1251), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1315), + [sym_super] = ACTIONS(1315), + [sym_crate] = ACTIONS(1315), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(435)] = { [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [sym_identifier] = ACTIONS(1583), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_RBRACK] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_COLON] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_QMARK] = ACTIONS(1585), - [anon_sym_u8] = ACTIONS(1583), - [anon_sym_i8] = ACTIONS(1583), - [anon_sym_u16] = ACTIONS(1583), - [anon_sym_i16] = ACTIONS(1583), - [anon_sym_u32] = ACTIONS(1583), - [anon_sym_i32] = ACTIONS(1583), - [anon_sym_u64] = ACTIONS(1583), - [anon_sym_i64] = ACTIONS(1583), - [anon_sym_u128] = ACTIONS(1583), - [anon_sym_i128] = ACTIONS(1583), - [anon_sym_isize] = ACTIONS(1583), - [anon_sym_usize] = ACTIONS(1583), - [anon_sym_f32] = ACTIONS(1583), - [anon_sym_f64] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_str] = ACTIONS(1583), - [anon_sym_char] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_SLASH] = ACTIONS(1583), - [anon_sym_PERCENT] = ACTIONS(1583), - [anon_sym_CARET] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1585), - [anon_sym_PIPE_PIPE] = ACTIONS(1585), - [anon_sym_LT_LT] = ACTIONS(1583), - [anon_sym_GT_GT] = ACTIONS(1583), - [anon_sym_PLUS_EQ] = ACTIONS(1585), - [anon_sym_DASH_EQ] = ACTIONS(1585), - [anon_sym_STAR_EQ] = ACTIONS(1585), - [anon_sym_SLASH_EQ] = ACTIONS(1585), - [anon_sym_PERCENT_EQ] = ACTIONS(1585), - [anon_sym_CARET_EQ] = ACTIONS(1585), - [anon_sym_AMP_EQ] = ACTIONS(1585), - [anon_sym_PIPE_EQ] = ACTIONS(1585), - [anon_sym_LT_LT_EQ] = ACTIONS(1585), - [anon_sym_GT_GT_EQ] = ACTIONS(1585), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_EQ_EQ] = ACTIONS(1585), - [anon_sym_BANG_EQ] = ACTIONS(1585), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_GT_EQ] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1585), - [anon_sym_DOT] = ACTIONS(1583), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_COMMA] = ACTIONS(1585), - [anon_sym_COLON_COLON] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_as] = ACTIONS(1583), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_default] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_gen] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_loop] = ACTIONS(1583), - [anon_sym_match] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1583), - [anon_sym_unsafe] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_else] = ACTIONS(1583), - [anon_sym_yield] = ACTIONS(1583), - [anon_sym_move] = ACTIONS(1583), - [anon_sym_try] = ACTIONS(1583), - [sym_integer_literal] = ACTIONS(1585), - [aux_sym_string_literal_token1] = ACTIONS(1585), - [sym_char_literal] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1583), - [sym_super] = ACTIONS(1583), - [sym_crate] = ACTIONS(1583), - [sym_metavariable] = ACTIONS(1585), - [sym__raw_string_literal_start] = ACTIONS(1585), - [sym_float_literal] = ACTIONS(1585), + [sym_identifier] = ACTIONS(1585), + [anon_sym_SEMI] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_RBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_COLON] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_QMARK] = ACTIONS(1587), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PERCENT] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_PIPE_PIPE] = ACTIONS(1587), + [anon_sym_LT_LT] = ACTIONS(1585), + [anon_sym_GT_GT] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1587), + [anon_sym_DASH_EQ] = ACTIONS(1587), + [anon_sym_STAR_EQ] = ACTIONS(1587), + [anon_sym_SLASH_EQ] = ACTIONS(1587), + [anon_sym_PERCENT_EQ] = ACTIONS(1587), + [anon_sym_CARET_EQ] = ACTIONS(1587), + [anon_sym_AMP_EQ] = ACTIONS(1587), + [anon_sym_PIPE_EQ] = ACTIONS(1587), + [anon_sym_LT_LT_EQ] = ACTIONS(1587), + [anon_sym_GT_GT_EQ] = ACTIONS(1587), + [anon_sym_EQ] = ACTIONS(1585), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [anon_sym_COMMA] = ACTIONS(1587), + [anon_sym_COLON_COLON] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_as] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_default] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_gen] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_loop] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_union] = ACTIONS(1585), + [anon_sym_unsafe] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_else] = ACTIONS(1585), + [anon_sym_yield] = ACTIONS(1585), + [anon_sym_move] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [aux_sym_string_literal_token1] = ACTIONS(1587), + [sym_char_literal] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1585), + [sym_super] = ACTIONS(1585), + [sym_crate] = ACTIONS(1585), + [sym_metavariable] = ACTIONS(1587), + [sym__raw_string_literal_start] = ACTIONS(1587), + [sym_float_literal] = ACTIONS(1587), }, [STATE(436)] = { [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1585), - [anon_sym_LBRACE] = ACTIONS(1585), - [anon_sym_EQ_GT] = ACTIONS(1585), - [anon_sym_COLON] = ACTIONS(1583), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_STAR] = ACTIONS(1583), - [anon_sym_QMARK] = ACTIONS(1585), - [anon_sym_u8] = ACTIONS(1583), - [anon_sym_i8] = ACTIONS(1583), - [anon_sym_u16] = ACTIONS(1583), - [anon_sym_i16] = ACTIONS(1583), - [anon_sym_u32] = ACTIONS(1583), - [anon_sym_i32] = ACTIONS(1583), - [anon_sym_u64] = ACTIONS(1583), - [anon_sym_i64] = ACTIONS(1583), - [anon_sym_u128] = ACTIONS(1583), - [anon_sym_i128] = ACTIONS(1583), - [anon_sym_isize] = ACTIONS(1583), - [anon_sym_usize] = ACTIONS(1583), - [anon_sym_f32] = ACTIONS(1583), - [anon_sym_f64] = ACTIONS(1583), - [anon_sym_bool] = ACTIONS(1583), - [anon_sym_str] = ACTIONS(1583), - [anon_sym_char] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_SLASH] = ACTIONS(1583), - [anon_sym_PERCENT] = ACTIONS(1583), - [anon_sym_CARET] = ACTIONS(1583), - [anon_sym_BANG] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1585), - [anon_sym_PIPE_PIPE] = ACTIONS(1585), - [anon_sym_LT_LT] = ACTIONS(1583), - [anon_sym_GT_GT] = ACTIONS(1583), - [anon_sym_PLUS_EQ] = ACTIONS(1585), - [anon_sym_DASH_EQ] = ACTIONS(1585), - [anon_sym_STAR_EQ] = ACTIONS(1585), - [anon_sym_SLASH_EQ] = ACTIONS(1585), - [anon_sym_PERCENT_EQ] = ACTIONS(1585), - [anon_sym_CARET_EQ] = ACTIONS(1585), - [anon_sym_AMP_EQ] = ACTIONS(1585), - [anon_sym_PIPE_EQ] = ACTIONS(1585), - [anon_sym_LT_LT_EQ] = ACTIONS(1585), - [anon_sym_GT_GT_EQ] = ACTIONS(1585), - [anon_sym_EQ] = ACTIONS(1583), - [anon_sym_EQ_EQ] = ACTIONS(1585), - [anon_sym_BANG_EQ] = ACTIONS(1585), - [anon_sym_GT] = ACTIONS(1583), - [anon_sym_LT] = ACTIONS(1583), - [anon_sym_GT_EQ] = ACTIONS(1585), - [anon_sym_LT_EQ] = ACTIONS(1585), - [anon_sym_DOT] = ACTIONS(1583), - [anon_sym_DOT_DOT] = ACTIONS(1583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1585), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1585), - [anon_sym_COLON_COLON] = ACTIONS(1585), - [anon_sym_SQUOTE] = ACTIONS(1583), - [anon_sym_as] = ACTIONS(1583), - [anon_sym_async] = ACTIONS(1583), - [anon_sym_break] = ACTIONS(1583), - [anon_sym_const] = ACTIONS(1583), - [anon_sym_continue] = ACTIONS(1583), - [anon_sym_default] = ACTIONS(1583), - [anon_sym_for] = ACTIONS(1583), - [anon_sym_gen] = ACTIONS(1583), - [anon_sym_if] = ACTIONS(1583), - [anon_sym_loop] = ACTIONS(1583), - [anon_sym_match] = ACTIONS(1583), - [anon_sym_return] = ACTIONS(1583), - [anon_sym_static] = ACTIONS(1583), - [anon_sym_union] = ACTIONS(1583), - [anon_sym_unsafe] = ACTIONS(1583), - [anon_sym_while] = ACTIONS(1583), - [anon_sym_yield] = ACTIONS(1583), - [anon_sym_move] = ACTIONS(1583), - [anon_sym_try] = ACTIONS(1583), - [sym_integer_literal] = ACTIONS(1585), - [aux_sym_string_literal_token1] = ACTIONS(1585), - [sym_char_literal] = ACTIONS(1585), - [anon_sym_true] = ACTIONS(1583), - [anon_sym_false] = ACTIONS(1583), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1583), - [sym_super] = ACTIONS(1583), - [sym_crate] = ACTIONS(1583), - [sym_metavariable] = ACTIONS(1585), - [sym__raw_string_literal_start] = ACTIONS(1585), - [sym_float_literal] = ACTIONS(1585), + [sym_identifier] = ACTIONS(1585), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1587), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_EQ_GT] = ACTIONS(1587), + [anon_sym_COLON] = ACTIONS(1585), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_QMARK] = ACTIONS(1587), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_SLASH] = ACTIONS(1585), + [anon_sym_PERCENT] = ACTIONS(1585), + [anon_sym_CARET] = ACTIONS(1585), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_AMP_AMP] = ACTIONS(1587), + [anon_sym_PIPE_PIPE] = ACTIONS(1587), + [anon_sym_LT_LT] = ACTIONS(1585), + [anon_sym_GT_GT] = ACTIONS(1585), + [anon_sym_PLUS_EQ] = ACTIONS(1587), + [anon_sym_DASH_EQ] = ACTIONS(1587), + [anon_sym_STAR_EQ] = ACTIONS(1587), + [anon_sym_SLASH_EQ] = ACTIONS(1587), + [anon_sym_PERCENT_EQ] = ACTIONS(1587), + [anon_sym_CARET_EQ] = ACTIONS(1587), + [anon_sym_AMP_EQ] = ACTIONS(1587), + [anon_sym_PIPE_EQ] = ACTIONS(1587), + [anon_sym_LT_LT_EQ] = ACTIONS(1587), + [anon_sym_GT_GT_EQ] = ACTIONS(1587), + [anon_sym_EQ] = ACTIONS(1585), + [anon_sym_EQ_EQ] = ACTIONS(1587), + [anon_sym_BANG_EQ] = ACTIONS(1587), + [anon_sym_GT] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym_GT_EQ] = ACTIONS(1587), + [anon_sym_LT_EQ] = ACTIONS(1587), + [anon_sym_DOT] = ACTIONS(1585), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [anon_sym_COLON_COLON] = ACTIONS(1587), + [anon_sym_SQUOTE] = ACTIONS(1585), + [anon_sym_as] = ACTIONS(1585), + [anon_sym_async] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1585), + [anon_sym_const] = ACTIONS(1585), + [anon_sym_continue] = ACTIONS(1585), + [anon_sym_default] = ACTIONS(1585), + [anon_sym_for] = ACTIONS(1585), + [anon_sym_gen] = ACTIONS(1585), + [anon_sym_if] = ACTIONS(1585), + [anon_sym_loop] = ACTIONS(1585), + [anon_sym_match] = ACTIONS(1585), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_static] = ACTIONS(1585), + [anon_sym_union] = ACTIONS(1585), + [anon_sym_unsafe] = ACTIONS(1585), + [anon_sym_while] = ACTIONS(1585), + [anon_sym_yield] = ACTIONS(1585), + [anon_sym_move] = ACTIONS(1585), + [anon_sym_try] = ACTIONS(1585), + [sym_integer_literal] = ACTIONS(1587), + [aux_sym_string_literal_token1] = ACTIONS(1587), + [sym_char_literal] = ACTIONS(1587), + [anon_sym_true] = ACTIONS(1585), + [anon_sym_false] = ACTIONS(1585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1585), + [sym_super] = ACTIONS(1585), + [sym_crate] = ACTIONS(1585), + [sym_metavariable] = ACTIONS(1587), + [sym__raw_string_literal_start] = ACTIONS(1587), + [sym_float_literal] = ACTIONS(1587), }, [STATE(437)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2153), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2180), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [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(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [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_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [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), - [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_identifier] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1591), + [anon_sym_LBRACK] = ACTIONS(1591), + [anon_sym_LBRACE] = ACTIONS(1591), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_u8] = ACTIONS(1589), + [anon_sym_i8] = ACTIONS(1589), + [anon_sym_u16] = ACTIONS(1589), + [anon_sym_i16] = ACTIONS(1589), + [anon_sym_u32] = ACTIONS(1589), + [anon_sym_i32] = ACTIONS(1589), + [anon_sym_u64] = ACTIONS(1589), + [anon_sym_i64] = ACTIONS(1589), + [anon_sym_u128] = ACTIONS(1589), + [anon_sym_i128] = ACTIONS(1589), + [anon_sym_isize] = ACTIONS(1589), + [anon_sym_usize] = ACTIONS(1589), + [anon_sym_f32] = ACTIONS(1589), + [anon_sym_f64] = ACTIONS(1589), + [anon_sym_bool] = ACTIONS(1589), + [anon_sym_str] = ACTIONS(1589), + [anon_sym_char] = ACTIONS(1589), + [anon_sym_DASH] = ACTIONS(1589), + [anon_sym_BANG] = ACTIONS(1591), + [anon_sym_AMP] = ACTIONS(1591), + [anon_sym_PIPE] = ACTIONS(1591), + [anon_sym_LT] = ACTIONS(1591), + [anon_sym__] = ACTIONS(1589), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1591), + [anon_sym_DASH_GT] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1589), + [anon_sym_async] = ACTIONS(1589), + [anon_sym_break] = ACTIONS(1589), + [anon_sym_const] = ACTIONS(1589), + [anon_sym_continue] = ACTIONS(1589), + [anon_sym_default] = ACTIONS(1589), + [anon_sym_for] = ACTIONS(1589), + [anon_sym_gen] = ACTIONS(1589), + [anon_sym_if] = ACTIONS(1589), + [anon_sym_loop] = ACTIONS(1589), + [anon_sym_match] = ACTIONS(1589), + [anon_sym_return] = ACTIONS(1589), + [anon_sym_static] = ACTIONS(1589), + [anon_sym_union] = ACTIONS(1589), + [anon_sym_unsafe] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1589), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1589), + [anon_sym_move] = ACTIONS(1589), + [anon_sym_try] = ACTIONS(1589), + [sym_integer_literal] = ACTIONS(1591), + [aux_sym_string_literal_token1] = ACTIONS(1591), + [sym_char_literal] = ACTIONS(1591), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1589), + [sym_super] = ACTIONS(1589), + [sym_crate] = ACTIONS(1589), + [sym_metavariable] = ACTIONS(1591), + [sym__raw_string_literal_start] = ACTIONS(1591), + [sym_float_literal] = ACTIONS(1591), }, [STATE(438)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2145), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2184), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), - [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(1591), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), - [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_ref] = ACTIONS(1281), - [sym_mutable_specifier] = ACTIONS(1457), - [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(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), + [sym_identifier] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_u8] = ACTIONS(1593), + [anon_sym_i8] = ACTIONS(1593), + [anon_sym_u16] = ACTIONS(1593), + [anon_sym_i16] = ACTIONS(1593), + [anon_sym_u32] = ACTIONS(1593), + [anon_sym_i32] = ACTIONS(1593), + [anon_sym_u64] = ACTIONS(1593), + [anon_sym_i64] = ACTIONS(1593), + [anon_sym_u128] = ACTIONS(1593), + [anon_sym_i128] = ACTIONS(1593), + [anon_sym_isize] = ACTIONS(1593), + [anon_sym_usize] = ACTIONS(1593), + [anon_sym_f32] = ACTIONS(1593), + [anon_sym_f64] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_str] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_PIPE] = ACTIONS(1595), + [anon_sym_LT] = ACTIONS(1595), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1593), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1595), + [anon_sym_DASH_GT] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1593), + [anon_sym_async] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_gen] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_loop] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_union] = ACTIONS(1593), + [anon_sym_unsafe] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_move] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [aux_sym_string_literal_token1] = ACTIONS(1595), + [sym_char_literal] = ACTIONS(1595), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1593), + [sym_super] = ACTIONS(1593), + [sym_crate] = ACTIONS(1593), + [sym_metavariable] = ACTIONS(1595), + [sym__raw_string_literal_start] = ACTIONS(1595), + [sym_float_literal] = ACTIONS(1595), }, [STATE(439)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2658), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2658), + [sym__literal] = STATE(2658), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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_GT] = ACTIONS(1607), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1613), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(440)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2658), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2658), + [sym__literal] = STATE(2658), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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_GT] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1635), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(441)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2658), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2658), + [sym__literal] = STATE(2658), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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_GT] = ACTIONS(1625), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1637), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(442)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2658), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2658), + [sym__literal] = STATE(2658), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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_GT] = ACTIONS(1627), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1639), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(443)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2658), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2658), + [sym__literal] = STATE(2658), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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_GT] = ACTIONS(1629), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1641), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(444)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2658), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2658), + [sym__literal] = STATE(2658), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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_GT] = ACTIONS(1631), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1643), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(445)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2658), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2658), + [sym__literal] = STATE(2658), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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_GT] = ACTIONS(1633), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1645), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(446)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2658), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2658), + [sym__literal] = STATE(2658), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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_GT] = ACTIONS(1635), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(447)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2658), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2658), + [sym__literal] = STATE(2658), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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_GT] = ACTIONS(1637), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(448)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2658), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2658), + [sym__literal] = STATE(2658), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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_GT] = ACTIONS(1639), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(449)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2658), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2658), + [sym__literal] = STATE(2658), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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_GT] = ACTIONS(1641), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1653), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(450)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2658), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2658), + [sym__literal] = STATE(2658), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(451)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2484), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2762), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2762), - [sym__literal] = STATE(2762), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2392), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2392), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2520), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2520), + [sym__literal] = STATE(2520), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(452)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2371), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2372), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2527), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2527), - [sym__literal] = STATE(2527), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2474), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2474), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2516), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2516), + [sym__literal] = STATE(2516), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(453)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2404), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2405), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2489), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2489), - [sym__literal] = STATE(2489), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2658), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2658), + [sym__literal] = STATE(2658), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(454)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2415), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2416), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2491), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2491), - [sym__literal] = STATE(2491), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2451), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2451), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2544), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2544), + [sym__literal] = STATE(2544), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(455)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2432), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2437), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_type_binding] = STATE(2499), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), - [sym_label] = STATE(3709), - [sym_block] = STATE(2499), - [sym__literal] = STATE(2499), - [sym_string_literal] = STATE(3070), - [sym_raw_string_literal] = STATE(3070), - [sym_boolean_literal] = STATE(3070), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2380), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2380), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_type_binding] = STATE(2549), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), + [sym_label] = STATE(3732), + [sym_block] = STATE(2549), + [sym__literal] = STATE(2549), + [sym_string_literal] = STATE(2886), + [sym_raw_string_literal] = STATE(2886), + [sym_boolean_literal] = STATE(2886), [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [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(1611), - [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_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1617), - [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(1299), - [sym_float_literal] = ACTIONS(1617), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(1617), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_integer_literal] = ACTIONS(1629), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1629), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1629), }, [STATE(456)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3531), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_attribute_item] = STATE(1412), + [sym_inner_attribute_item] = STATE(1412), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_match_arm] = STATE(1413), + [sym_last_match_arm] = STATE(3737), + [sym_match_pattern] = STATE(3720), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3115), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), [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), - [anon_sym_RBRACE] = ACTIONS(1651), - [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), + [aux_sym_match_arm_repeat1] = STATE(720), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(457)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3499), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_attribute_item] = STATE(1412), + [sym_inner_attribute_item] = STATE(1412), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_match_arm] = STATE(1413), + [sym_last_match_arm] = STATE(3459), + [sym_match_pattern] = STATE(3720), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3115), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [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), - [anon_sym_RBRACE] = ACTIONS(1691), - [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), + [aux_sym_match_block_repeat1] = STATE(468), + [aux_sym_match_arm_repeat1] = STATE(720), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(458)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3666), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_attribute_item] = STATE(1412), + [sym_inner_attribute_item] = STATE(1412), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_match_arm] = STATE(1413), + [sym_last_match_arm] = STATE(3528), + [sym_match_pattern] = STATE(3720), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3115), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [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), - [anon_sym_RBRACE] = ACTIONS(1693), - [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), + [aux_sym_match_block_repeat1] = STATE(462), + [aux_sym_match_arm_repeat1] = STATE(720), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(459)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3430), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_else_clause] = STATE(479), [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [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), - [anon_sym_RBRACE] = ACTIONS(1695), - [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), + [sym_identifier] = ACTIONS(1395), + [anon_sym_LPAREN] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_RBRACE] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(1395), + [anon_sym_QMARK] = ACTIONS(1393), + [anon_sym_u8] = ACTIONS(1395), + [anon_sym_i8] = ACTIONS(1395), + [anon_sym_u16] = ACTIONS(1395), + [anon_sym_i16] = ACTIONS(1395), + [anon_sym_u32] = ACTIONS(1395), + [anon_sym_i32] = ACTIONS(1395), + [anon_sym_u64] = ACTIONS(1395), + [anon_sym_i64] = ACTIONS(1395), + [anon_sym_u128] = ACTIONS(1395), + [anon_sym_i128] = ACTIONS(1395), + [anon_sym_isize] = ACTIONS(1395), + [anon_sym_usize] = ACTIONS(1395), + [anon_sym_f32] = ACTIONS(1395), + [anon_sym_f64] = ACTIONS(1395), + [anon_sym_bool] = ACTIONS(1395), + [anon_sym_str] = ACTIONS(1395), + [anon_sym_char] = ACTIONS(1395), + [anon_sym_DASH] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1395), + [anon_sym_PERCENT] = ACTIONS(1395), + [anon_sym_CARET] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1395), + [anon_sym_PIPE] = ACTIONS(1395), + [anon_sym_AMP_AMP] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1393), + [anon_sym_LT_LT] = ACTIONS(1395), + [anon_sym_GT_GT] = ACTIONS(1395), + [anon_sym_PLUS_EQ] = ACTIONS(1393), + [anon_sym_DASH_EQ] = ACTIONS(1393), + [anon_sym_STAR_EQ] = ACTIONS(1393), + [anon_sym_SLASH_EQ] = ACTIONS(1393), + [anon_sym_PERCENT_EQ] = ACTIONS(1393), + [anon_sym_CARET_EQ] = ACTIONS(1393), + [anon_sym_AMP_EQ] = ACTIONS(1393), + [anon_sym_PIPE_EQ] = ACTIONS(1393), + [anon_sym_LT_LT_EQ] = ACTIONS(1393), + [anon_sym_GT_GT_EQ] = ACTIONS(1393), + [anon_sym_EQ] = ACTIONS(1395), + [anon_sym_EQ_EQ] = ACTIONS(1393), + [anon_sym_BANG_EQ] = ACTIONS(1393), + [anon_sym_GT] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1393), + [anon_sym_LT_EQ] = ACTIONS(1393), + [anon_sym__] = ACTIONS(1395), + [anon_sym_DOT] = ACTIONS(1395), + [anon_sym_DOT_DOT] = ACTIONS(1395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1393), + [anon_sym_COMMA] = ACTIONS(1393), + [anon_sym_COLON_COLON] = ACTIONS(1393), + [anon_sym_POUND] = ACTIONS(1393), + [anon_sym_as] = ACTIONS(1395), + [anon_sym_const] = ACTIONS(1395), + [anon_sym_default] = ACTIONS(1395), + [anon_sym_gen] = ACTIONS(1395), + [anon_sym_union] = ACTIONS(1395), + [anon_sym_ref] = ACTIONS(1395), + [anon_sym_else] = ACTIONS(1707), + [sym_mutable_specifier] = ACTIONS(1395), + [sym_integer_literal] = ACTIONS(1393), + [aux_sym_string_literal_token1] = ACTIONS(1393), + [sym_char_literal] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1395), + [anon_sym_false] = ACTIONS(1395), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1393), + [sym__raw_string_literal_start] = ACTIONS(1393), + [sym_float_literal] = ACTIONS(1393), }, [STATE(460)] = { - [sym_else_clause] = STATE(487), + [sym_attribute_item] = STATE(1412), + [sym_inner_attribute_item] = STATE(1412), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_match_arm] = STATE(1413), + [sym_last_match_arm] = STATE(3527), + [sym_match_pattern] = STATE(3720), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3115), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [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(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), + [aux_sym_match_block_repeat1] = STATE(466), + [aux_sym_match_arm_repeat1] = STATE(720), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(461)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3511), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), - [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), + [sym_identifier] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_PERCENT] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_AMP_AMP] = ACTIONS(1431), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(1433), + [anon_sym_GT_GT] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1431), + [anon_sym_DASH_EQ] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1431), + [anon_sym_SLASH_EQ] = ACTIONS(1431), + [anon_sym_PERCENT_EQ] = ACTIONS(1431), + [anon_sym_CARET_EQ] = ACTIONS(1431), + [anon_sym_AMP_EQ] = ACTIONS(1431), + [anon_sym_PIPE_EQ] = ACTIONS(1431), + [anon_sym_LT_LT_EQ] = ACTIONS(1431), + [anon_sym_GT_GT_EQ] = ACTIONS(1431), + [anon_sym_EQ] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym__] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1431), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(1431), + [anon_sym_as] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_default] = ACTIONS(1433), + [anon_sym_gen] = ACTIONS(1433), + [anon_sym_union] = ACTIONS(1433), + [anon_sym_ref] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(1433), + [sym_mutable_specifier] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1431), + [aux_sym_string_literal_token1] = ACTIONS(1431), + [sym_char_literal] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1433), + [sym_super] = ACTIONS(1433), + [sym_crate] = ACTIONS(1433), + [sym_metavariable] = ACTIONS(1431), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1431), }, [STATE(462)] = { + [sym_attribute_item] = STATE(1412), + [sym_inner_attribute_item] = STATE(1412), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_match_arm] = STATE(1413), + [sym_last_match_arm] = STATE(3777), + [sym_match_pattern] = STATE(3720), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3115), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), - [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), + [aux_sym_match_block_repeat1] = STATE(472), + [aux_sym_match_arm_repeat1] = STATE(720), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(463)] = { [sym_line_comment] = STATE(463), [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(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), + [sym_identifier] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_u8] = ACTIONS(1421), + [anon_sym_i8] = ACTIONS(1421), + [anon_sym_u16] = ACTIONS(1421), + [anon_sym_i16] = ACTIONS(1421), + [anon_sym_u32] = ACTIONS(1421), + [anon_sym_i32] = ACTIONS(1421), + [anon_sym_u64] = ACTIONS(1421), + [anon_sym_i64] = ACTIONS(1421), + [anon_sym_u128] = ACTIONS(1421), + [anon_sym_i128] = ACTIONS(1421), + [anon_sym_isize] = ACTIONS(1421), + [anon_sym_usize] = ACTIONS(1421), + [anon_sym_f32] = ACTIONS(1421), + [anon_sym_f64] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_str] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_PERCENT] = ACTIONS(1421), + [anon_sym_CARET] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_AMP_AMP] = ACTIONS(1419), + [anon_sym_PIPE_PIPE] = ACTIONS(1419), + [anon_sym_LT_LT] = ACTIONS(1421), + [anon_sym_GT_GT] = ACTIONS(1421), + [anon_sym_PLUS_EQ] = ACTIONS(1419), + [anon_sym_DASH_EQ] = ACTIONS(1419), + [anon_sym_STAR_EQ] = ACTIONS(1419), + [anon_sym_SLASH_EQ] = ACTIONS(1419), + [anon_sym_PERCENT_EQ] = ACTIONS(1419), + [anon_sym_CARET_EQ] = ACTIONS(1419), + [anon_sym_AMP_EQ] = ACTIONS(1419), + [anon_sym_PIPE_EQ] = ACTIONS(1419), + [anon_sym_LT_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_GT_EQ] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1421), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym__] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1419), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_as] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_gen] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_else] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1419), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1421), + [sym_super] = ACTIONS(1421), + [sym_crate] = ACTIONS(1421), + [sym_metavariable] = ACTIONS(1419), + [sym__raw_string_literal_start] = ACTIONS(1419), + [sym_float_literal] = ACTIONS(1419), }, [STATE(464)] = { [sym_line_comment] = STATE(464), [sym_block_comment] = STATE(464), - [sym_identifier] = ACTIONS(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), + [sym_identifier] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_QMARK] = ACTIONS(1423), + [anon_sym_u8] = ACTIONS(1425), + [anon_sym_i8] = ACTIONS(1425), + [anon_sym_u16] = ACTIONS(1425), + [anon_sym_i16] = ACTIONS(1425), + [anon_sym_u32] = ACTIONS(1425), + [anon_sym_i32] = ACTIONS(1425), + [anon_sym_u64] = ACTIONS(1425), + [anon_sym_i64] = ACTIONS(1425), + [anon_sym_u128] = ACTIONS(1425), + [anon_sym_i128] = ACTIONS(1425), + [anon_sym_isize] = ACTIONS(1425), + [anon_sym_usize] = ACTIONS(1425), + [anon_sym_f32] = ACTIONS(1425), + [anon_sym_f64] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_str] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PERCENT] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_PIPE_PIPE] = ACTIONS(1423), + [anon_sym_LT_LT] = ACTIONS(1425), + [anon_sym_GT_GT] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1423), + [anon_sym_DASH_EQ] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1423), + [anon_sym_SLASH_EQ] = ACTIONS(1423), + [anon_sym_PERCENT_EQ] = ACTIONS(1423), + [anon_sym_CARET_EQ] = ACTIONS(1423), + [anon_sym_AMP_EQ] = ACTIONS(1423), + [anon_sym_PIPE_EQ] = ACTIONS(1423), + [anon_sym_LT_LT_EQ] = ACTIONS(1423), + [anon_sym_GT_GT_EQ] = ACTIONS(1423), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1423), + [anon_sym_BANG_EQ] = ACTIONS(1423), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_LT] = ACTIONS(1425), + [anon_sym_GT_EQ] = ACTIONS(1423), + [anon_sym_LT_EQ] = ACTIONS(1423), + [anon_sym__] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1423), + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_COLON_COLON] = ACTIONS(1423), + [anon_sym_POUND] = ACTIONS(1423), + [anon_sym_as] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_gen] = ACTIONS(1425), + [anon_sym_union] = ACTIONS(1425), + [anon_sym_ref] = ACTIONS(1425), + [anon_sym_else] = ACTIONS(1425), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1423), + [aux_sym_string_literal_token1] = ACTIONS(1423), + [sym_char_literal] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1425), + [sym_crate] = ACTIONS(1425), + [sym_metavariable] = ACTIONS(1423), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1423), }, [STATE(465)] = { [sym_line_comment] = STATE(465), [sym_block_comment] = STATE(465), - [sym_identifier] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_PLUS] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_QMARK] = 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(1389), - [anon_sym_SLASH] = ACTIONS(1389), - [anon_sym_PERCENT] = ACTIONS(1389), - [anon_sym_CARET] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1389), - [anon_sym_AMP_AMP] = ACTIONS(1387), - [anon_sym_PIPE_PIPE] = ACTIONS(1387), - [anon_sym_LT_LT] = ACTIONS(1389), - [anon_sym_GT_GT] = ACTIONS(1389), - [anon_sym_PLUS_EQ] = ACTIONS(1387), - [anon_sym_DASH_EQ] = ACTIONS(1387), - [anon_sym_STAR_EQ] = ACTIONS(1387), - [anon_sym_SLASH_EQ] = ACTIONS(1387), - [anon_sym_PERCENT_EQ] = ACTIONS(1387), - [anon_sym_CARET_EQ] = ACTIONS(1387), - [anon_sym_AMP_EQ] = ACTIONS(1387), - [anon_sym_PIPE_EQ] = ACTIONS(1387), - [anon_sym_LT_LT_EQ] = ACTIONS(1387), - [anon_sym_GT_GT_EQ] = ACTIONS(1387), - [anon_sym_EQ] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1387), - [anon_sym_BANG_EQ] = ACTIONS(1387), - [anon_sym_GT] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1387), - [anon_sym_LT_EQ] = ACTIONS(1387), - [anon_sym__] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1387), - [anon_sym_COMMA] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1387), - [anon_sym_POUND] = ACTIONS(1387), - [anon_sym_as] = ACTIONS(1389), - [anon_sym_const] = ACTIONS(1389), - [anon_sym_default] = ACTIONS(1389), - [anon_sym_gen] = ACTIONS(1389), - [anon_sym_union] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1389), - [anon_sym_else] = ACTIONS(1389), - [sym_mutable_specifier] = 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), + [sym_identifier] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_QMARK] = ACTIONS(1427), + [anon_sym_u8] = ACTIONS(1429), + [anon_sym_i8] = ACTIONS(1429), + [anon_sym_u16] = ACTIONS(1429), + [anon_sym_i16] = ACTIONS(1429), + [anon_sym_u32] = ACTIONS(1429), + [anon_sym_i32] = ACTIONS(1429), + [anon_sym_u64] = ACTIONS(1429), + [anon_sym_i64] = ACTIONS(1429), + [anon_sym_u128] = ACTIONS(1429), + [anon_sym_i128] = ACTIONS(1429), + [anon_sym_isize] = ACTIONS(1429), + [anon_sym_usize] = ACTIONS(1429), + [anon_sym_f32] = ACTIONS(1429), + [anon_sym_f64] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_str] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1427), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1429), + [anon_sym_PLUS_EQ] = ACTIONS(1427), + [anon_sym_DASH_EQ] = ACTIONS(1427), + [anon_sym_STAR_EQ] = ACTIONS(1427), + [anon_sym_SLASH_EQ] = ACTIONS(1427), + [anon_sym_PERCENT_EQ] = ACTIONS(1427), + [anon_sym_CARET_EQ] = ACTIONS(1427), + [anon_sym_AMP_EQ] = ACTIONS(1427), + [anon_sym_PIPE_EQ] = ACTIONS(1427), + [anon_sym_LT_LT_EQ] = ACTIONS(1427), + [anon_sym_GT_GT_EQ] = ACTIONS(1427), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1427), + [anon_sym_LT_EQ] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), + [anon_sym_COMMA] = ACTIONS(1427), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_gen] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_ref] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1429), + [sym_mutable_specifier] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1427), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_crate] = ACTIONS(1429), + [sym_metavariable] = ACTIONS(1427), + [sym__raw_string_literal_start] = ACTIONS(1427), + [sym_float_literal] = ACTIONS(1427), }, [STATE(466)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3553), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_attribute_item] = STATE(1412), + [sym_inner_attribute_item] = STATE(1412), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_match_arm] = STATE(1413), + [sym_last_match_arm] = STATE(3580), + [sym_match_pattern] = STATE(3720), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3115), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(466), [sym_block_comment] = STATE(466), [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(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), + [aux_sym_match_arm_repeat1] = STATE(720), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(467)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3592), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), [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), - [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), + [sym_identifier] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_QMARK] = ACTIONS(1435), + [anon_sym_u8] = ACTIONS(1437), + [anon_sym_i8] = ACTIONS(1437), + [anon_sym_u16] = ACTIONS(1437), + [anon_sym_i16] = ACTIONS(1437), + [anon_sym_u32] = ACTIONS(1437), + [anon_sym_i32] = ACTIONS(1437), + [anon_sym_u64] = ACTIONS(1437), + [anon_sym_i64] = ACTIONS(1437), + [anon_sym_u128] = ACTIONS(1437), + [anon_sym_i128] = ACTIONS(1437), + [anon_sym_isize] = ACTIONS(1437), + [anon_sym_usize] = ACTIONS(1437), + [anon_sym_f32] = ACTIONS(1437), + [anon_sym_f64] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_str] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PERCENT] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_LT_LT] = ACTIONS(1437), + [anon_sym_GT_GT] = ACTIONS(1437), + [anon_sym_PLUS_EQ] = ACTIONS(1435), + [anon_sym_DASH_EQ] = ACTIONS(1435), + [anon_sym_STAR_EQ] = ACTIONS(1435), + [anon_sym_SLASH_EQ] = ACTIONS(1435), + [anon_sym_PERCENT_EQ] = ACTIONS(1435), + [anon_sym_CARET_EQ] = ACTIONS(1435), + [anon_sym_AMP_EQ] = ACTIONS(1435), + [anon_sym_PIPE_EQ] = ACTIONS(1435), + [anon_sym_LT_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym__] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1437), + [anon_sym_gen] = ACTIONS(1437), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1437), + [sym_mutable_specifier] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1435), + [aux_sym_string_literal_token1] = ACTIONS(1435), + [sym_char_literal] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1437), + [sym_super] = ACTIONS(1437), + [sym_crate] = ACTIONS(1437), + [sym_metavariable] = ACTIONS(1435), + [sym__raw_string_literal_start] = ACTIONS(1435), + [sym_float_literal] = ACTIONS(1435), }, [STATE(468)] = { + [sym_attribute_item] = STATE(1412), + [sym_inner_attribute_item] = STATE(1412), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_match_arm] = STATE(1413), + [sym_last_match_arm] = STATE(3499), + [sym_match_pattern] = STATE(3720), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3115), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(468), [sym_block_comment] = STATE(468), - [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), + [aux_sym_match_block_repeat1] = STATE(472), + [aux_sym_match_arm_repeat1] = STATE(720), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(469)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_last_match_arm] = STATE(3602), - [sym_match_pattern] = STATE(3527), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_attribute_item] = STATE(1412), + [sym_inner_attribute_item] = STATE(1412), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_match_arm] = STATE(1413), + [sym_last_match_arm] = STATE(3469), + [sym_match_pattern] = STATE(3720), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3115), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(469), [sym_block_comment] = STATE(469), [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(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), + [aux_sym_match_arm_repeat1] = STATE(720), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(470)] = { [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(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), + [sym_identifier] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_PLUS] = ACTIONS(1537), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_QMARK] = ACTIONS(1535), + [anon_sym_u8] = ACTIONS(1537), + [anon_sym_i8] = ACTIONS(1537), + [anon_sym_u16] = ACTIONS(1537), + [anon_sym_i16] = ACTIONS(1537), + [anon_sym_u32] = ACTIONS(1537), + [anon_sym_i32] = ACTIONS(1537), + [anon_sym_u64] = ACTIONS(1537), + [anon_sym_i64] = ACTIONS(1537), + [anon_sym_u128] = ACTIONS(1537), + [anon_sym_i128] = ACTIONS(1537), + [anon_sym_isize] = ACTIONS(1537), + [anon_sym_usize] = ACTIONS(1537), + [anon_sym_f32] = ACTIONS(1537), + [anon_sym_f64] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_str] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_SLASH] = ACTIONS(1537), + [anon_sym_PERCENT] = ACTIONS(1537), + [anon_sym_CARET] = ACTIONS(1537), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1535), + [anon_sym_PIPE_PIPE] = ACTIONS(1535), + [anon_sym_LT_LT] = ACTIONS(1537), + [anon_sym_GT_GT] = ACTIONS(1537), + [anon_sym_PLUS_EQ] = ACTIONS(1535), + [anon_sym_DASH_EQ] = ACTIONS(1535), + [anon_sym_STAR_EQ] = ACTIONS(1535), + [anon_sym_SLASH_EQ] = ACTIONS(1535), + [anon_sym_PERCENT_EQ] = ACTIONS(1535), + [anon_sym_CARET_EQ] = ACTIONS(1535), + [anon_sym_AMP_EQ] = ACTIONS(1535), + [anon_sym_PIPE_EQ] = ACTIONS(1535), + [anon_sym_LT_LT_EQ] = ACTIONS(1535), + [anon_sym_GT_GT_EQ] = ACTIONS(1535), + [anon_sym_EQ] = ACTIONS(1537), + [anon_sym_EQ_EQ] = ACTIONS(1535), + [anon_sym_BANG_EQ] = ACTIONS(1535), + [anon_sym_GT] = ACTIONS(1537), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_GT_EQ] = ACTIONS(1535), + [anon_sym_LT_EQ] = ACTIONS(1535), + [anon_sym__] = ACTIONS(1537), + [anon_sym_DOT] = ACTIONS(1537), + [anon_sym_DOT_DOT] = ACTIONS(1537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1535), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1535), + [anon_sym_COMMA] = ACTIONS(1535), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(1535), + [anon_sym_as] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1537), + [anon_sym_gen] = ACTIONS(1537), + [anon_sym_union] = ACTIONS(1537), + [anon_sym_ref] = ACTIONS(1537), + [sym_mutable_specifier] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1535), + [aux_sym_string_literal_token1] = ACTIONS(1535), + [sym_char_literal] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1537), + [sym_super] = ACTIONS(1537), + [sym_crate] = ACTIONS(1537), + [sym_metavariable] = ACTIONS(1535), + [sym__raw_string_literal_start] = ACTIONS(1535), + [sym_float_literal] = ACTIONS(1535), }, [STATE(471)] = { [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1517), - [anon_sym_RBRACE] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_QMARK] = ACTIONS(1517), - [anon_sym_u8] = ACTIONS(1519), - [anon_sym_i8] = ACTIONS(1519), - [anon_sym_u16] = ACTIONS(1519), - [anon_sym_i16] = ACTIONS(1519), - [anon_sym_u32] = ACTIONS(1519), - [anon_sym_i32] = ACTIONS(1519), - [anon_sym_u64] = ACTIONS(1519), - [anon_sym_i64] = ACTIONS(1519), - [anon_sym_u128] = ACTIONS(1519), - [anon_sym_i128] = ACTIONS(1519), - [anon_sym_isize] = ACTIONS(1519), - [anon_sym_usize] = ACTIONS(1519), - [anon_sym_f32] = ACTIONS(1519), - [anon_sym_f64] = ACTIONS(1519), - [anon_sym_bool] = ACTIONS(1519), - [anon_sym_str] = ACTIONS(1519), - [anon_sym_char] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_PERCENT] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1519), - [anon_sym_AMP] = ACTIONS(1519), - [anon_sym_PIPE] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1517), - [anon_sym_PIPE_PIPE] = ACTIONS(1517), - [anon_sym_LT_LT] = ACTIONS(1519), - [anon_sym_GT_GT] = ACTIONS(1519), - [anon_sym_PLUS_EQ] = ACTIONS(1517), - [anon_sym_DASH_EQ] = ACTIONS(1517), - [anon_sym_STAR_EQ] = ACTIONS(1517), - [anon_sym_SLASH_EQ] = ACTIONS(1517), - [anon_sym_PERCENT_EQ] = ACTIONS(1517), - [anon_sym_CARET_EQ] = ACTIONS(1517), - [anon_sym_AMP_EQ] = ACTIONS(1517), - [anon_sym_PIPE_EQ] = ACTIONS(1517), - [anon_sym_LT_LT_EQ] = ACTIONS(1517), - [anon_sym_GT_GT_EQ] = ACTIONS(1517), - [anon_sym_EQ] = ACTIONS(1519), - [anon_sym_EQ_EQ] = ACTIONS(1517), - [anon_sym_BANG_EQ] = ACTIONS(1517), - [anon_sym_GT] = ACTIONS(1519), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT_EQ] = ACTIONS(1517), - [anon_sym_LT_EQ] = ACTIONS(1517), - [anon_sym__] = ACTIONS(1519), - [anon_sym_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1517), - [anon_sym_COMMA] = ACTIONS(1517), - [anon_sym_COLON_COLON] = ACTIONS(1517), - [anon_sym_POUND] = ACTIONS(1517), - [anon_sym_as] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_default] = ACTIONS(1519), - [anon_sym_gen] = ACTIONS(1519), - [anon_sym_union] = ACTIONS(1519), - [anon_sym_ref] = ACTIONS(1519), - [sym_mutable_specifier] = ACTIONS(1519), - [sym_integer_literal] = ACTIONS(1517), - [aux_sym_string_literal_token1] = ACTIONS(1517), - [sym_char_literal] = ACTIONS(1517), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1519), - [sym_super] = ACTIONS(1519), - [sym_crate] = ACTIONS(1519), - [sym_metavariable] = ACTIONS(1517), - [sym__raw_string_literal_start] = ACTIONS(1517), - [sym_float_literal] = ACTIONS(1517), + [sym_identifier] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_u8] = ACTIONS(1711), + [anon_sym_i8] = ACTIONS(1711), + [anon_sym_u16] = ACTIONS(1711), + [anon_sym_i16] = ACTIONS(1711), + [anon_sym_u32] = ACTIONS(1711), + [anon_sym_i32] = ACTIONS(1711), + [anon_sym_u64] = ACTIONS(1711), + [anon_sym_i64] = ACTIONS(1711), + [anon_sym_u128] = ACTIONS(1711), + [anon_sym_i128] = ACTIONS(1711), + [anon_sym_isize] = ACTIONS(1711), + [anon_sym_usize] = ACTIONS(1711), + [anon_sym_f32] = ACTIONS(1711), + [anon_sym_f64] = ACTIONS(1711), + [anon_sym_bool] = ACTIONS(1711), + [anon_sym_str] = ACTIONS(1711), + [anon_sym_char] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PERCENT] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_PIPE_PIPE] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_PLUS_EQ] = ACTIONS(1451), + [anon_sym_DASH_EQ] = ACTIONS(1451), + [anon_sym_STAR_EQ] = ACTIONS(1451), + [anon_sym_SLASH_EQ] = ACTIONS(1451), + [anon_sym_PERCENT_EQ] = ACTIONS(1451), + [anon_sym_CARET_EQ] = ACTIONS(1451), + [anon_sym_AMP_EQ] = ACTIONS(1451), + [anon_sym_PIPE_EQ] = ACTIONS(1451), + [anon_sym_LT_LT_EQ] = ACTIONS(1451), + [anon_sym_GT_GT_EQ] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1451), + [anon_sym_BANG_EQ] = ACTIONS(1451), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1711), + [anon_sym_GT_EQ] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1451), + [anon_sym__] = ACTIONS(1711), + [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1451), + [anon_sym_COLON_COLON] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(1713), + [anon_sym_as] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1711), + [anon_sym_default] = ACTIONS(1711), + [anon_sym_gen] = ACTIONS(1711), + [anon_sym_union] = ACTIONS(1711), + [anon_sym_ref] = ACTIONS(1711), + [sym_mutable_specifier] = ACTIONS(1711), + [sym_integer_literal] = ACTIONS(1713), + [aux_sym_string_literal_token1] = ACTIONS(1713), + [sym_char_literal] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1711), + [sym_super] = ACTIONS(1711), + [sym_crate] = ACTIONS(1711), + [sym_metavariable] = ACTIONS(1713), + [sym__raw_string_literal_start] = ACTIONS(1713), + [sym_float_literal] = ACTIONS(1713), }, [STATE(472)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_arm] = STATE(1396), - [sym_match_pattern] = STATE(3555), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_attribute_item] = STATE(1412), + [sym_inner_attribute_item] = STATE(1412), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_match_arm] = STATE(1413), + [sym_match_pattern] = STATE(3570), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3115), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), [aux_sym_match_block_repeat1] = STATE(472), - [aux_sym_match_arm_repeat1] = STATE(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), + [aux_sym_match_arm_repeat1] = STATE(627), + [sym_identifier] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1721), + [anon_sym_u8] = ACTIONS(1724), + [anon_sym_i8] = ACTIONS(1724), + [anon_sym_u16] = ACTIONS(1724), + [anon_sym_i16] = ACTIONS(1724), + [anon_sym_u32] = ACTIONS(1724), + [anon_sym_i32] = ACTIONS(1724), + [anon_sym_u64] = ACTIONS(1724), + [anon_sym_i64] = ACTIONS(1724), + [anon_sym_u128] = ACTIONS(1724), + [anon_sym_i128] = ACTIONS(1724), + [anon_sym_isize] = ACTIONS(1724), + [anon_sym_usize] = ACTIONS(1724), + [anon_sym_f32] = ACTIONS(1724), + [anon_sym_f64] = ACTIONS(1724), + [anon_sym_bool] = ACTIONS(1724), + [anon_sym_str] = ACTIONS(1724), + [anon_sym_char] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_LT] = ACTIONS(1736), + [anon_sym__] = ACTIONS(1739), + [anon_sym_DOT_DOT] = ACTIONS(1742), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), + [anon_sym_COLON_COLON] = ACTIONS(1748), + [anon_sym_POUND] = ACTIONS(1751), + [anon_sym_const] = ACTIONS(1754), + [anon_sym_default] = ACTIONS(1757), + [anon_sym_gen] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1757), + [anon_sym_ref] = ACTIONS(1760), + [sym_mutable_specifier] = ACTIONS(1763), + [sym_integer_literal] = ACTIONS(1766), + [aux_sym_string_literal_token1] = ACTIONS(1769), + [sym_char_literal] = ACTIONS(1766), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1775), + [sym_super] = ACTIONS(1775), + [sym_crate] = ACTIONS(1775), + [sym_metavariable] = ACTIONS(1778), + [sym__raw_string_literal_start] = ACTIONS(1781), + [sym_float_literal] = ACTIONS(1766), }, [STATE(473)] = { [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_QMARK] = ACTIONS(1509), - [anon_sym_u8] = ACTIONS(1511), - [anon_sym_i8] = ACTIONS(1511), - [anon_sym_u16] = ACTIONS(1511), - [anon_sym_i16] = ACTIONS(1511), - [anon_sym_u32] = ACTIONS(1511), - [anon_sym_i32] = ACTIONS(1511), - [anon_sym_u64] = ACTIONS(1511), - [anon_sym_i64] = ACTIONS(1511), - [anon_sym_u128] = ACTIONS(1511), - [anon_sym_i128] = ACTIONS(1511), - [anon_sym_isize] = ACTIONS(1511), - [anon_sym_usize] = ACTIONS(1511), - [anon_sym_f32] = ACTIONS(1511), - [anon_sym_f64] = ACTIONS(1511), - [anon_sym_bool] = ACTIONS(1511), - [anon_sym_str] = ACTIONS(1511), - [anon_sym_char] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_PERCENT] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_AMP_AMP] = ACTIONS(1509), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(1511), - [anon_sym_PLUS_EQ] = ACTIONS(1509), - [anon_sym_DASH_EQ] = ACTIONS(1509), - [anon_sym_STAR_EQ] = ACTIONS(1509), - [anon_sym_SLASH_EQ] = ACTIONS(1509), - [anon_sym_PERCENT_EQ] = ACTIONS(1509), - [anon_sym_CARET_EQ] = ACTIONS(1509), - [anon_sym_AMP_EQ] = ACTIONS(1509), - [anon_sym_PIPE_EQ] = ACTIONS(1509), - [anon_sym_LT_LT_EQ] = ACTIONS(1509), - [anon_sym_GT_GT_EQ] = ACTIONS(1509), - [anon_sym_EQ] = ACTIONS(1511), - [anon_sym_EQ_EQ] = ACTIONS(1509), - [anon_sym_BANG_EQ] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT_EQ] = ACTIONS(1509), - [anon_sym_LT_EQ] = ACTIONS(1509), - [anon_sym__] = ACTIONS(1511), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT] = ACTIONS(1511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1509), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_COLON_COLON] = ACTIONS(1509), - [anon_sym_POUND] = ACTIONS(1509), - [anon_sym_as] = ACTIONS(1511), - [anon_sym_const] = ACTIONS(1511), - [anon_sym_default] = ACTIONS(1511), - [anon_sym_gen] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1511), - [anon_sym_ref] = ACTIONS(1511), - [sym_mutable_specifier] = ACTIONS(1511), - [sym_integer_literal] = ACTIONS(1509), - [aux_sym_string_literal_token1] = ACTIONS(1509), - [sym_char_literal] = ACTIONS(1509), - [anon_sym_true] = ACTIONS(1511), - [anon_sym_false] = ACTIONS(1511), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1511), - [sym_super] = ACTIONS(1511), - [sym_crate] = ACTIONS(1511), - [sym_metavariable] = ACTIONS(1509), - [sym__raw_string_literal_start] = ACTIONS(1509), - [sym_float_literal] = ACTIONS(1509), + [sym_identifier] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_QMARK] = ACTIONS(1451), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PERCENT] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1784), + [anon_sym_AMP_AMP] = ACTIONS(1451), + [anon_sym_PIPE_PIPE] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_PLUS_EQ] = ACTIONS(1451), + [anon_sym_DASH_EQ] = ACTIONS(1451), + [anon_sym_STAR_EQ] = ACTIONS(1451), + [anon_sym_SLASH_EQ] = ACTIONS(1451), + [anon_sym_PERCENT_EQ] = ACTIONS(1451), + [anon_sym_CARET_EQ] = ACTIONS(1451), + [anon_sym_AMP_EQ] = ACTIONS(1451), + [anon_sym_PIPE_EQ] = ACTIONS(1451), + [anon_sym_LT_LT_EQ] = ACTIONS(1451), + [anon_sym_GT_GT_EQ] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1451), + [anon_sym_BANG_EQ] = ACTIONS(1451), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1784), + [anon_sym_GT_EQ] = ACTIONS(1451), + [anon_sym_LT_EQ] = ACTIONS(1451), + [anon_sym__] = ACTIONS(1784), + [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), + [anon_sym_COMMA] = ACTIONS(1451), + [anon_sym_COLON_COLON] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_gen] = ACTIONS(1784), + [anon_sym_union] = ACTIONS(1784), + [anon_sym_ref] = ACTIONS(1784), + [sym_mutable_specifier] = ACTIONS(1784), + [sym_integer_literal] = ACTIONS(1786), + [aux_sym_string_literal_token1] = ACTIONS(1786), + [sym_char_literal] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_crate] = ACTIONS(1784), + [sym_metavariable] = ACTIONS(1786), + [sym__raw_string_literal_start] = ACTIONS(1786), + [sym_float_literal] = ACTIONS(1786), }, [STATE(474)] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [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), + [sym_identifier] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_QMARK] = ACTIONS(1461), + [anon_sym_u8] = ACTIONS(1463), + [anon_sym_i8] = ACTIONS(1463), + [anon_sym_u16] = ACTIONS(1463), + [anon_sym_i16] = ACTIONS(1463), + [anon_sym_u32] = ACTIONS(1463), + [anon_sym_i32] = ACTIONS(1463), + [anon_sym_u64] = ACTIONS(1463), + [anon_sym_i64] = ACTIONS(1463), + [anon_sym_u128] = ACTIONS(1463), + [anon_sym_i128] = ACTIONS(1463), + [anon_sym_isize] = ACTIONS(1463), + [anon_sym_usize] = ACTIONS(1463), + [anon_sym_f32] = ACTIONS(1463), + [anon_sym_f64] = ACTIONS(1463), + [anon_sym_bool] = ACTIONS(1463), + [anon_sym_str] = ACTIONS(1463), + [anon_sym_char] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_SLASH] = ACTIONS(1463), + [anon_sym_PERCENT] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_AMP_AMP] = ACTIONS(1461), + [anon_sym_PIPE_PIPE] = ACTIONS(1461), + [anon_sym_LT_LT] = ACTIONS(1463), + [anon_sym_GT_GT] = ACTIONS(1463), + [anon_sym_PLUS_EQ] = ACTIONS(1461), + [anon_sym_DASH_EQ] = ACTIONS(1461), + [anon_sym_STAR_EQ] = ACTIONS(1461), + [anon_sym_SLASH_EQ] = ACTIONS(1461), + [anon_sym_PERCENT_EQ] = ACTIONS(1461), + [anon_sym_CARET_EQ] = ACTIONS(1461), + [anon_sym_AMP_EQ] = ACTIONS(1461), + [anon_sym_PIPE_EQ] = ACTIONS(1461), + [anon_sym_LT_LT_EQ] = ACTIONS(1461), + [anon_sym_GT_GT_EQ] = ACTIONS(1461), + [anon_sym_EQ] = ACTIONS(1463), + [anon_sym_EQ_EQ] = ACTIONS(1461), + [anon_sym_BANG_EQ] = ACTIONS(1461), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1461), + [anon_sym_LT_EQ] = ACTIONS(1461), + [anon_sym__] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_DOT_DOT] = ACTIONS(1463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1461), + [anon_sym_COMMA] = ACTIONS(1461), + [anon_sym_COLON_COLON] = ACTIONS(1461), + [anon_sym_POUND] = ACTIONS(1461), + [anon_sym_as] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_gen] = ACTIONS(1463), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_ref] = ACTIONS(1463), + [sym_mutable_specifier] = ACTIONS(1463), + [sym_integer_literal] = ACTIONS(1461), + [aux_sym_string_literal_token1] = ACTIONS(1461), + [sym_char_literal] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1463), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1461), + [sym__raw_string_literal_start] = ACTIONS(1461), + [sym_float_literal] = ACTIONS(1461), }, [STATE(475)] = { [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), + [sym_identifier] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_RBRACE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1483), + [anon_sym_STAR] = ACTIONS(1483), + [anon_sym_QMARK] = ACTIONS(1481), + [anon_sym_u8] = ACTIONS(1483), + [anon_sym_i8] = ACTIONS(1483), + [anon_sym_u16] = ACTIONS(1483), + [anon_sym_i16] = ACTIONS(1483), + [anon_sym_u32] = ACTIONS(1483), + [anon_sym_i32] = ACTIONS(1483), + [anon_sym_u64] = ACTIONS(1483), + [anon_sym_i64] = ACTIONS(1483), + [anon_sym_u128] = ACTIONS(1483), + [anon_sym_i128] = ACTIONS(1483), + [anon_sym_isize] = ACTIONS(1483), + [anon_sym_usize] = ACTIONS(1483), + [anon_sym_f32] = ACTIONS(1483), + [anon_sym_f64] = ACTIONS(1483), + [anon_sym_bool] = ACTIONS(1483), + [anon_sym_str] = ACTIONS(1483), + [anon_sym_char] = ACTIONS(1483), + [anon_sym_DASH] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_PERCENT] = ACTIONS(1483), + [anon_sym_CARET] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_AMP_AMP] = ACTIONS(1481), + [anon_sym_PIPE_PIPE] = ACTIONS(1481), + [anon_sym_LT_LT] = ACTIONS(1483), + [anon_sym_GT_GT] = ACTIONS(1483), + [anon_sym_PLUS_EQ] = ACTIONS(1481), + [anon_sym_DASH_EQ] = ACTIONS(1481), + [anon_sym_STAR_EQ] = ACTIONS(1481), + [anon_sym_SLASH_EQ] = ACTIONS(1481), + [anon_sym_PERCENT_EQ] = ACTIONS(1481), + [anon_sym_CARET_EQ] = ACTIONS(1481), + [anon_sym_AMP_EQ] = ACTIONS(1481), + [anon_sym_PIPE_EQ] = ACTIONS(1481), + [anon_sym_LT_LT_EQ] = ACTIONS(1481), + [anon_sym_GT_GT_EQ] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(1483), + [anon_sym_EQ_EQ] = ACTIONS(1481), + [anon_sym_BANG_EQ] = ACTIONS(1481), + [anon_sym_GT] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1483), + [anon_sym_GT_EQ] = ACTIONS(1481), + [anon_sym_LT_EQ] = ACTIONS(1481), + [anon_sym__] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(1481), + [anon_sym_COLON_COLON] = ACTIONS(1481), + [anon_sym_POUND] = ACTIONS(1481), + [anon_sym_as] = ACTIONS(1483), + [anon_sym_const] = ACTIONS(1483), + [anon_sym_default] = ACTIONS(1483), + [anon_sym_gen] = ACTIONS(1483), + [anon_sym_union] = ACTIONS(1483), + [anon_sym_ref] = ACTIONS(1483), + [sym_mutable_specifier] = ACTIONS(1483), + [sym_integer_literal] = ACTIONS(1481), + [aux_sym_string_literal_token1] = ACTIONS(1481), + [sym_char_literal] = ACTIONS(1481), + [anon_sym_true] = ACTIONS(1483), + [anon_sym_false] = ACTIONS(1483), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1483), + [sym_super] = ACTIONS(1483), + [sym_crate] = ACTIONS(1483), + [sym_metavariable] = ACTIONS(1481), + [sym__raw_string_literal_start] = ACTIONS(1481), + [sym_float_literal] = ACTIONS(1481), + }, + [STATE(476)] = { + [sym_line_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [sym_identifier] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1453), + [anon_sym_u8] = ACTIONS(1455), + [anon_sym_i8] = ACTIONS(1455), + [anon_sym_u16] = ACTIONS(1455), + [anon_sym_i16] = ACTIONS(1455), + [anon_sym_u32] = ACTIONS(1455), + [anon_sym_i32] = ACTIONS(1455), + [anon_sym_u64] = ACTIONS(1455), + [anon_sym_i64] = ACTIONS(1455), + [anon_sym_u128] = ACTIONS(1455), + [anon_sym_i128] = ACTIONS(1455), + [anon_sym_isize] = ACTIONS(1455), + [anon_sym_usize] = ACTIONS(1455), + [anon_sym_f32] = ACTIONS(1455), + [anon_sym_f64] = ACTIONS(1455), + [anon_sym_bool] = ACTIONS(1455), + [anon_sym_str] = ACTIONS(1455), + [anon_sym_char] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_STAR_EQ] = ACTIONS(1453), + [anon_sym_SLASH_EQ] = ACTIONS(1453), + [anon_sym_PERCENT_EQ] = ACTIONS(1453), + [anon_sym_CARET_EQ] = ACTIONS(1453), + [anon_sym_AMP_EQ] = ACTIONS(1453), + [anon_sym_PIPE_EQ] = ACTIONS(1453), + [anon_sym_LT_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_GT_EQ] = ACTIONS(1453), + [anon_sym_EQ] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym__] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1453), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(1453), + [anon_sym_as] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_gen] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_ref] = ACTIONS(1455), + [sym_mutable_specifier] = ACTIONS(1455), + [sym_integer_literal] = ACTIONS(1453), + [aux_sym_string_literal_token1] = ACTIONS(1453), + [sym_char_literal] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [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(477)] = { + [sym_line_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [sym_identifier] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_QMARK] = ACTIONS(1531), + [anon_sym_u8] = ACTIONS(1533), + [anon_sym_i8] = ACTIONS(1533), + [anon_sym_u16] = ACTIONS(1533), + [anon_sym_i16] = ACTIONS(1533), + [anon_sym_u32] = ACTIONS(1533), + [anon_sym_i32] = ACTIONS(1533), + [anon_sym_u64] = ACTIONS(1533), + [anon_sym_i64] = ACTIONS(1533), + [anon_sym_u128] = ACTIONS(1533), + [anon_sym_i128] = ACTIONS(1533), + [anon_sym_isize] = ACTIONS(1533), + [anon_sym_usize] = ACTIONS(1533), + [anon_sym_f32] = ACTIONS(1533), + [anon_sym_f64] = ACTIONS(1533), + [anon_sym_bool] = ACTIONS(1533), + [anon_sym_str] = ACTIONS(1533), + [anon_sym_char] = ACTIONS(1533), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PERCENT] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PERCENT_EQ] = ACTIONS(1531), + [anon_sym_CARET_EQ] = ACTIONS(1531), + [anon_sym_AMP_EQ] = ACTIONS(1531), + [anon_sym_PIPE_EQ] = ACTIONS(1531), + [anon_sym_LT_LT_EQ] = ACTIONS(1531), + [anon_sym_GT_GT_EQ] = ACTIONS(1531), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_EQ_EQ] = ACTIONS(1531), + [anon_sym_BANG_EQ] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(1531), + [anon_sym_LT_EQ] = ACTIONS(1531), + [anon_sym__] = ACTIONS(1533), + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), + [anon_sym_COMMA] = ACTIONS(1531), + [anon_sym_COLON_COLON] = ACTIONS(1531), + [anon_sym_POUND] = ACTIONS(1531), + [anon_sym_as] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1533), + [anon_sym_default] = ACTIONS(1533), + [anon_sym_gen] = ACTIONS(1533), + [anon_sym_union] = ACTIONS(1533), + [anon_sym_ref] = ACTIONS(1533), + [sym_mutable_specifier] = ACTIONS(1533), + [sym_integer_literal] = ACTIONS(1531), + [aux_sym_string_literal_token1] = ACTIONS(1531), + [sym_char_literal] = ACTIONS(1531), + [anon_sym_true] = ACTIONS(1533), + [anon_sym_false] = ACTIONS(1533), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1533), + [sym_super] = ACTIONS(1533), + [sym_crate] = ACTIONS(1533), + [sym_metavariable] = ACTIONS(1531), + [sym__raw_string_literal_start] = ACTIONS(1531), + [sym_float_literal] = ACTIONS(1531), + }, + [STATE(478)] = { + [sym_line_comment] = STATE(478), + [sym_block_comment] = STATE(478), + [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(479)] = { + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_QMARK] = ACTIONS(1511), + [anon_sym_u8] = ACTIONS(1513), + [anon_sym_i8] = ACTIONS(1513), + [anon_sym_u16] = ACTIONS(1513), + [anon_sym_i16] = ACTIONS(1513), + [anon_sym_u32] = ACTIONS(1513), + [anon_sym_i32] = ACTIONS(1513), + [anon_sym_u64] = ACTIONS(1513), + [anon_sym_i64] = ACTIONS(1513), + [anon_sym_u128] = ACTIONS(1513), + [anon_sym_i128] = ACTIONS(1513), + [anon_sym_isize] = ACTIONS(1513), + [anon_sym_usize] = ACTIONS(1513), + [anon_sym_f32] = ACTIONS(1513), + [anon_sym_f64] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_str] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1511), + [anon_sym_LT_LT] = ACTIONS(1513), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1511), + [anon_sym_DASH_EQ] = ACTIONS(1511), + [anon_sym_STAR_EQ] = ACTIONS(1511), + [anon_sym_SLASH_EQ] = ACTIONS(1511), + [anon_sym_PERCENT_EQ] = ACTIONS(1511), + [anon_sym_CARET_EQ] = ACTIONS(1511), + [anon_sym_AMP_EQ] = ACTIONS(1511), + [anon_sym_PIPE_EQ] = ACTIONS(1511), + [anon_sym_LT_LT_EQ] = ACTIONS(1511), + [anon_sym_GT_GT_EQ] = ACTIONS(1511), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1511), + [anon_sym_BANG_EQ] = ACTIONS(1511), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1511), + [anon_sym_LT_EQ] = ACTIONS(1511), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1511), + [anon_sym_COMMA] = ACTIONS(1511), + [anon_sym_COLON_COLON] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(1511), + [anon_sym_as] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_gen] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_ref] = ACTIONS(1513), + [sym_mutable_specifier] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1511), + [aux_sym_string_literal_token1] = ACTIONS(1511), + [sym_char_literal] = ACTIONS(1511), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1513), + [sym_super] = ACTIONS(1513), + [sym_crate] = ACTIONS(1513), + [sym_metavariable] = ACTIONS(1511), + [sym__raw_string_literal_start] = ACTIONS(1511), + [sym_float_literal] = ACTIONS(1511), + }, + [STATE(480)] = { + [sym_line_comment] = STATE(480), + [sym_block_comment] = STATE(480), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_QMARK] = ACTIONS(1515), + [anon_sym_u8] = ACTIONS(1517), + [anon_sym_i8] = ACTIONS(1517), + [anon_sym_u16] = ACTIONS(1517), + [anon_sym_i16] = ACTIONS(1517), + [anon_sym_u32] = ACTIONS(1517), + [anon_sym_i32] = ACTIONS(1517), + [anon_sym_u64] = ACTIONS(1517), + [anon_sym_i64] = ACTIONS(1517), + [anon_sym_u128] = ACTIONS(1517), + [anon_sym_i128] = ACTIONS(1517), + [anon_sym_isize] = ACTIONS(1517), + [anon_sym_usize] = ACTIONS(1517), + [anon_sym_f32] = ACTIONS(1517), + [anon_sym_f64] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_str] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_LT_LT] = ACTIONS(1517), + [anon_sym_GT_GT] = ACTIONS(1517), + [anon_sym_PLUS_EQ] = ACTIONS(1515), + [anon_sym_DASH_EQ] = ACTIONS(1515), + [anon_sym_STAR_EQ] = ACTIONS(1515), + [anon_sym_SLASH_EQ] = ACTIONS(1515), + [anon_sym_PERCENT_EQ] = ACTIONS(1515), + [anon_sym_CARET_EQ] = ACTIONS(1515), + [anon_sym_AMP_EQ] = ACTIONS(1515), + [anon_sym_PIPE_EQ] = ACTIONS(1515), + [anon_sym_LT_LT_EQ] = ACTIONS(1515), + [anon_sym_GT_GT_EQ] = ACTIONS(1515), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_EQ_EQ] = ACTIONS(1515), + [anon_sym_BANG_EQ] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1517), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_GT_EQ] = ACTIONS(1515), + [anon_sym_LT_EQ] = ACTIONS(1515), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(1515), + [anon_sym_as] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_default] = ACTIONS(1517), + [anon_sym_gen] = ACTIONS(1517), + [anon_sym_union] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1517), + [sym_mutable_specifier] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1515), + [aux_sym_string_literal_token1] = ACTIONS(1515), + [sym_char_literal] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1517), + [sym_super] = ACTIONS(1517), + [sym_crate] = ACTIONS(1517), + [sym_metavariable] = ACTIONS(1515), + [sym__raw_string_literal_start] = ACTIONS(1515), + [sym_float_literal] = ACTIONS(1515), + }, + [STATE(481)] = { + [sym_line_comment] = STATE(481), + [sym_block_comment] = STATE(481), + [sym_identifier] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_QMARK] = ACTIONS(1495), + [anon_sym_u8] = ACTIONS(1497), + [anon_sym_i8] = ACTIONS(1497), + [anon_sym_u16] = ACTIONS(1497), + [anon_sym_i16] = ACTIONS(1497), + [anon_sym_u32] = ACTIONS(1497), + [anon_sym_i32] = ACTIONS(1497), + [anon_sym_u64] = ACTIONS(1497), + [anon_sym_i64] = ACTIONS(1497), + [anon_sym_u128] = ACTIONS(1497), + [anon_sym_i128] = ACTIONS(1497), + [anon_sym_isize] = ACTIONS(1497), + [anon_sym_usize] = ACTIONS(1497), + [anon_sym_f32] = ACTIONS(1497), + [anon_sym_f64] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_str] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_PIPE_PIPE] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_PLUS_EQ] = ACTIONS(1495), + [anon_sym_DASH_EQ] = ACTIONS(1495), + [anon_sym_STAR_EQ] = ACTIONS(1495), + [anon_sym_SLASH_EQ] = ACTIONS(1495), + [anon_sym_PERCENT_EQ] = ACTIONS(1495), + [anon_sym_CARET_EQ] = ACTIONS(1495), + [anon_sym_AMP_EQ] = ACTIONS(1495), + [anon_sym_PIPE_EQ] = ACTIONS(1495), + [anon_sym_LT_LT_EQ] = ACTIONS(1495), + [anon_sym_GT_GT_EQ] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym__] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_COLON_COLON] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_gen] = ACTIONS(1497), + [anon_sym_union] = ACTIONS(1497), + [anon_sym_ref] = ACTIONS(1497), + [sym_mutable_specifier] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1495), + [aux_sym_string_literal_token1] = ACTIONS(1495), + [sym_char_literal] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1497), + [sym_super] = ACTIONS(1497), + [sym_crate] = ACTIONS(1497), + [sym_metavariable] = ACTIONS(1495), + [sym__raw_string_literal_start] = ACTIONS(1495), + [sym_float_literal] = ACTIONS(1495), + }, + [STATE(482)] = { + [sym_line_comment] = STATE(482), + [sym_block_comment] = STATE(482), + [sym_identifier] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_u8] = ACTIONS(1509), + [anon_sym_i8] = ACTIONS(1509), + [anon_sym_u16] = ACTIONS(1509), + [anon_sym_i16] = ACTIONS(1509), + [anon_sym_u32] = ACTIONS(1509), + [anon_sym_i32] = ACTIONS(1509), + [anon_sym_u64] = ACTIONS(1509), + [anon_sym_i64] = ACTIONS(1509), + [anon_sym_u128] = ACTIONS(1509), + [anon_sym_i128] = ACTIONS(1509), + [anon_sym_isize] = ACTIONS(1509), + [anon_sym_usize] = ACTIONS(1509), + [anon_sym_f32] = ACTIONS(1509), + [anon_sym_f64] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_str] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PERCENT] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym__] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_gen] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_ref] = ACTIONS(1509), + [sym_mutable_specifier] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1507), + [aux_sym_string_literal_token1] = ACTIONS(1507), + [sym_char_literal] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_crate] = ACTIONS(1509), + [sym_metavariable] = ACTIONS(1507), + [sym__raw_string_literal_start] = ACTIONS(1507), + [sym_float_literal] = ACTIONS(1507), + }, + [STATE(483)] = { + [sym_line_comment] = STATE(483), + [sym_block_comment] = STATE(483), + [sym_identifier] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_PLUS] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_QMARK] = ACTIONS(1525), + [anon_sym_u8] = ACTIONS(1527), + [anon_sym_i8] = ACTIONS(1527), + [anon_sym_u16] = ACTIONS(1527), + [anon_sym_i16] = ACTIONS(1527), + [anon_sym_u32] = ACTIONS(1527), + [anon_sym_i32] = ACTIONS(1527), + [anon_sym_u64] = ACTIONS(1527), + [anon_sym_i64] = ACTIONS(1527), + [anon_sym_u128] = ACTIONS(1527), + [anon_sym_i128] = ACTIONS(1527), + [anon_sym_isize] = ACTIONS(1527), + [anon_sym_usize] = ACTIONS(1527), + [anon_sym_f32] = ACTIONS(1527), + [anon_sym_f64] = ACTIONS(1527), + [anon_sym_bool] = ACTIONS(1527), + [anon_sym_str] = ACTIONS(1527), + [anon_sym_char] = ACTIONS(1527), + [anon_sym_DASH] = ACTIONS(1527), + [anon_sym_SLASH] = ACTIONS(1527), + [anon_sym_PERCENT] = ACTIONS(1527), + [anon_sym_CARET] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(1525), + [anon_sym_PIPE_PIPE] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_PLUS_EQ] = ACTIONS(1525), + [anon_sym_DASH_EQ] = ACTIONS(1525), + [anon_sym_STAR_EQ] = ACTIONS(1525), + [anon_sym_SLASH_EQ] = ACTIONS(1525), + [anon_sym_PERCENT_EQ] = ACTIONS(1525), + [anon_sym_CARET_EQ] = ACTIONS(1525), + [anon_sym_AMP_EQ] = ACTIONS(1525), + [anon_sym_PIPE_EQ] = ACTIONS(1525), + [anon_sym_LT_LT_EQ] = ACTIONS(1525), + [anon_sym_GT_GT_EQ] = ACTIONS(1525), + [anon_sym_EQ] = ACTIONS(1527), + [anon_sym_EQ_EQ] = ACTIONS(1525), + [anon_sym_BANG_EQ] = ACTIONS(1525), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT_EQ] = ACTIONS(1525), + [anon_sym_LT_EQ] = ACTIONS(1525), + [anon_sym__] = ACTIONS(1527), + [anon_sym_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), + [anon_sym_COMMA] = ACTIONS(1525), + [anon_sym_COLON_COLON] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1527), + [anon_sym_const] = ACTIONS(1527), + [anon_sym_default] = ACTIONS(1527), + [anon_sym_gen] = ACTIONS(1527), + [anon_sym_union] = ACTIONS(1527), + [anon_sym_ref] = ACTIONS(1527), + [sym_mutable_specifier] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1525), + [aux_sym_string_literal_token1] = ACTIONS(1525), + [sym_char_literal] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1527), + [anon_sym_false] = ACTIONS(1527), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1527), + [sym_super] = ACTIONS(1527), + [sym_crate] = ACTIONS(1527), + [sym_metavariable] = ACTIONS(1525), + [sym__raw_string_literal_start] = ACTIONS(1525), + [sym_float_literal] = ACTIONS(1525), + }, + [STATE(484)] = { + [sym_line_comment] = STATE(484), + [sym_block_comment] = STATE(484), + [sym_identifier] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1503), + [anon_sym_u8] = ACTIONS(1505), + [anon_sym_i8] = ACTIONS(1505), + [anon_sym_u16] = ACTIONS(1505), + [anon_sym_i16] = ACTIONS(1505), + [anon_sym_u32] = ACTIONS(1505), + [anon_sym_i32] = ACTIONS(1505), + [anon_sym_u64] = ACTIONS(1505), + [anon_sym_i64] = ACTIONS(1505), + [anon_sym_u128] = ACTIONS(1505), + [anon_sym_i128] = ACTIONS(1505), + [anon_sym_isize] = ACTIONS(1505), + [anon_sym_usize] = ACTIONS(1505), + [anon_sym_f32] = ACTIONS(1505), + [anon_sym_f64] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_str] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1503), + [anon_sym_DASH_EQ] = ACTIONS(1503), + [anon_sym_STAR_EQ] = ACTIONS(1503), + [anon_sym_SLASH_EQ] = ACTIONS(1503), + [anon_sym_PERCENT_EQ] = ACTIONS(1503), + [anon_sym_CARET_EQ] = ACTIONS(1503), + [anon_sym_AMP_EQ] = ACTIONS(1503), + [anon_sym_PIPE_EQ] = ACTIONS(1503), + [anon_sym_LT_LT_EQ] = ACTIONS(1503), + [anon_sym_GT_GT_EQ] = ACTIONS(1503), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ] = ACTIONS(1503), + [anon_sym_BANG_EQ] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_COLON_COLON] = ACTIONS(1503), + [anon_sym_POUND] = ACTIONS(1503), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_gen] = ACTIONS(1505), + [anon_sym_union] = ACTIONS(1505), + [anon_sym_ref] = ACTIONS(1505), + [sym_mutable_specifier] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [aux_sym_string_literal_token1] = ACTIONS(1503), + [sym_char_literal] = ACTIONS(1503), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1505), + [sym_super] = ACTIONS(1505), + [sym_crate] = ACTIONS(1505), + [sym_metavariable] = ACTIONS(1503), + [sym__raw_string_literal_start] = ACTIONS(1503), + [sym_float_literal] = ACTIONS(1503), + }, + [STATE(485)] = { + [sym_line_comment] = STATE(485), + [sym_block_comment] = STATE(485), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_QMARK] = ACTIONS(1491), + [anon_sym_u8] = ACTIONS(1493), + [anon_sym_i8] = ACTIONS(1493), + [anon_sym_u16] = ACTIONS(1493), + [anon_sym_i16] = ACTIONS(1493), + [anon_sym_u32] = ACTIONS(1493), + [anon_sym_i32] = ACTIONS(1493), + [anon_sym_u64] = ACTIONS(1493), + [anon_sym_i64] = ACTIONS(1493), + [anon_sym_u128] = ACTIONS(1493), + [anon_sym_i128] = ACTIONS(1493), + [anon_sym_isize] = ACTIONS(1493), + [anon_sym_usize] = ACTIONS(1493), + [anon_sym_f32] = ACTIONS(1493), + [anon_sym_f64] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_str] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_PIPE_PIPE] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_PLUS_EQ] = ACTIONS(1491), + [anon_sym_DASH_EQ] = ACTIONS(1491), + [anon_sym_STAR_EQ] = ACTIONS(1491), + [anon_sym_SLASH_EQ] = ACTIONS(1491), + [anon_sym_PERCENT_EQ] = ACTIONS(1491), + [anon_sym_CARET_EQ] = ACTIONS(1491), + [anon_sym_AMP_EQ] = ACTIONS(1491), + [anon_sym_PIPE_EQ] = ACTIONS(1491), + [anon_sym_LT_LT_EQ] = ACTIONS(1491), + [anon_sym_GT_GT_EQ] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1491), + [anon_sym_BANG_EQ] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_GT_EQ] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1491), + [anon_sym__] = ACTIONS(1493), + [anon_sym_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_COLON_COLON] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_gen] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_ref] = ACTIONS(1493), + [sym_mutable_specifier] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1491), + [aux_sym_string_literal_token1] = ACTIONS(1491), + [sym_char_literal] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1493), + [sym_super] = ACTIONS(1493), + [sym_crate] = ACTIONS(1493), + [sym_metavariable] = ACTIONS(1491), + [sym__raw_string_literal_start] = ACTIONS(1491), + [sym_float_literal] = ACTIONS(1491), + }, + [STATE(486)] = { + [sym_line_comment] = STATE(486), + [sym_block_comment] = STATE(486), [sym_identifier] = ACTIONS(1487), [anon_sym_LPAREN] = ACTIONS(1485), [anon_sym_LBRACK] = ACTIONS(1485), @@ -69729,175 +70820,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1485), [sym_float_literal] = ACTIONS(1485), }, - [STATE(476)] = { - [sym_line_comment] = STATE(476), - [sym_block_comment] = STATE(476), - [sym_identifier] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_u8] = ACTIONS(1479), - [anon_sym_i8] = ACTIONS(1479), - [anon_sym_u16] = ACTIONS(1479), - [anon_sym_i16] = ACTIONS(1479), - [anon_sym_u32] = ACTIONS(1479), - [anon_sym_i32] = ACTIONS(1479), - [anon_sym_u64] = ACTIONS(1479), - [anon_sym_i64] = ACTIONS(1479), - [anon_sym_u128] = ACTIONS(1479), - [anon_sym_i128] = ACTIONS(1479), - [anon_sym_isize] = ACTIONS(1479), - [anon_sym_usize] = ACTIONS(1479), - [anon_sym_f32] = ACTIONS(1479), - [anon_sym_f64] = ACTIONS(1479), - [anon_sym_bool] = ACTIONS(1479), - [anon_sym_str] = ACTIONS(1479), - [anon_sym_char] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1479), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_PIPE_PIPE] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [anon_sym_PLUS_EQ] = ACTIONS(1477), - [anon_sym_DASH_EQ] = ACTIONS(1477), - [anon_sym_STAR_EQ] = ACTIONS(1477), - [anon_sym_SLASH_EQ] = ACTIONS(1477), - [anon_sym_PERCENT_EQ] = ACTIONS(1477), - [anon_sym_CARET_EQ] = ACTIONS(1477), - [anon_sym_AMP_EQ] = ACTIONS(1477), - [anon_sym_PIPE_EQ] = ACTIONS(1477), - [anon_sym_LT_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_GT_EQ] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_LT] = ACTIONS(1479), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym__] = ACTIONS(1479), - [anon_sym_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_COLON_COLON] = ACTIONS(1477), - [anon_sym_POUND] = ACTIONS(1477), - [anon_sym_as] = ACTIONS(1479), - [anon_sym_const] = ACTIONS(1479), - [anon_sym_default] = ACTIONS(1479), - [anon_sym_gen] = ACTIONS(1479), - [anon_sym_union] = ACTIONS(1479), - [anon_sym_ref] = ACTIONS(1479), - [sym_mutable_specifier] = ACTIONS(1479), - [sym_integer_literal] = ACTIONS(1477), - [aux_sym_string_literal_token1] = ACTIONS(1477), - [sym_char_literal] = ACTIONS(1477), - [anon_sym_true] = ACTIONS(1479), - [anon_sym_false] = ACTIONS(1479), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1479), - [sym_super] = ACTIONS(1479), - [sym_crate] = ACTIONS(1479), - [sym_metavariable] = ACTIONS(1477), - [sym__raw_string_literal_start] = ACTIONS(1477), - [sym_float_literal] = ACTIONS(1477), - }, - [STATE(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), + [STATE(487)] = { + [sym_line_comment] = STATE(487), + [sym_block_comment] = STATE(487), [sym_identifier] = ACTIONS(1443), [anon_sym_LPAREN] = ACTIONS(1441), [anon_sym_LBRACK] = ACTIONS(1441), @@ -69978,1495 +70903,505 @@ 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(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(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(482)] = { - [sym_line_comment] = STATE(482), - [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1523), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_RBRACE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1523), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1521), - [anon_sym_u8] = ACTIONS(1523), - [anon_sym_i8] = ACTIONS(1523), - [anon_sym_u16] = ACTIONS(1523), - [anon_sym_i16] = ACTIONS(1523), - [anon_sym_u32] = ACTIONS(1523), - [anon_sym_i32] = ACTIONS(1523), - [anon_sym_u64] = ACTIONS(1523), - [anon_sym_i64] = ACTIONS(1523), - [anon_sym_u128] = ACTIONS(1523), - [anon_sym_i128] = ACTIONS(1523), - [anon_sym_isize] = ACTIONS(1523), - [anon_sym_usize] = ACTIONS(1523), - [anon_sym_f32] = ACTIONS(1523), - [anon_sym_f64] = ACTIONS(1523), - [anon_sym_bool] = ACTIONS(1523), - [anon_sym_str] = ACTIONS(1523), - [anon_sym_char] = ACTIONS(1523), - [anon_sym_DASH] = ACTIONS(1523), - [anon_sym_SLASH] = ACTIONS(1523), - [anon_sym_PERCENT] = ACTIONS(1523), - [anon_sym_CARET] = ACTIONS(1523), - [anon_sym_AMP] = ACTIONS(1523), - [anon_sym_PIPE] = ACTIONS(1523), - [anon_sym_AMP_AMP] = ACTIONS(1521), - [anon_sym_PIPE_PIPE] = ACTIONS(1521), - [anon_sym_LT_LT] = ACTIONS(1523), - [anon_sym_GT_GT] = ACTIONS(1523), - [anon_sym_PLUS_EQ] = ACTIONS(1521), - [anon_sym_DASH_EQ] = ACTIONS(1521), - [anon_sym_STAR_EQ] = ACTIONS(1521), - [anon_sym_SLASH_EQ] = ACTIONS(1521), - [anon_sym_PERCENT_EQ] = ACTIONS(1521), - [anon_sym_CARET_EQ] = ACTIONS(1521), - [anon_sym_AMP_EQ] = ACTIONS(1521), - [anon_sym_PIPE_EQ] = ACTIONS(1521), - [anon_sym_LT_LT_EQ] = ACTIONS(1521), - [anon_sym_GT_GT_EQ] = ACTIONS(1521), - [anon_sym_EQ] = ACTIONS(1523), - [anon_sym_EQ_EQ] = ACTIONS(1521), - [anon_sym_BANG_EQ] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1523), - [anon_sym_LT] = ACTIONS(1523), - [anon_sym_GT_EQ] = ACTIONS(1521), - [anon_sym_LT_EQ] = ACTIONS(1521), - [anon_sym__] = ACTIONS(1523), - [anon_sym_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(1521), - [anon_sym_as] = ACTIONS(1523), - [anon_sym_const] = ACTIONS(1523), - [anon_sym_default] = ACTIONS(1523), - [anon_sym_gen] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1523), - [anon_sym_ref] = ACTIONS(1523), - [sym_mutable_specifier] = ACTIONS(1523), - [sym_integer_literal] = ACTIONS(1521), - [aux_sym_string_literal_token1] = ACTIONS(1521), - [sym_char_literal] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(1523), - [anon_sym_false] = ACTIONS(1523), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1523), - [sym_super] = ACTIONS(1523), - [sym_crate] = ACTIONS(1523), - [sym_metavariable] = ACTIONS(1521), - [sym__raw_string_literal_start] = ACTIONS(1521), - [sym_float_literal] = ACTIONS(1521), - }, - [STATE(483)] = { - [sym_line_comment] = STATE(483), - [sym_block_comment] = STATE(483), - [sym_identifier] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1481), - [anon_sym_u8] = ACTIONS(1483), - [anon_sym_i8] = ACTIONS(1483), - [anon_sym_u16] = ACTIONS(1483), - [anon_sym_i16] = ACTIONS(1483), - [anon_sym_u32] = ACTIONS(1483), - [anon_sym_i32] = ACTIONS(1483), - [anon_sym_u64] = ACTIONS(1483), - [anon_sym_i64] = ACTIONS(1483), - [anon_sym_u128] = ACTIONS(1483), - [anon_sym_i128] = ACTIONS(1483), - [anon_sym_isize] = ACTIONS(1483), - [anon_sym_usize] = ACTIONS(1483), - [anon_sym_f32] = ACTIONS(1483), - [anon_sym_f64] = ACTIONS(1483), - [anon_sym_bool] = ACTIONS(1483), - [anon_sym_str] = ACTIONS(1483), - [anon_sym_char] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_CARET_EQ] = ACTIONS(1481), - [anon_sym_AMP_EQ] = ACTIONS(1481), - [anon_sym_PIPE_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_EQ] = ACTIONS(1481), - [anon_sym_GT_GT_EQ] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym__] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1481), - [anon_sym_COMMA] = ACTIONS(1481), - [anon_sym_COLON_COLON] = ACTIONS(1481), - [anon_sym_POUND] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1483), - [anon_sym_const] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_gen] = ACTIONS(1483), - [anon_sym_union] = ACTIONS(1483), - [anon_sym_ref] = ACTIONS(1483), - [sym_mutable_specifier] = ACTIONS(1483), - [sym_integer_literal] = ACTIONS(1481), - [aux_sym_string_literal_token1] = ACTIONS(1481), - [sym_char_literal] = ACTIONS(1481), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1483), - [sym_super] = ACTIONS(1483), - [sym_crate] = ACTIONS(1483), - [sym_metavariable] = ACTIONS(1481), - [sym__raw_string_literal_start] = ACTIONS(1481), - [sym_float_literal] = ACTIONS(1481), - }, - [STATE(484)] = { - [sym_line_comment] = STATE(484), - [sym_block_comment] = STATE(484), - [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), - [sym_block_comment] = STATE(485), - [sym_identifier] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_QMARK] = ACTIONS(1493), - [anon_sym_u8] = ACTIONS(1495), - [anon_sym_i8] = ACTIONS(1495), - [anon_sym_u16] = ACTIONS(1495), - [anon_sym_i16] = ACTIONS(1495), - [anon_sym_u32] = ACTIONS(1495), - [anon_sym_i32] = ACTIONS(1495), - [anon_sym_u64] = ACTIONS(1495), - [anon_sym_i64] = ACTIONS(1495), - [anon_sym_u128] = ACTIONS(1495), - [anon_sym_i128] = ACTIONS(1495), - [anon_sym_isize] = ACTIONS(1495), - [anon_sym_usize] = ACTIONS(1495), - [anon_sym_f32] = ACTIONS(1495), - [anon_sym_f64] = ACTIONS(1495), - [anon_sym_bool] = ACTIONS(1495), - [anon_sym_str] = ACTIONS(1495), - [anon_sym_char] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_PERCENT] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1495), - [anon_sym_GT_GT] = ACTIONS(1495), - [anon_sym_PLUS_EQ] = ACTIONS(1493), - [anon_sym_DASH_EQ] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1493), - [anon_sym_SLASH_EQ] = ACTIONS(1493), - [anon_sym_PERCENT_EQ] = ACTIONS(1493), - [anon_sym_CARET_EQ] = ACTIONS(1493), - [anon_sym_AMP_EQ] = ACTIONS(1493), - [anon_sym_PIPE_EQ] = ACTIONS(1493), - [anon_sym_LT_LT_EQ] = ACTIONS(1493), - [anon_sym_GT_GT_EQ] = ACTIONS(1493), - [anon_sym_EQ] = ACTIONS(1495), - [anon_sym_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym__] = ACTIONS(1495), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1493), - [anon_sym_COMMA] = ACTIONS(1493), - [anon_sym_COLON_COLON] = ACTIONS(1493), - [anon_sym_POUND] = ACTIONS(1493), - [anon_sym_as] = ACTIONS(1495), - [anon_sym_const] = ACTIONS(1495), - [anon_sym_default] = ACTIONS(1495), - [anon_sym_gen] = ACTIONS(1495), - [anon_sym_union] = ACTIONS(1495), - [anon_sym_ref] = ACTIONS(1495), - [sym_mutable_specifier] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1493), - [aux_sym_string_literal_token1] = ACTIONS(1493), - [sym_char_literal] = ACTIONS(1493), - [anon_sym_true] = ACTIONS(1495), - [anon_sym_false] = ACTIONS(1495), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1495), - [sym_super] = ACTIONS(1495), - [sym_crate] = ACTIONS(1495), - [sym_metavariable] = ACTIONS(1493), - [sym__raw_string_literal_start] = ACTIONS(1493), - [sym_float_literal] = ACTIONS(1493), - }, - [STATE(486)] = { - [sym_line_comment] = STATE(486), - [sym_block_comment] = STATE(486), - [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), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1497), - [anon_sym_u8] = ACTIONS(1499), - [anon_sym_i8] = ACTIONS(1499), - [anon_sym_u16] = ACTIONS(1499), - [anon_sym_i16] = ACTIONS(1499), - [anon_sym_u32] = ACTIONS(1499), - [anon_sym_i32] = ACTIONS(1499), - [anon_sym_u64] = ACTIONS(1499), - [anon_sym_i64] = ACTIONS(1499), - [anon_sym_u128] = ACTIONS(1499), - [anon_sym_i128] = ACTIONS(1499), - [anon_sym_isize] = ACTIONS(1499), - [anon_sym_usize] = ACTIONS(1499), - [anon_sym_f32] = ACTIONS(1499), - [anon_sym_f64] = ACTIONS(1499), - [anon_sym_bool] = ACTIONS(1499), - [anon_sym_str] = ACTIONS(1499), - [anon_sym_char] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1499), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_AMP_AMP] = ACTIONS(1497), - [anon_sym_PIPE_PIPE] = ACTIONS(1497), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_PLUS_EQ] = ACTIONS(1497), - [anon_sym_DASH_EQ] = ACTIONS(1497), - [anon_sym_STAR_EQ] = ACTIONS(1497), - [anon_sym_SLASH_EQ] = ACTIONS(1497), - [anon_sym_PERCENT_EQ] = ACTIONS(1497), - [anon_sym_CARET_EQ] = ACTIONS(1497), - [anon_sym_AMP_EQ] = ACTIONS(1497), - [anon_sym_PIPE_EQ] = ACTIONS(1497), - [anon_sym_LT_LT_EQ] = ACTIONS(1497), - [anon_sym_GT_GT_EQ] = ACTIONS(1497), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ] = ACTIONS(1497), - [anon_sym_GT] = ACTIONS(1499), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_GT_EQ] = ACTIONS(1497), - [anon_sym_LT_EQ] = ACTIONS(1497), - [anon_sym__] = ACTIONS(1499), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT] = ACTIONS(1499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1497), - [anon_sym_COMMA] = ACTIONS(1497), - [anon_sym_COLON_COLON] = ACTIONS(1497), - [anon_sym_POUND] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1499), - [anon_sym_const] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_gen] = ACTIONS(1499), - [anon_sym_union] = ACTIONS(1499), - [anon_sym_ref] = ACTIONS(1499), - [sym_mutable_specifier] = ACTIONS(1499), - [sym_integer_literal] = ACTIONS(1497), - [aux_sym_string_literal_token1] = ACTIONS(1497), - [sym_char_literal] = ACTIONS(1497), - [anon_sym_true] = ACTIONS(1499), - [anon_sym_false] = ACTIONS(1499), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1499), - [sym_super] = ACTIONS(1499), - [sym_crate] = ACTIONS(1499), - [sym_metavariable] = ACTIONS(1497), - [sym__raw_string_literal_start] = ACTIONS(1497), - [sym_float_literal] = ACTIONS(1497), + [sym_identifier] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_QMARK] = ACTIONS(1499), + [anon_sym_u8] = ACTIONS(1501), + [anon_sym_i8] = ACTIONS(1501), + [anon_sym_u16] = ACTIONS(1501), + [anon_sym_i16] = ACTIONS(1501), + [anon_sym_u32] = ACTIONS(1501), + [anon_sym_i32] = ACTIONS(1501), + [anon_sym_u64] = ACTIONS(1501), + [anon_sym_i64] = ACTIONS(1501), + [anon_sym_u128] = ACTIONS(1501), + [anon_sym_i128] = ACTIONS(1501), + [anon_sym_isize] = ACTIONS(1501), + [anon_sym_usize] = ACTIONS(1501), + [anon_sym_f32] = ACTIONS(1501), + [anon_sym_f64] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_str] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_SLASH] = ACTIONS(1501), + [anon_sym_PERCENT] = ACTIONS(1501), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_PIPE_PIPE] = ACTIONS(1499), + [anon_sym_LT_LT] = ACTIONS(1501), + [anon_sym_GT_GT] = ACTIONS(1501), + [anon_sym_PLUS_EQ] = ACTIONS(1499), + [anon_sym_DASH_EQ] = ACTIONS(1499), + [anon_sym_STAR_EQ] = ACTIONS(1499), + [anon_sym_SLASH_EQ] = ACTIONS(1499), + [anon_sym_PERCENT_EQ] = ACTIONS(1499), + [anon_sym_CARET_EQ] = ACTIONS(1499), + [anon_sym_AMP_EQ] = ACTIONS(1499), + [anon_sym_PIPE_EQ] = ACTIONS(1499), + [anon_sym_LT_LT_EQ] = ACTIONS(1499), + [anon_sym_GT_GT_EQ] = ACTIONS(1499), + [anon_sym_EQ] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1499), + [anon_sym_BANG_EQ] = ACTIONS(1499), + [anon_sym_GT] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_GT_EQ] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1499), + [anon_sym__] = ACTIONS(1501), + [anon_sym_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_COMMA] = ACTIONS(1499), + [anon_sym_COLON_COLON] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_gen] = ACTIONS(1501), + [anon_sym_union] = ACTIONS(1501), + [anon_sym_ref] = ACTIONS(1501), + [sym_mutable_specifier] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1499), + [aux_sym_string_literal_token1] = ACTIONS(1499), + [sym_char_literal] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1501), + [sym_super] = ACTIONS(1501), + [sym_crate] = ACTIONS(1501), + [sym_metavariable] = ACTIONS(1499), + [sym__raw_string_literal_start] = ACTIONS(1499), + [sym_float_literal] = ACTIONS(1499), }, [STATE(489)] = { [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [sym_identifier] = ACTIONS(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(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_QMARK] = ACTIONS(1473), + [anon_sym_u8] = ACTIONS(1475), + [anon_sym_i8] = ACTIONS(1475), + [anon_sym_u16] = ACTIONS(1475), + [anon_sym_i16] = ACTIONS(1475), + [anon_sym_u32] = ACTIONS(1475), + [anon_sym_i32] = ACTIONS(1475), + [anon_sym_u64] = ACTIONS(1475), + [anon_sym_i64] = ACTIONS(1475), + [anon_sym_u128] = ACTIONS(1475), + [anon_sym_i128] = ACTIONS(1475), + [anon_sym_isize] = ACTIONS(1475), + [anon_sym_usize] = ACTIONS(1475), + [anon_sym_f32] = ACTIONS(1475), + [anon_sym_f64] = ACTIONS(1475), + [anon_sym_bool] = ACTIONS(1475), + [anon_sym_str] = ACTIONS(1475), + [anon_sym_char] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_SLASH] = ACTIONS(1475), + [anon_sym_PERCENT] = ACTIONS(1475), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_AMP_AMP] = ACTIONS(1473), + [anon_sym_PIPE_PIPE] = ACTIONS(1473), + [anon_sym_LT_LT] = ACTIONS(1475), + [anon_sym_GT_GT] = ACTIONS(1475), + [anon_sym_PLUS_EQ] = ACTIONS(1473), + [anon_sym_DASH_EQ] = ACTIONS(1473), + [anon_sym_STAR_EQ] = ACTIONS(1473), + [anon_sym_SLASH_EQ] = ACTIONS(1473), + [anon_sym_PERCENT_EQ] = ACTIONS(1473), + [anon_sym_CARET_EQ] = ACTIONS(1473), + [anon_sym_AMP_EQ] = ACTIONS(1473), + [anon_sym_PIPE_EQ] = ACTIONS(1473), + [anon_sym_LT_LT_EQ] = ACTIONS(1473), + [anon_sym_GT_GT_EQ] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_EQ_EQ] = ACTIONS(1473), + [anon_sym_BANG_EQ] = ACTIONS(1473), + [anon_sym_GT] = ACTIONS(1475), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(1473), + [anon_sym_LT_EQ] = ACTIONS(1473), + [anon_sym__] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_default] = ACTIONS(1475), + [anon_sym_gen] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1475), + [anon_sym_ref] = ACTIONS(1475), + [sym_mutable_specifier] = ACTIONS(1475), + [sym_integer_literal] = ACTIONS(1473), + [aux_sym_string_literal_token1] = ACTIONS(1473), + [sym_char_literal] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1475), + [sym_super] = ACTIONS(1475), + [sym_crate] = ACTIONS(1475), + [sym_metavariable] = ACTIONS(1473), + [sym__raw_string_literal_start] = ACTIONS(1473), + [sym_float_literal] = ACTIONS(1473), }, [STATE(490)] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [sym_identifier] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_QMARK] = ACTIONS(1461), - [anon_sym_u8] = ACTIONS(1463), - [anon_sym_i8] = ACTIONS(1463), - [anon_sym_u16] = ACTIONS(1463), - [anon_sym_i16] = ACTIONS(1463), - [anon_sym_u32] = ACTIONS(1463), - [anon_sym_i32] = ACTIONS(1463), - [anon_sym_u64] = ACTIONS(1463), - [anon_sym_i64] = ACTIONS(1463), - [anon_sym_u128] = ACTIONS(1463), - [anon_sym_i128] = ACTIONS(1463), - [anon_sym_isize] = ACTIONS(1463), - [anon_sym_usize] = ACTIONS(1463), - [anon_sym_f32] = ACTIONS(1463), - [anon_sym_f64] = ACTIONS(1463), - [anon_sym_bool] = ACTIONS(1463), - [anon_sym_str] = ACTIONS(1463), - [anon_sym_char] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_SLASH] = ACTIONS(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(1461), - [anon_sym_PIPE_PIPE] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_PLUS_EQ] = ACTIONS(1461), - [anon_sym_DASH_EQ] = ACTIONS(1461), - [anon_sym_STAR_EQ] = ACTIONS(1461), - [anon_sym_SLASH_EQ] = ACTIONS(1461), - [anon_sym_PERCENT_EQ] = ACTIONS(1461), - [anon_sym_CARET_EQ] = ACTIONS(1461), - [anon_sym_AMP_EQ] = ACTIONS(1461), - [anon_sym_PIPE_EQ] = ACTIONS(1461), - [anon_sym_LT_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_GT_EQ] = ACTIONS(1461), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_EQ_EQ] = ACTIONS(1461), - [anon_sym_BANG_EQ] = ACTIONS(1461), - [anon_sym_GT] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1463), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym__] = ACTIONS(1463), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1461), - [anon_sym_COMMA] = ACTIONS(1461), - [anon_sym_COLON_COLON] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1463), - [anon_sym_const] = ACTIONS(1463), - [anon_sym_default] = ACTIONS(1463), - [anon_sym_gen] = ACTIONS(1463), - [anon_sym_union] = ACTIONS(1463), - [anon_sym_ref] = ACTIONS(1463), - [sym_mutable_specifier] = ACTIONS(1463), - [sym_integer_literal] = ACTIONS(1461), - [aux_sym_string_literal_token1] = ACTIONS(1461), - [sym_char_literal] = ACTIONS(1461), - [anon_sym_true] = ACTIONS(1463), - [anon_sym_false] = ACTIONS(1463), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1463), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1461), - [sym__raw_string_literal_start] = ACTIONS(1461), - [sym_float_literal] = ACTIONS(1461), + [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(491)] = { [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [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), + [sym_identifier] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_QMARK] = ACTIONS(1539), + [anon_sym_u8] = ACTIONS(1541), + [anon_sym_i8] = ACTIONS(1541), + [anon_sym_u16] = ACTIONS(1541), + [anon_sym_i16] = ACTIONS(1541), + [anon_sym_u32] = ACTIONS(1541), + [anon_sym_i32] = ACTIONS(1541), + [anon_sym_u64] = ACTIONS(1541), + [anon_sym_i64] = ACTIONS(1541), + [anon_sym_u128] = ACTIONS(1541), + [anon_sym_i128] = ACTIONS(1541), + [anon_sym_isize] = ACTIONS(1541), + [anon_sym_usize] = ACTIONS(1541), + [anon_sym_f32] = ACTIONS(1541), + [anon_sym_f64] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_str] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_SLASH] = ACTIONS(1541), + [anon_sym_PERCENT] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_PIPE_PIPE] = ACTIONS(1539), + [anon_sym_LT_LT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1539), + [anon_sym_DASH_EQ] = ACTIONS(1539), + [anon_sym_STAR_EQ] = ACTIONS(1539), + [anon_sym_SLASH_EQ] = ACTIONS(1539), + [anon_sym_PERCENT_EQ] = ACTIONS(1539), + [anon_sym_CARET_EQ] = ACTIONS(1539), + [anon_sym_AMP_EQ] = ACTIONS(1539), + [anon_sym_PIPE_EQ] = ACTIONS(1539), + [anon_sym_LT_LT_EQ] = ACTIONS(1539), + [anon_sym_GT_GT_EQ] = ACTIONS(1539), + [anon_sym_EQ] = ACTIONS(1541), + [anon_sym_EQ_EQ] = ACTIONS(1539), + [anon_sym_BANG_EQ] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1539), + [anon_sym__] = ACTIONS(1541), + [anon_sym_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), + [anon_sym_COMMA] = ACTIONS(1539), + [anon_sym_COLON_COLON] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(1539), + [anon_sym_as] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_gen] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1541), + [anon_sym_ref] = ACTIONS(1541), + [sym_mutable_specifier] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1539), + [aux_sym_string_literal_token1] = ACTIONS(1539), + [sym_char_literal] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1541), + [sym_super] = ACTIONS(1541), + [sym_crate] = ACTIONS(1541), + [sym_metavariable] = ACTIONS(1539), + [sym__raw_string_literal_start] = ACTIONS(1539), + [sym_float_literal] = ACTIONS(1539), }, [STATE(492)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3103), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2620), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym_closure_expression] = STATE(3136), + [sym_closure_parameters] = STATE(245), + [sym__pattern] = STATE(2844), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(1780), - [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_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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1407), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_move] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(493)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3069), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2770), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym_closure_expression] = STATE(3020), + [sym_closure_parameters] = STATE(245), + [sym__pattern] = STATE(2624), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(1800), - [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_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(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(494)] = { - [sym_line_comment] = STATE(494), - [sym_block_comment] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_macro_rules_BANG] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_u8] = ACTIONS(1804), - [anon_sym_i8] = ACTIONS(1804), - [anon_sym_u16] = ACTIONS(1804), - [anon_sym_i16] = ACTIONS(1804), - [anon_sym_u32] = ACTIONS(1804), - [anon_sym_i32] = ACTIONS(1804), - [anon_sym_u64] = ACTIONS(1804), - [anon_sym_i64] = ACTIONS(1804), - [anon_sym_u128] = ACTIONS(1804), - [anon_sym_i128] = ACTIONS(1804), - [anon_sym_isize] = ACTIONS(1804), - [anon_sym_usize] = ACTIONS(1804), - [anon_sym_f32] = ACTIONS(1804), - [anon_sym_f64] = ACTIONS(1804), - [anon_sym_bool] = ACTIONS(1804), - [anon_sym_str] = ACTIONS(1804), - [anon_sym_char] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1802), - [anon_sym_PIPE] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1802), - [anon_sym_COLON_COLON] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_SQUOTE] = ACTIONS(1804), - [anon_sym_async] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_const] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1812), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), [anon_sym_default] = ACTIONS(1804), - [anon_sym_enum] = ACTIONS(1804), - [anon_sym_fn] = ACTIONS(1804), - [anon_sym_for] = ACTIONS(1804), [anon_sym_gen] = ACTIONS(1804), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_impl] = ACTIONS(1804), - [anon_sym_let] = ACTIONS(1804), - [anon_sym_loop] = ACTIONS(1804), - [anon_sym_match] = ACTIONS(1804), - [anon_sym_mod] = ACTIONS(1804), - [anon_sym_pub] = ACTIONS(1804), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_struct] = ACTIONS(1804), - [anon_sym_trait] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1804), + [anon_sym_static] = ACTIONS(1409), [anon_sym_union] = ACTIONS(1804), - [anon_sym_unsafe] = ACTIONS(1804), - [anon_sym_use] = ACTIONS(1804), - [anon_sym_while] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_yield] = ACTIONS(1804), - [anon_sym_move] = ACTIONS(1804), - [anon_sym_try] = ACTIONS(1804), - [sym_integer_literal] = ACTIONS(1802), - [aux_sym_string_literal_token1] = ACTIONS(1802), - [sym_char_literal] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1804), - [sym_super] = ACTIONS(1804), - [sym_crate] = ACTIONS(1804), - [sym_metavariable] = ACTIONS(1802), - [sym__raw_string_literal_start] = ACTIONS(1802), - [sym_float_literal] = ACTIONS(1802), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_move] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, - [STATE(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), - [anon_sym_macro_rules_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_RBRACE] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_u8] = ACTIONS(1808), - [anon_sym_i8] = ACTIONS(1808), - [anon_sym_u16] = ACTIONS(1808), - [anon_sym_i16] = ACTIONS(1808), - [anon_sym_u32] = ACTIONS(1808), - [anon_sym_i32] = ACTIONS(1808), - [anon_sym_u64] = ACTIONS(1808), - [anon_sym_i64] = ACTIONS(1808), - [anon_sym_u128] = ACTIONS(1808), - [anon_sym_i128] = ACTIONS(1808), - [anon_sym_isize] = ACTIONS(1808), - [anon_sym_usize] = ACTIONS(1808), - [anon_sym_f32] = ACTIONS(1808), - [anon_sym_f64] = ACTIONS(1808), - [anon_sym_bool] = ACTIONS(1808), - [anon_sym_str] = ACTIONS(1808), - [anon_sym_char] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1806), - [anon_sym_PIPE] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_DOT_DOT] = ACTIONS(1806), - [anon_sym_COLON_COLON] = ACTIONS(1806), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_SQUOTE] = ACTIONS(1808), - [anon_sym_async] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_const] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1808), - [anon_sym_enum] = ACTIONS(1808), - [anon_sym_fn] = ACTIONS(1808), - [anon_sym_for] = ACTIONS(1808), - [anon_sym_gen] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_impl] = ACTIONS(1808), - [anon_sym_let] = ACTIONS(1808), - [anon_sym_loop] = ACTIONS(1808), - [anon_sym_match] = ACTIONS(1808), - [anon_sym_mod] = ACTIONS(1808), - [anon_sym_pub] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_struct] = ACTIONS(1808), - [anon_sym_trait] = ACTIONS(1808), - [anon_sym_type] = ACTIONS(1808), - [anon_sym_union] = ACTIONS(1808), - [anon_sym_unsafe] = ACTIONS(1808), - [anon_sym_use] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_yield] = ACTIONS(1808), - [anon_sym_move] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [sym_integer_literal] = ACTIONS(1806), - [aux_sym_string_literal_token1] = ACTIONS(1806), - [sym_char_literal] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1808), - [sym_super] = ACTIONS(1808), - [sym_crate] = ACTIONS(1808), - [sym_metavariable] = ACTIONS(1806), - [sym__raw_string_literal_start] = ACTIONS(1806), - [sym_float_literal] = ACTIONS(1806), - }, - [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), - [anon_sym_macro_rules_BANG] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_u8] = ACTIONS(1812), - [anon_sym_i8] = ACTIONS(1812), - [anon_sym_u16] = ACTIONS(1812), - [anon_sym_i16] = ACTIONS(1812), - [anon_sym_u32] = ACTIONS(1812), - [anon_sym_i32] = ACTIONS(1812), - [anon_sym_u64] = ACTIONS(1812), - [anon_sym_i64] = ACTIONS(1812), - [anon_sym_u128] = ACTIONS(1812), - [anon_sym_i128] = ACTIONS(1812), - [anon_sym_isize] = ACTIONS(1812), - [anon_sym_usize] = ACTIONS(1812), - [anon_sym_f32] = ACTIONS(1812), - [anon_sym_f64] = ACTIONS(1812), - [anon_sym_bool] = ACTIONS(1812), - [anon_sym_str] = ACTIONS(1812), - [anon_sym_char] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1810), - [anon_sym_PIPE] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1810), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_SQUOTE] = ACTIONS(1812), - [anon_sym_async] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_enum] = ACTIONS(1812), - [anon_sym_fn] = ACTIONS(1812), - [anon_sym_for] = ACTIONS(1812), - [anon_sym_gen] = ACTIONS(1812), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_impl] = ACTIONS(1812), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_loop] = ACTIONS(1812), - [anon_sym_match] = ACTIONS(1812), - [anon_sym_mod] = ACTIONS(1812), - [anon_sym_pub] = ACTIONS(1812), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_struct] = ACTIONS(1812), - [anon_sym_trait] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1812), - [anon_sym_union] = ACTIONS(1812), - [anon_sym_unsafe] = ACTIONS(1812), - [anon_sym_use] = ACTIONS(1812), - [anon_sym_while] = ACTIONS(1812), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_yield] = ACTIONS(1812), - [anon_sym_move] = ACTIONS(1812), - [anon_sym_try] = ACTIONS(1812), - [sym_integer_literal] = ACTIONS(1810), - [aux_sym_string_literal_token1] = ACTIONS(1810), - [sym_char_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1812), - [sym_super] = ACTIONS(1812), - [sym_crate] = ACTIONS(1812), - [sym_metavariable] = ACTIONS(1810), - [sym__raw_string_literal_start] = ACTIONS(1810), - [sym_float_literal] = ACTIONS(1810), - }, - [STATE(497)] = { - [sym_line_comment] = STATE(497), - [sym_block_comment] = STATE(497), + [STATE(494)] = { + [sym_line_comment] = STATE(494), + [sym_block_comment] = STATE(494), [ts_builtin_sym_end] = ACTIONS(1814), [sym_identifier] = ACTIONS(1816), [anon_sym_SEMI] = ACTIONS(1814), @@ -71545,9 +71480,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(498)] = { - [sym_line_comment] = STATE(498), - [sym_block_comment] = STATE(498), + [STATE(495)] = { + [sym_line_comment] = STATE(495), + [sym_block_comment] = STATE(495), [ts_builtin_sym_end] = ACTIONS(1818), [sym_identifier] = ACTIONS(1820), [anon_sym_SEMI] = ACTIONS(1818), @@ -71626,9 +71561,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(499)] = { - [sym_line_comment] = STATE(499), - [sym_block_comment] = STATE(499), + [STATE(496)] = { + [sym_line_comment] = STATE(496), + [sym_block_comment] = STATE(496), [ts_builtin_sym_end] = ACTIONS(1822), [sym_identifier] = ACTIONS(1824), [anon_sym_SEMI] = ACTIONS(1822), @@ -71707,9 +71642,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(500)] = { - [sym_line_comment] = STATE(500), - [sym_block_comment] = STATE(500), + [STATE(497)] = { + [sym_line_comment] = STATE(497), + [sym_block_comment] = STATE(497), [ts_builtin_sym_end] = ACTIONS(1826), [sym_identifier] = ACTIONS(1828), [anon_sym_SEMI] = ACTIONS(1826), @@ -71788,9 +71723,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(501)] = { - [sym_line_comment] = STATE(501), - [sym_block_comment] = STATE(501), + [STATE(498)] = { + [sym_line_comment] = STATE(498), + [sym_block_comment] = STATE(498), [ts_builtin_sym_end] = ACTIONS(1830), [sym_identifier] = ACTIONS(1832), [anon_sym_SEMI] = ACTIONS(1830), @@ -71869,9 +71804,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(502)] = { - [sym_line_comment] = STATE(502), - [sym_block_comment] = STATE(502), + [STATE(499)] = { + [sym_line_comment] = STATE(499), + [sym_block_comment] = STATE(499), [ts_builtin_sym_end] = ACTIONS(1834), [sym_identifier] = ACTIONS(1836), [anon_sym_SEMI] = ACTIONS(1834), @@ -71950,9 +71885,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(503)] = { - [sym_line_comment] = STATE(503), - [sym_block_comment] = STATE(503), + [STATE(500)] = { + [sym_line_comment] = STATE(500), + [sym_block_comment] = STATE(500), [ts_builtin_sym_end] = ACTIONS(1838), [sym_identifier] = ACTIONS(1840), [anon_sym_SEMI] = ACTIONS(1838), @@ -72031,9 +71966,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(504)] = { - [sym_line_comment] = STATE(504), - [sym_block_comment] = STATE(504), + [STATE(501)] = { + [sym_line_comment] = STATE(501), + [sym_block_comment] = STATE(501), [ts_builtin_sym_end] = ACTIONS(1842), [sym_identifier] = ACTIONS(1844), [anon_sym_SEMI] = ACTIONS(1842), @@ -72112,9 +72047,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(505)] = { - [sym_line_comment] = STATE(505), - [sym_block_comment] = STATE(505), + [STATE(502)] = { + [sym_line_comment] = STATE(502), + [sym_block_comment] = STATE(502), [ts_builtin_sym_end] = ACTIONS(1846), [sym_identifier] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(1846), @@ -72193,9 +72128,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(506)] = { - [sym_line_comment] = STATE(506), - [sym_block_comment] = STATE(506), + [STATE(503)] = { + [sym_line_comment] = STATE(503), + [sym_block_comment] = STATE(503), [ts_builtin_sym_end] = ACTIONS(1850), [sym_identifier] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(1850), @@ -72274,9 +72209,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(507)] = { - [sym_line_comment] = STATE(507), - [sym_block_comment] = STATE(507), + [STATE(504)] = { + [sym_line_comment] = STATE(504), + [sym_block_comment] = STATE(504), [ts_builtin_sym_end] = ACTIONS(1854), [sym_identifier] = ACTIONS(1856), [anon_sym_SEMI] = ACTIONS(1854), @@ -72355,9 +72290,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(508)] = { - [sym_line_comment] = STATE(508), - [sym_block_comment] = STATE(508), + [STATE(505)] = { + [sym_line_comment] = STATE(505), + [sym_block_comment] = STATE(505), [ts_builtin_sym_end] = ACTIONS(1858), [sym_identifier] = ACTIONS(1860), [anon_sym_SEMI] = ACTIONS(1858), @@ -72436,9 +72371,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(509)] = { - [sym_line_comment] = STATE(509), - [sym_block_comment] = STATE(509), + [STATE(506)] = { + [sym_line_comment] = STATE(506), + [sym_block_comment] = STATE(506), [ts_builtin_sym_end] = ACTIONS(1862), [sym_identifier] = ACTIONS(1864), [anon_sym_SEMI] = ACTIONS(1862), @@ -72517,9 +72452,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(510)] = { - [sym_line_comment] = STATE(510), - [sym_block_comment] = STATE(510), + [STATE(507)] = { + [sym_line_comment] = STATE(507), + [sym_block_comment] = STATE(507), [ts_builtin_sym_end] = ACTIONS(1866), [sym_identifier] = ACTIONS(1868), [anon_sym_SEMI] = ACTIONS(1866), @@ -72598,9 +72533,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(511)] = { - [sym_line_comment] = STATE(511), - [sym_block_comment] = STATE(511), + [STATE(508)] = { + [sym_line_comment] = STATE(508), + [sym_block_comment] = STATE(508), [ts_builtin_sym_end] = ACTIONS(1870), [sym_identifier] = ACTIONS(1872), [anon_sym_SEMI] = ACTIONS(1870), @@ -72679,9 +72614,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(512)] = { - [sym_line_comment] = STATE(512), - [sym_block_comment] = STATE(512), + [STATE(509)] = { + [sym_line_comment] = STATE(509), + [sym_block_comment] = STATE(509), [ts_builtin_sym_end] = ACTIONS(1874), [sym_identifier] = ACTIONS(1876), [anon_sym_SEMI] = ACTIONS(1874), @@ -72760,9 +72695,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(513)] = { - [sym_line_comment] = STATE(513), - [sym_block_comment] = STATE(513), + [STATE(510)] = { + [sym_line_comment] = STATE(510), + [sym_block_comment] = STATE(510), [ts_builtin_sym_end] = ACTIONS(1878), [sym_identifier] = ACTIONS(1880), [anon_sym_SEMI] = ACTIONS(1878), @@ -72841,9 +72776,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(514)] = { - [sym_line_comment] = STATE(514), - [sym_block_comment] = STATE(514), + [STATE(511)] = { + [sym_line_comment] = STATE(511), + [sym_block_comment] = STATE(511), [ts_builtin_sym_end] = ACTIONS(1882), [sym_identifier] = ACTIONS(1884), [anon_sym_SEMI] = ACTIONS(1882), @@ -72922,9 +72857,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(515)] = { - [sym_line_comment] = STATE(515), - [sym_block_comment] = STATE(515), + [STATE(512)] = { + [sym_line_comment] = STATE(512), + [sym_block_comment] = STATE(512), [ts_builtin_sym_end] = ACTIONS(1886), [sym_identifier] = ACTIONS(1888), [anon_sym_SEMI] = ACTIONS(1886), @@ -73003,9 +72938,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(516)] = { - [sym_line_comment] = STATE(516), - [sym_block_comment] = STATE(516), + [STATE(513)] = { + [sym_line_comment] = STATE(513), + [sym_block_comment] = STATE(513), [ts_builtin_sym_end] = ACTIONS(1890), [sym_identifier] = ACTIONS(1892), [anon_sym_SEMI] = ACTIONS(1890), @@ -73084,9 +73019,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(517)] = { - [sym_line_comment] = STATE(517), - [sym_block_comment] = STATE(517), + [STATE(514)] = { + [sym_line_comment] = STATE(514), + [sym_block_comment] = STATE(514), [ts_builtin_sym_end] = ACTIONS(1894), [sym_identifier] = ACTIONS(1896), [anon_sym_SEMI] = ACTIONS(1894), @@ -73165,9 +73100,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(518)] = { - [sym_line_comment] = STATE(518), - [sym_block_comment] = STATE(518), + [STATE(515)] = { + [sym_line_comment] = STATE(515), + [sym_block_comment] = STATE(515), [ts_builtin_sym_end] = ACTIONS(1898), [sym_identifier] = ACTIONS(1900), [anon_sym_SEMI] = ACTIONS(1898), @@ -73246,9 +73181,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(519)] = { - [sym_line_comment] = STATE(519), - [sym_block_comment] = STATE(519), + [STATE(516)] = { + [sym_line_comment] = STATE(516), + [sym_block_comment] = STATE(516), [ts_builtin_sym_end] = ACTIONS(1902), [sym_identifier] = ACTIONS(1904), [anon_sym_SEMI] = ACTIONS(1902), @@ -73327,9 +73262,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(520)] = { - [sym_line_comment] = STATE(520), - [sym_block_comment] = STATE(520), + [STATE(517)] = { + [sym_line_comment] = STATE(517), + [sym_block_comment] = STATE(517), [ts_builtin_sym_end] = ACTIONS(1906), [sym_identifier] = ACTIONS(1908), [anon_sym_SEMI] = ACTIONS(1906), @@ -73408,9 +73343,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(521)] = { - [sym_line_comment] = STATE(521), - [sym_block_comment] = STATE(521), + [STATE(518)] = { + [sym_line_comment] = STATE(518), + [sym_block_comment] = STATE(518), [ts_builtin_sym_end] = ACTIONS(1910), [sym_identifier] = ACTIONS(1912), [anon_sym_SEMI] = ACTIONS(1910), @@ -73489,9 +73424,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(522)] = { - [sym_line_comment] = STATE(522), - [sym_block_comment] = STATE(522), + [STATE(519)] = { + [sym_line_comment] = STATE(519), + [sym_block_comment] = STATE(519), [ts_builtin_sym_end] = ACTIONS(1914), [sym_identifier] = ACTIONS(1916), [anon_sym_SEMI] = ACTIONS(1914), @@ -73570,9 +73505,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(523)] = { - [sym_line_comment] = STATE(523), - [sym_block_comment] = STATE(523), + [STATE(520)] = { + [sym_line_comment] = STATE(520), + [sym_block_comment] = STATE(520), [ts_builtin_sym_end] = ACTIONS(1918), [sym_identifier] = ACTIONS(1920), [anon_sym_SEMI] = ACTIONS(1918), @@ -73651,9 +73586,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(524)] = { - [sym_line_comment] = STATE(524), - [sym_block_comment] = STATE(524), + [STATE(521)] = { + [sym_line_comment] = STATE(521), + [sym_block_comment] = STATE(521), [ts_builtin_sym_end] = ACTIONS(1922), [sym_identifier] = ACTIONS(1924), [anon_sym_SEMI] = ACTIONS(1922), @@ -73732,9 +73667,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(525)] = { - [sym_line_comment] = STATE(525), - [sym_block_comment] = STATE(525), + [STATE(522)] = { + [sym_line_comment] = STATE(522), + [sym_block_comment] = STATE(522), [ts_builtin_sym_end] = ACTIONS(1926), [sym_identifier] = ACTIONS(1928), [anon_sym_SEMI] = ACTIONS(1926), @@ -73813,9 +73748,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(526)] = { - [sym_line_comment] = STATE(526), - [sym_block_comment] = STATE(526), + [STATE(523)] = { + [sym_line_comment] = STATE(523), + [sym_block_comment] = STATE(523), [ts_builtin_sym_end] = ACTIONS(1930), [sym_identifier] = ACTIONS(1932), [anon_sym_SEMI] = ACTIONS(1930), @@ -73894,9 +73829,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(527)] = { - [sym_line_comment] = STATE(527), - [sym_block_comment] = STATE(527), + [STATE(524)] = { + [sym_line_comment] = STATE(524), + [sym_block_comment] = STATE(524), [ts_builtin_sym_end] = ACTIONS(1934), [sym_identifier] = ACTIONS(1936), [anon_sym_SEMI] = ACTIONS(1934), @@ -73975,9 +73910,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(528)] = { - [sym_line_comment] = STATE(528), - [sym_block_comment] = STATE(528), + [STATE(525)] = { + [sym_line_comment] = STATE(525), + [sym_block_comment] = STATE(525), [ts_builtin_sym_end] = ACTIONS(1938), [sym_identifier] = ACTIONS(1940), [anon_sym_SEMI] = ACTIONS(1938), @@ -74056,9 +73991,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(529)] = { - [sym_line_comment] = STATE(529), - [sym_block_comment] = STATE(529), + [STATE(526)] = { + [sym_line_comment] = STATE(526), + [sym_block_comment] = STATE(526), [ts_builtin_sym_end] = ACTIONS(1942), [sym_identifier] = ACTIONS(1944), [anon_sym_SEMI] = ACTIONS(1942), @@ -74137,9 +74072,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(530)] = { - [sym_line_comment] = STATE(530), - [sym_block_comment] = STATE(530), + [STATE(527)] = { + [sym_line_comment] = STATE(527), + [sym_block_comment] = STATE(527), [ts_builtin_sym_end] = ACTIONS(1946), [sym_identifier] = ACTIONS(1948), [anon_sym_SEMI] = ACTIONS(1946), @@ -74218,9 +74153,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(531)] = { - [sym_line_comment] = STATE(531), - [sym_block_comment] = STATE(531), + [STATE(528)] = { + [sym_line_comment] = STATE(528), + [sym_block_comment] = STATE(528), [ts_builtin_sym_end] = ACTIONS(1950), [sym_identifier] = ACTIONS(1952), [anon_sym_SEMI] = ACTIONS(1950), @@ -74299,9 +74234,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(532)] = { - [sym_line_comment] = STATE(532), - [sym_block_comment] = STATE(532), + [STATE(529)] = { + [sym_line_comment] = STATE(529), + [sym_block_comment] = STATE(529), [ts_builtin_sym_end] = ACTIONS(1954), [sym_identifier] = ACTIONS(1956), [anon_sym_SEMI] = ACTIONS(1954), @@ -74380,9 +74315,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(533)] = { - [sym_line_comment] = STATE(533), - [sym_block_comment] = STATE(533), + [STATE(530)] = { + [sym_line_comment] = STATE(530), + [sym_block_comment] = STATE(530), [ts_builtin_sym_end] = ACTIONS(1958), [sym_identifier] = ACTIONS(1960), [anon_sym_SEMI] = ACTIONS(1958), @@ -74461,9 +74396,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(534)] = { - [sym_line_comment] = STATE(534), - [sym_block_comment] = STATE(534), + [STATE(531)] = { + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), [ts_builtin_sym_end] = ACTIONS(1962), [sym_identifier] = ACTIONS(1964), [anon_sym_SEMI] = ACTIONS(1962), @@ -74542,9 +74477,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(535)] = { - [sym_line_comment] = STATE(535), - [sym_block_comment] = STATE(535), + [STATE(532)] = { + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), [ts_builtin_sym_end] = ACTIONS(1966), [sym_identifier] = ACTIONS(1968), [anon_sym_SEMI] = ACTIONS(1966), @@ -74623,9 +74558,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(536)] = { - [sym_line_comment] = STATE(536), - [sym_block_comment] = STATE(536), + [STATE(533)] = { + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), [ts_builtin_sym_end] = ACTIONS(1970), [sym_identifier] = ACTIONS(1972), [anon_sym_SEMI] = ACTIONS(1970), @@ -74704,9 +74639,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(537)] = { - [sym_line_comment] = STATE(537), - [sym_block_comment] = STATE(537), + [STATE(534)] = { + [sym_line_comment] = STATE(534), + [sym_block_comment] = STATE(534), [ts_builtin_sym_end] = ACTIONS(1974), [sym_identifier] = ACTIONS(1976), [anon_sym_SEMI] = ACTIONS(1974), @@ -74785,9 +74720,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(538)] = { - [sym_line_comment] = STATE(538), - [sym_block_comment] = STATE(538), + [STATE(535)] = { + [sym_line_comment] = STATE(535), + [sym_block_comment] = STATE(535), [ts_builtin_sym_end] = ACTIONS(1978), [sym_identifier] = ACTIONS(1980), [anon_sym_SEMI] = ACTIONS(1978), @@ -74866,9 +74801,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(539)] = { - [sym_line_comment] = STATE(539), - [sym_block_comment] = STATE(539), + [STATE(536)] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), [ts_builtin_sym_end] = ACTIONS(1982), [sym_identifier] = ACTIONS(1984), [anon_sym_SEMI] = ACTIONS(1982), @@ -74947,9 +74882,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(540)] = { - [sym_line_comment] = STATE(540), - [sym_block_comment] = STATE(540), + [STATE(537)] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), [ts_builtin_sym_end] = ACTIONS(1986), [sym_identifier] = ACTIONS(1988), [anon_sym_SEMI] = ACTIONS(1986), @@ -75028,9 +74963,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(541)] = { - [sym_line_comment] = STATE(541), - [sym_block_comment] = STATE(541), + [STATE(538)] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), [ts_builtin_sym_end] = ACTIONS(1990), [sym_identifier] = ACTIONS(1992), [anon_sym_SEMI] = ACTIONS(1990), @@ -75109,9 +75044,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(542)] = { - [sym_line_comment] = STATE(542), - [sym_block_comment] = STATE(542), + [STATE(539)] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), [ts_builtin_sym_end] = ACTIONS(1994), [sym_identifier] = ACTIONS(1996), [anon_sym_SEMI] = ACTIONS(1994), @@ -75190,9 +75125,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(543)] = { - [sym_line_comment] = STATE(543), - [sym_block_comment] = STATE(543), + [STATE(540)] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), [ts_builtin_sym_end] = ACTIONS(1998), [sym_identifier] = ACTIONS(2000), [anon_sym_SEMI] = ACTIONS(1998), @@ -75271,9 +75206,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(544)] = { - [sym_line_comment] = STATE(544), - [sym_block_comment] = STATE(544), + [STATE(541)] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), [ts_builtin_sym_end] = ACTIONS(2002), [sym_identifier] = ACTIONS(2004), [anon_sym_SEMI] = ACTIONS(2002), @@ -75352,9 +75287,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(545)] = { - [sym_line_comment] = STATE(545), - [sym_block_comment] = STATE(545), + [STATE(542)] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), [ts_builtin_sym_end] = ACTIONS(2006), [sym_identifier] = ACTIONS(2008), [anon_sym_SEMI] = ACTIONS(2006), @@ -75433,9 +75368,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(546)] = { - [sym_line_comment] = STATE(546), - [sym_block_comment] = STATE(546), + [STATE(543)] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), [ts_builtin_sym_end] = ACTIONS(2010), [sym_identifier] = ACTIONS(2012), [anon_sym_SEMI] = ACTIONS(2010), @@ -75514,9 +75449,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(547)] = { - [sym_line_comment] = STATE(547), - [sym_block_comment] = STATE(547), + [STATE(544)] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), [ts_builtin_sym_end] = ACTIONS(2014), [sym_identifier] = ACTIONS(2016), [anon_sym_SEMI] = ACTIONS(2014), @@ -75595,9 +75530,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(548)] = { - [sym_line_comment] = STATE(548), - [sym_block_comment] = STATE(548), + [STATE(545)] = { + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), [ts_builtin_sym_end] = ACTIONS(2018), [sym_identifier] = ACTIONS(2020), [anon_sym_SEMI] = ACTIONS(2018), @@ -75676,9 +75611,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(549)] = { - [sym_line_comment] = STATE(549), - [sym_block_comment] = STATE(549), + [STATE(546)] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), [ts_builtin_sym_end] = ACTIONS(2022), [sym_identifier] = ACTIONS(2024), [anon_sym_SEMI] = ACTIONS(2022), @@ -75757,9 +75692,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(550)] = { - [sym_line_comment] = STATE(550), - [sym_block_comment] = STATE(550), + [STATE(547)] = { + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), [ts_builtin_sym_end] = ACTIONS(2026), [sym_identifier] = ACTIONS(2028), [anon_sym_SEMI] = ACTIONS(2026), @@ -75838,9 +75773,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(551)] = { - [sym_line_comment] = STATE(551), - [sym_block_comment] = STATE(551), + [STATE(548)] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), [ts_builtin_sym_end] = ACTIONS(2030), [sym_identifier] = ACTIONS(2032), [anon_sym_SEMI] = ACTIONS(2030), @@ -75919,9 +75854,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(552)] = { - [sym_line_comment] = STATE(552), - [sym_block_comment] = STATE(552), + [STATE(549)] = { + [sym_line_comment] = STATE(549), + [sym_block_comment] = STATE(549), [ts_builtin_sym_end] = ACTIONS(2034), [sym_identifier] = ACTIONS(2036), [anon_sym_SEMI] = ACTIONS(2034), @@ -76000,9 +75935,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2034), [sym_float_literal] = ACTIONS(2034), }, - [STATE(553)] = { - [sym_line_comment] = STATE(553), - [sym_block_comment] = STATE(553), + [STATE(550)] = { + [sym_line_comment] = STATE(550), + [sym_block_comment] = STATE(550), [ts_builtin_sym_end] = ACTIONS(2038), [sym_identifier] = ACTIONS(2040), [anon_sym_SEMI] = ACTIONS(2038), @@ -76081,9 +76016,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2038), [sym_float_literal] = ACTIONS(2038), }, - [STATE(554)] = { - [sym_line_comment] = STATE(554), - [sym_block_comment] = STATE(554), + [STATE(551)] = { + [sym_line_comment] = STATE(551), + [sym_block_comment] = STATE(551), [ts_builtin_sym_end] = ACTIONS(2042), [sym_identifier] = ACTIONS(2044), [anon_sym_SEMI] = ACTIONS(2042), @@ -76162,9 +76097,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2042), [sym_float_literal] = ACTIONS(2042), }, - [STATE(555)] = { - [sym_line_comment] = STATE(555), - [sym_block_comment] = STATE(555), + [STATE(552)] = { + [sym_line_comment] = STATE(552), + [sym_block_comment] = STATE(552), [ts_builtin_sym_end] = ACTIONS(2046), [sym_identifier] = ACTIONS(2048), [anon_sym_SEMI] = ACTIONS(2046), @@ -76243,9 +76178,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2046), [sym_float_literal] = ACTIONS(2046), }, - [STATE(556)] = { - [sym_line_comment] = STATE(556), - [sym_block_comment] = STATE(556), + [STATE(553)] = { + [sym_line_comment] = STATE(553), + [sym_block_comment] = STATE(553), [ts_builtin_sym_end] = ACTIONS(2050), [sym_identifier] = ACTIONS(2052), [anon_sym_SEMI] = ACTIONS(2050), @@ -76324,9 +76259,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2050), [sym_float_literal] = ACTIONS(2050), }, - [STATE(557)] = { - [sym_line_comment] = STATE(557), - [sym_block_comment] = STATE(557), + [STATE(554)] = { + [sym_line_comment] = STATE(554), + [sym_block_comment] = STATE(554), [ts_builtin_sym_end] = ACTIONS(2054), [sym_identifier] = ACTIONS(2056), [anon_sym_SEMI] = ACTIONS(2054), @@ -76405,9 +76340,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2054), [sym_float_literal] = ACTIONS(2054), }, - [STATE(558)] = { - [sym_line_comment] = STATE(558), - [sym_block_comment] = STATE(558), + [STATE(555)] = { + [sym_line_comment] = STATE(555), + [sym_block_comment] = STATE(555), [ts_builtin_sym_end] = ACTIONS(2058), [sym_identifier] = ACTIONS(2060), [anon_sym_SEMI] = ACTIONS(2058), @@ -76486,9 +76421,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2058), [sym_float_literal] = ACTIONS(2058), }, - [STATE(559)] = { - [sym_line_comment] = STATE(559), - [sym_block_comment] = STATE(559), + [STATE(556)] = { + [sym_line_comment] = STATE(556), + [sym_block_comment] = STATE(556), [ts_builtin_sym_end] = ACTIONS(2062), [sym_identifier] = ACTIONS(2064), [anon_sym_SEMI] = ACTIONS(2062), @@ -76567,9 +76502,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2062), [sym_float_literal] = ACTIONS(2062), }, - [STATE(560)] = { - [sym_line_comment] = STATE(560), - [sym_block_comment] = STATE(560), + [STATE(557)] = { + [sym_line_comment] = STATE(557), + [sym_block_comment] = STATE(557), [ts_builtin_sym_end] = ACTIONS(2066), [sym_identifier] = ACTIONS(2068), [anon_sym_SEMI] = ACTIONS(2066), @@ -76648,9 +76583,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2066), [sym_float_literal] = ACTIONS(2066), }, - [STATE(561)] = { - [sym_line_comment] = STATE(561), - [sym_block_comment] = STATE(561), + [STATE(558)] = { + [sym_line_comment] = STATE(558), + [sym_block_comment] = STATE(558), [ts_builtin_sym_end] = ACTIONS(2070), [sym_identifier] = ACTIONS(2072), [anon_sym_SEMI] = ACTIONS(2070), @@ -76729,9 +76664,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2070), [sym_float_literal] = ACTIONS(2070), }, - [STATE(562)] = { - [sym_line_comment] = STATE(562), - [sym_block_comment] = STATE(562), + [STATE(559)] = { + [sym_line_comment] = STATE(559), + [sym_block_comment] = STATE(559), [ts_builtin_sym_end] = ACTIONS(2074), [sym_identifier] = ACTIONS(2076), [anon_sym_SEMI] = ACTIONS(2074), @@ -76810,9 +76745,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2074), [sym_float_literal] = ACTIONS(2074), }, - [STATE(563)] = { - [sym_line_comment] = STATE(563), - [sym_block_comment] = STATE(563), + [STATE(560)] = { + [sym_line_comment] = STATE(560), + [sym_block_comment] = STATE(560), [ts_builtin_sym_end] = ACTIONS(2078), [sym_identifier] = ACTIONS(2080), [anon_sym_SEMI] = ACTIONS(2078), @@ -76891,9 +76826,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2078), [sym_float_literal] = ACTIONS(2078), }, - [STATE(564)] = { - [sym_line_comment] = STATE(564), - [sym_block_comment] = STATE(564), + [STATE(561)] = { + [sym_line_comment] = STATE(561), + [sym_block_comment] = STATE(561), [ts_builtin_sym_end] = ACTIONS(2082), [sym_identifier] = ACTIONS(2084), [anon_sym_SEMI] = ACTIONS(2082), @@ -76972,9 +76907,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2082), [sym_float_literal] = ACTIONS(2082), }, - [STATE(565)] = { - [sym_line_comment] = STATE(565), - [sym_block_comment] = STATE(565), + [STATE(562)] = { + [sym_line_comment] = STATE(562), + [sym_block_comment] = STATE(562), [ts_builtin_sym_end] = ACTIONS(2086), [sym_identifier] = ACTIONS(2088), [anon_sym_SEMI] = ACTIONS(2086), @@ -77053,9 +76988,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2086), [sym_float_literal] = ACTIONS(2086), }, - [STATE(566)] = { - [sym_line_comment] = STATE(566), - [sym_block_comment] = STATE(566), + [STATE(563)] = { + [sym_line_comment] = STATE(563), + [sym_block_comment] = STATE(563), [ts_builtin_sym_end] = ACTIONS(2090), [sym_identifier] = ACTIONS(2092), [anon_sym_SEMI] = ACTIONS(2090), @@ -77134,9 +77069,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2090), [sym_float_literal] = ACTIONS(2090), }, - [STATE(567)] = { - [sym_line_comment] = STATE(567), - [sym_block_comment] = STATE(567), + [STATE(564)] = { + [sym_line_comment] = STATE(564), + [sym_block_comment] = STATE(564), [ts_builtin_sym_end] = ACTIONS(2094), [sym_identifier] = ACTIONS(2096), [anon_sym_SEMI] = ACTIONS(2094), @@ -77215,9 +77150,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2094), [sym_float_literal] = ACTIONS(2094), }, - [STATE(568)] = { - [sym_line_comment] = STATE(568), - [sym_block_comment] = STATE(568), + [STATE(565)] = { + [sym_line_comment] = STATE(565), + [sym_block_comment] = STATE(565), [ts_builtin_sym_end] = ACTIONS(2098), [sym_identifier] = ACTIONS(2100), [anon_sym_SEMI] = ACTIONS(2098), @@ -77296,9 +77231,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2098), [sym_float_literal] = ACTIONS(2098), }, - [STATE(569)] = { - [sym_line_comment] = STATE(569), - [sym_block_comment] = STATE(569), + [STATE(566)] = { + [sym_line_comment] = STATE(566), + [sym_block_comment] = STATE(566), [ts_builtin_sym_end] = ACTIONS(2102), [sym_identifier] = ACTIONS(2104), [anon_sym_SEMI] = ACTIONS(2102), @@ -77377,9 +77312,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2102), [sym_float_literal] = ACTIONS(2102), }, - [STATE(570)] = { - [sym_line_comment] = STATE(570), - [sym_block_comment] = STATE(570), + [STATE(567)] = { + [sym_line_comment] = STATE(567), + [sym_block_comment] = STATE(567), [ts_builtin_sym_end] = ACTIONS(2106), [sym_identifier] = ACTIONS(2108), [anon_sym_SEMI] = ACTIONS(2106), @@ -77458,9 +77393,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2106), [sym_float_literal] = ACTIONS(2106), }, - [STATE(571)] = { - [sym_line_comment] = STATE(571), - [sym_block_comment] = STATE(571), + [STATE(568)] = { + [sym_line_comment] = STATE(568), + [sym_block_comment] = STATE(568), [ts_builtin_sym_end] = ACTIONS(2110), [sym_identifier] = ACTIONS(2112), [anon_sym_SEMI] = ACTIONS(2110), @@ -77539,9 +77474,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2110), [sym_float_literal] = ACTIONS(2110), }, - [STATE(572)] = { - [sym_line_comment] = STATE(572), - [sym_block_comment] = STATE(572), + [STATE(569)] = { + [sym_line_comment] = STATE(569), + [sym_block_comment] = STATE(569), [ts_builtin_sym_end] = ACTIONS(2114), [sym_identifier] = ACTIONS(2116), [anon_sym_SEMI] = ACTIONS(2114), @@ -77620,9 +77555,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2114), [sym_float_literal] = ACTIONS(2114), }, - [STATE(573)] = { - [sym_line_comment] = STATE(573), - [sym_block_comment] = STATE(573), + [STATE(570)] = { + [sym_line_comment] = STATE(570), + [sym_block_comment] = STATE(570), [ts_builtin_sym_end] = ACTIONS(2118), [sym_identifier] = ACTIONS(2120), [anon_sym_SEMI] = ACTIONS(2118), @@ -77701,9 +77636,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2118), [sym_float_literal] = ACTIONS(2118), }, - [STATE(574)] = { - [sym_line_comment] = STATE(574), - [sym_block_comment] = STATE(574), + [STATE(571)] = { + [sym_line_comment] = STATE(571), + [sym_block_comment] = STATE(571), [ts_builtin_sym_end] = ACTIONS(2122), [sym_identifier] = ACTIONS(2124), [anon_sym_SEMI] = ACTIONS(2122), @@ -77782,9 +77717,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2122), [sym_float_literal] = ACTIONS(2122), }, - [STATE(575)] = { - [sym_line_comment] = STATE(575), - [sym_block_comment] = STATE(575), + [STATE(572)] = { + [sym_line_comment] = STATE(572), + [sym_block_comment] = STATE(572), [ts_builtin_sym_end] = ACTIONS(2126), [sym_identifier] = ACTIONS(2128), [anon_sym_SEMI] = ACTIONS(2126), @@ -77863,9 +77798,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(576)] = { - [sym_line_comment] = STATE(576), - [sym_block_comment] = STATE(576), + [STATE(573)] = { + [sym_line_comment] = STATE(573), + [sym_block_comment] = STATE(573), [ts_builtin_sym_end] = ACTIONS(2130), [sym_identifier] = ACTIONS(2132), [anon_sym_SEMI] = ACTIONS(2130), @@ -77944,9 +77879,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(577)] = { - [sym_line_comment] = STATE(577), - [sym_block_comment] = STATE(577), + [STATE(574)] = { + [sym_line_comment] = STATE(574), + [sym_block_comment] = STATE(574), [ts_builtin_sym_end] = ACTIONS(2134), [sym_identifier] = ACTIONS(2136), [anon_sym_SEMI] = ACTIONS(2134), @@ -78025,9 +77960,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(578)] = { - [sym_line_comment] = STATE(578), - [sym_block_comment] = STATE(578), + [STATE(575)] = { + [sym_line_comment] = STATE(575), + [sym_block_comment] = STATE(575), [ts_builtin_sym_end] = ACTIONS(2138), [sym_identifier] = ACTIONS(2140), [anon_sym_SEMI] = ACTIONS(2138), @@ -78106,9 +78041,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(579)] = { - [sym_line_comment] = STATE(579), - [sym_block_comment] = STATE(579), + [STATE(576)] = { + [sym_line_comment] = STATE(576), + [sym_block_comment] = STATE(576), [ts_builtin_sym_end] = ACTIONS(2142), [sym_identifier] = ACTIONS(2144), [anon_sym_SEMI] = ACTIONS(2142), @@ -78187,9 +78122,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(580)] = { - [sym_line_comment] = STATE(580), - [sym_block_comment] = STATE(580), + [STATE(577)] = { + [sym_line_comment] = STATE(577), + [sym_block_comment] = STATE(577), [ts_builtin_sym_end] = ACTIONS(2146), [sym_identifier] = ACTIONS(2148), [anon_sym_SEMI] = ACTIONS(2146), @@ -78268,9 +78203,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(581)] = { - [sym_line_comment] = STATE(581), - [sym_block_comment] = STATE(581), + [STATE(578)] = { + [sym_line_comment] = STATE(578), + [sym_block_comment] = STATE(578), [ts_builtin_sym_end] = ACTIONS(2150), [sym_identifier] = ACTIONS(2152), [anon_sym_SEMI] = ACTIONS(2150), @@ -78349,9 +78284,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(582)] = { - [sym_line_comment] = STATE(582), - [sym_block_comment] = STATE(582), + [STATE(579)] = { + [sym_line_comment] = STATE(579), + [sym_block_comment] = STATE(579), [ts_builtin_sym_end] = ACTIONS(2154), [sym_identifier] = ACTIONS(2156), [anon_sym_SEMI] = ACTIONS(2154), @@ -78430,9 +78365,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(583)] = { - [sym_line_comment] = STATE(583), - [sym_block_comment] = STATE(583), + [STATE(580)] = { + [sym_line_comment] = STATE(580), + [sym_block_comment] = STATE(580), [ts_builtin_sym_end] = ACTIONS(2158), [sym_identifier] = ACTIONS(2160), [anon_sym_SEMI] = ACTIONS(2158), @@ -78511,9 +78446,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(584)] = { - [sym_line_comment] = STATE(584), - [sym_block_comment] = STATE(584), + [STATE(581)] = { + [sym_line_comment] = STATE(581), + [sym_block_comment] = STATE(581), [ts_builtin_sym_end] = ACTIONS(2162), [sym_identifier] = ACTIONS(2164), [anon_sym_SEMI] = ACTIONS(2162), @@ -78592,9 +78527,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(585)] = { - [sym_line_comment] = STATE(585), - [sym_block_comment] = STATE(585), + [STATE(582)] = { + [sym_line_comment] = STATE(582), + [sym_block_comment] = STATE(582), [ts_builtin_sym_end] = ACTIONS(2166), [sym_identifier] = ACTIONS(2168), [anon_sym_SEMI] = ACTIONS(2166), @@ -78673,9 +78608,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2166), [sym_float_literal] = ACTIONS(2166), }, - [STATE(586)] = { - [sym_line_comment] = STATE(586), - [sym_block_comment] = STATE(586), + [STATE(583)] = { + [sym_line_comment] = STATE(583), + [sym_block_comment] = STATE(583), [ts_builtin_sym_end] = ACTIONS(2170), [sym_identifier] = ACTIONS(2172), [anon_sym_SEMI] = ACTIONS(2170), @@ -78754,1062 +78689,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2170), [sym_float_literal] = ACTIONS(2170), }, - [STATE(587)] = { - [sym_line_comment] = STATE(587), - [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2174), - [anon_sym_macro_rules_BANG] = ACTIONS(2174), - [anon_sym_LPAREN] = ACTIONS(2174), - [anon_sym_LBRACK] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2174), - [anon_sym_RBRACE] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2174), - [anon_sym_u8] = ACTIONS(2176), - [anon_sym_i8] = ACTIONS(2176), - [anon_sym_u16] = ACTIONS(2176), - [anon_sym_i16] = ACTIONS(2176), - [anon_sym_u32] = ACTIONS(2176), - [anon_sym_i32] = ACTIONS(2176), - [anon_sym_u64] = ACTIONS(2176), - [anon_sym_i64] = ACTIONS(2176), - [anon_sym_u128] = ACTIONS(2176), - [anon_sym_i128] = ACTIONS(2176), - [anon_sym_isize] = ACTIONS(2176), - [anon_sym_usize] = ACTIONS(2176), - [anon_sym_f32] = ACTIONS(2176), - [anon_sym_f64] = ACTIONS(2176), - [anon_sym_bool] = ACTIONS(2176), - [anon_sym_str] = ACTIONS(2176), - [anon_sym_char] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_BANG] = ACTIONS(2174), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_PIPE] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2174), - [anon_sym_DOT_DOT] = ACTIONS(2174), - [anon_sym_COLON_COLON] = ACTIONS(2174), - [anon_sym_POUND] = ACTIONS(2174), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [anon_sym_fn] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_gen] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_impl] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_loop] = ACTIONS(2176), - [anon_sym_match] = ACTIONS(2176), - [anon_sym_mod] = ACTIONS(2176), - [anon_sym_pub] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_struct] = ACTIONS(2176), - [anon_sym_trait] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_union] = ACTIONS(2176), - [anon_sym_unsafe] = ACTIONS(2176), - [anon_sym_use] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_extern] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_move] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [sym_integer_literal] = ACTIONS(2174), - [aux_sym_string_literal_token1] = ACTIONS(2174), - [sym_char_literal] = ACTIONS(2174), - [anon_sym_true] = ACTIONS(2176), - [anon_sym_false] = ACTIONS(2176), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_crate] = ACTIONS(2176), - [sym_metavariable] = ACTIONS(2174), - [sym__raw_string_literal_start] = ACTIONS(2174), - [sym_float_literal] = ACTIONS(2174), - }, - [STATE(588)] = { - [sym_line_comment] = STATE(588), - [sym_block_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(2178), - [sym_identifier] = ACTIONS(2180), - [anon_sym_SEMI] = ACTIONS(2178), + [STATE(584)] = { + [sym_empty_statement] = STATE(1106), + [sym_macro_definition] = STATE(1106), + [sym_attribute_item] = STATE(1106), + [sym_inner_attribute_item] = STATE(1106), + [sym_mod_item] = STATE(1106), + [sym_foreign_mod_item] = STATE(1106), + [sym_struct_item] = STATE(1106), + [sym_union_item] = STATE(1106), + [sym_enum_item] = STATE(1106), + [sym_extern_crate_declaration] = STATE(1106), + [sym_const_item] = STATE(1106), + [sym_static_item] = STATE(1106), + [sym_type_item] = STATE(1106), + [sym_function_item] = STATE(1106), + [sym_function_signature_item] = STATE(1106), + [sym_function_modifiers] = STATE(3743), + [sym_impl_item] = STATE(1106), + [sym_trait_item] = STATE(1106), + [sym_associated_type] = STATE(1106), + [sym_let_declaration] = STATE(1106), + [sym_use_declaration] = STATE(1106), + [sym_extern_modifier] = STATE(2246), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type_with_turbofish] = STATE(3765), + [sym_macro_invocation] = STATE(1106), + [sym_scoped_identifier] = STATE(3406), + [sym_line_comment] = STATE(584), + [sym_block_comment] = STATE(584), + [aux_sym_declaration_list_repeat1] = STATE(664), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2176), [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_SQUOTE] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_enum] = ACTIONS(2184), - [anon_sym_fn] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_gen] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_impl] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_loop] = ACTIONS(2184), - [anon_sym_match] = ACTIONS(2184), - [anon_sym_mod] = ACTIONS(2184), - [anon_sym_pub] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_struct] = ACTIONS(2184), - [anon_sym_trait] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2184), - [anon_sym_union] = ACTIONS(2184), - [anon_sym_unsafe] = ACTIONS(2184), - [anon_sym_use] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_extern] = ACTIONS(2184), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_move] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [sym_integer_literal] = ACTIONS(2182), - [aux_sym_string_literal_token1] = ACTIONS(2182), - [sym_char_literal] = ACTIONS(2182), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_crate] = ACTIONS(2184), - [sym_metavariable] = ACTIONS(2182), - [sym__raw_string_literal_start] = ACTIONS(2182), - [sym_float_literal] = ACTIONS(2182), - }, - [STATE(590)] = { - [sym_line_comment] = STATE(590), - [sym_block_comment] = STATE(590), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2188), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_macro_rules_BANG] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_u8] = ACTIONS(2188), - [anon_sym_i8] = ACTIONS(2188), - [anon_sym_u16] = ACTIONS(2188), - [anon_sym_i16] = ACTIONS(2188), - [anon_sym_u32] = ACTIONS(2188), - [anon_sym_i32] = ACTIONS(2188), - [anon_sym_u64] = ACTIONS(2188), - [anon_sym_i64] = ACTIONS(2188), - [anon_sym_u128] = ACTIONS(2188), - [anon_sym_i128] = ACTIONS(2188), - [anon_sym_isize] = ACTIONS(2188), - [anon_sym_usize] = ACTIONS(2188), - [anon_sym_f32] = ACTIONS(2188), - [anon_sym_f64] = ACTIONS(2188), - [anon_sym_bool] = ACTIONS(2188), - [anon_sym_str] = ACTIONS(2188), - [anon_sym_char] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_BANG] = ACTIONS(2186), - [anon_sym_AMP] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2186), - [anon_sym_DOT_DOT] = ACTIONS(2186), - [anon_sym_COLON_COLON] = ACTIONS(2186), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_u8] = ACTIONS(2182), + [anon_sym_i8] = ACTIONS(2182), + [anon_sym_u16] = ACTIONS(2182), + [anon_sym_i16] = ACTIONS(2182), + [anon_sym_u32] = ACTIONS(2182), + [anon_sym_i32] = ACTIONS(2182), + [anon_sym_u64] = ACTIONS(2182), + [anon_sym_i64] = ACTIONS(2182), + [anon_sym_u128] = ACTIONS(2182), + [anon_sym_i128] = ACTIONS(2182), + [anon_sym_isize] = ACTIONS(2182), + [anon_sym_usize] = ACTIONS(2182), + [anon_sym_f32] = ACTIONS(2182), + [anon_sym_f64] = ACTIONS(2182), + [anon_sym_bool] = ACTIONS(2182), + [anon_sym_str] = ACTIONS(2182), + [anon_sym_char] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2184), [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_SQUOTE] = ACTIONS(2188), - [anon_sym_async] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(1233), [anon_sym_const] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2188), - [anon_sym_enum] = ACTIONS(2188), - [anon_sym_fn] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_gen] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_impl] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_loop] = ACTIONS(2188), - [anon_sym_match] = ACTIONS(2188), - [anon_sym_mod] = ACTIONS(2188), - [anon_sym_pub] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_static] = ACTIONS(2188), - [anon_sym_struct] = ACTIONS(2188), - [anon_sym_trait] = ACTIONS(2188), - [anon_sym_type] = ACTIONS(2188), - [anon_sym_union] = ACTIONS(2188), - [anon_sym_unsafe] = ACTIONS(2188), - [anon_sym_use] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_extern] = ACTIONS(2188), - [anon_sym_yield] = ACTIONS(2188), - [anon_sym_move] = ACTIONS(2188), - [anon_sym_try] = ACTIONS(2188), - [sym_integer_literal] = ACTIONS(2186), - [aux_sym_string_literal_token1] = ACTIONS(2186), - [sym_char_literal] = ACTIONS(2186), - [anon_sym_true] = ACTIONS(2188), - [anon_sym_false] = ACTIONS(2188), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2188), - [sym_super] = ACTIONS(2188), - [sym_crate] = ACTIONS(2188), - [sym_metavariable] = ACTIONS(2186), - [sym__raw_string_literal_start] = ACTIONS(2186), - [sym_float_literal] = ACTIONS(2186), - }, - [STATE(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_default] = ACTIONS(2190), [anon_sym_enum] = ACTIONS(2192), - [anon_sym_fn] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_gen] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_impl] = ACTIONS(2192), - [anon_sym_let] = ACTIONS(2192), - [anon_sym_loop] = ACTIONS(2192), - [anon_sym_match] = ACTIONS(2192), - [anon_sym_mod] = ACTIONS(2192), - [anon_sym_pub] = ACTIONS(2192), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_struct] = ACTIONS(2192), - [anon_sym_trait] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_union] = ACTIONS(2192), - [anon_sym_unsafe] = ACTIONS(2192), - [anon_sym_use] = ACTIONS(2192), - [anon_sym_while] = ACTIONS(2192), - [anon_sym_extern] = ACTIONS(2192), - [anon_sym_yield] = ACTIONS(2192), - [anon_sym_move] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2192), - [sym_integer_literal] = ACTIONS(2190), - [aux_sym_string_literal_token1] = ACTIONS(2190), - [sym_char_literal] = ACTIONS(2190), - [anon_sym_true] = ACTIONS(2192), - [anon_sym_false] = ACTIONS(2192), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2192), - [sym_super] = ACTIONS(2192), - [sym_crate] = ACTIONS(2192), - [sym_metavariable] = ACTIONS(2190), - [sym__raw_string_literal_start] = ACTIONS(2190), - [sym_float_literal] = ACTIONS(2190), - }, - [STATE(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_fn] = ACTIONS(2194), [anon_sym_gen] = ACTIONS(2196), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_impl] = ACTIONS(2196), - [anon_sym_let] = ACTIONS(2196), - [anon_sym_loop] = ACTIONS(2196), - [anon_sym_match] = ACTIONS(2196), - [anon_sym_mod] = ACTIONS(2196), - [anon_sym_pub] = ACTIONS(2196), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_struct] = ACTIONS(2196), - [anon_sym_trait] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_union] = ACTIONS(2196), - [anon_sym_unsafe] = ACTIONS(2196), - [anon_sym_use] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_yield] = ACTIONS(2196), - [anon_sym_move] = ACTIONS(2196), - [anon_sym_try] = ACTIONS(2196), - [sym_integer_literal] = ACTIONS(2194), - [aux_sym_string_literal_token1] = ACTIONS(2194), - [sym_char_literal] = ACTIONS(2194), - [anon_sym_true] = ACTIONS(2196), - [anon_sym_false] = ACTIONS(2196), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2196), - [sym_super] = ACTIONS(2196), - [sym_crate] = ACTIONS(2196), - [sym_metavariable] = ACTIONS(2194), - [sym__raw_string_literal_start] = ACTIONS(2194), - [sym_float_literal] = ACTIONS(2194), - }, - [STATE(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_impl] = ACTIONS(2198), [anon_sym_let] = ACTIONS(2200), - [anon_sym_loop] = ACTIONS(2200), - [anon_sym_match] = ACTIONS(2200), - [anon_sym_mod] = ACTIONS(2200), - [anon_sym_pub] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_struct] = ACTIONS(2200), - [anon_sym_trait] = ACTIONS(2200), - [anon_sym_type] = ACTIONS(2200), - [anon_sym_union] = ACTIONS(2200), - [anon_sym_unsafe] = ACTIONS(2200), - [anon_sym_use] = ACTIONS(2200), - [anon_sym_while] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_yield] = ACTIONS(2200), - [anon_sym_move] = ACTIONS(2200), - [anon_sym_try] = ACTIONS(2200), - [sym_integer_literal] = ACTIONS(2198), - [aux_sym_string_literal_token1] = ACTIONS(2198), - [sym_char_literal] = ACTIONS(2198), - [anon_sym_true] = ACTIONS(2200), - [anon_sym_false] = ACTIONS(2200), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2200), - [sym_super] = ACTIONS(2200), - [sym_crate] = ACTIONS(2200), - [sym_metavariable] = ACTIONS(2198), - [sym__raw_string_literal_start] = ACTIONS(2198), - [sym_float_literal] = ACTIONS(2198), - }, - [STATE(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_mod] = ACTIONS(2202), + [anon_sym_pub] = ACTIONS(69), [anon_sym_static] = ACTIONS(2204), - [anon_sym_struct] = ACTIONS(2204), - [anon_sym_trait] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_union] = ACTIONS(2204), - [anon_sym_unsafe] = ACTIONS(2204), - [anon_sym_use] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_extern] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_move] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [sym_integer_literal] = ACTIONS(2202), - [aux_sym_string_literal_token1] = ACTIONS(2202), - [sym_char_literal] = ACTIONS(2202), - [anon_sym_true] = ACTIONS(2204), - [anon_sym_false] = ACTIONS(2204), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_crate] = ACTIONS(2204), - [sym_metavariable] = ACTIONS(2202), - [sym__raw_string_literal_start] = ACTIONS(2202), - [sym_float_literal] = ACTIONS(2202), - }, - [STATE(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_struct] = ACTIONS(2206), [anon_sym_trait] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_union] = ACTIONS(2208), - [anon_sym_unsafe] = ACTIONS(2208), - [anon_sym_use] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_extern] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_move] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [sym_integer_literal] = ACTIONS(2206), - [aux_sym_string_literal_token1] = ACTIONS(2206), - [sym_char_literal] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_crate] = ACTIONS(2208), - [sym_metavariable] = ACTIONS(2206), - [sym__raw_string_literal_start] = ACTIONS(2206), - [sym_float_literal] = ACTIONS(2206), - }, - [STATE(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_type] = ACTIONS(2210), [anon_sym_union] = ACTIONS(2212), - [anon_sym_unsafe] = ACTIONS(2212), - [anon_sym_use] = ACTIONS(2212), - [anon_sym_while] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2212), - [anon_sym_yield] = ACTIONS(2212), - [anon_sym_move] = ACTIONS(2212), - [anon_sym_try] = ACTIONS(2212), - [sym_integer_literal] = ACTIONS(2210), - [aux_sym_string_literal_token1] = ACTIONS(2210), - [sym_char_literal] = ACTIONS(2210), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2212), - [sym_super] = ACTIONS(2212), - [sym_crate] = ACTIONS(2212), - [sym_metavariable] = ACTIONS(2210), - [sym__raw_string_literal_start] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2210), - }, - [STATE(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_unsafe] = ACTIONS(2214), [anon_sym_use] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_move] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [sym_integer_literal] = ACTIONS(2214), - [aux_sym_string_literal_token1] = ACTIONS(2214), - [sym_char_literal] = ACTIONS(2214), - [anon_sym_true] = ACTIONS(2216), - [anon_sym_false] = ACTIONS(2216), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_crate] = ACTIONS(2216), - [sym_metavariable] = ACTIONS(2214), - [sym__raw_string_literal_start] = ACTIONS(2214), - [sym_float_literal] = ACTIONS(2214), - }, - [STATE(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_extern] = ACTIONS(2218), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2220), [sym_super] = ACTIONS(2220), - [sym_crate] = ACTIONS(2220), - [sym_metavariable] = ACTIONS(2218), - [sym__raw_string_literal_start] = ACTIONS(2218), - [sym_float_literal] = ACTIONS(2218), + [sym_crate] = ACTIONS(2222), + [sym_metavariable] = ACTIONS(2224), }, - [STATE(599)] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2224), - [anon_sym_SEMI] = ACTIONS(2222), - [anon_sym_macro_rules_BANG] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_u8] = ACTIONS(2224), - [anon_sym_i8] = ACTIONS(2224), - [anon_sym_u16] = ACTIONS(2224), - [anon_sym_i16] = ACTIONS(2224), - [anon_sym_u32] = ACTIONS(2224), - [anon_sym_i32] = ACTIONS(2224), - [anon_sym_u64] = ACTIONS(2224), - [anon_sym_i64] = ACTIONS(2224), - [anon_sym_u128] = ACTIONS(2224), - [anon_sym_i128] = ACTIONS(2224), - [anon_sym_isize] = ACTIONS(2224), - [anon_sym_usize] = ACTIONS(2224), - [anon_sym_f32] = ACTIONS(2224), - [anon_sym_f64] = ACTIONS(2224), - [anon_sym_bool] = ACTIONS(2224), - [anon_sym_str] = ACTIONS(2224), - [anon_sym_char] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2222), - [anon_sym_PIPE] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2222), - [anon_sym_DOT_DOT] = ACTIONS(2222), - [anon_sym_COLON_COLON] = ACTIONS(2222), - [anon_sym_POUND] = ACTIONS(2222), - [anon_sym_SQUOTE] = ACTIONS(2224), - [anon_sym_async] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_const] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_default] = ACTIONS(2224), - [anon_sym_enum] = ACTIONS(2224), - [anon_sym_fn] = ACTIONS(2224), - [anon_sym_for] = ACTIONS(2224), - [anon_sym_gen] = ACTIONS(2224), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_impl] = ACTIONS(2224), - [anon_sym_let] = ACTIONS(2224), - [anon_sym_loop] = ACTIONS(2224), - [anon_sym_match] = ACTIONS(2224), - [anon_sym_mod] = ACTIONS(2224), - [anon_sym_pub] = ACTIONS(2224), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_struct] = ACTIONS(2224), - [anon_sym_trait] = ACTIONS(2224), - [anon_sym_type] = ACTIONS(2224), - [anon_sym_union] = ACTIONS(2224), - [anon_sym_unsafe] = ACTIONS(2224), - [anon_sym_use] = ACTIONS(2224), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym_yield] = ACTIONS(2224), - [anon_sym_move] = ACTIONS(2224), - [anon_sym_try] = ACTIONS(2224), - [sym_integer_literal] = ACTIONS(2222), - [aux_sym_string_literal_token1] = ACTIONS(2222), - [sym_char_literal] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2224), - [anon_sym_false] = ACTIONS(2224), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2224), - [sym_super] = ACTIONS(2224), - [sym_crate] = ACTIONS(2224), - [sym_metavariable] = ACTIONS(2222), - [sym__raw_string_literal_start] = ACTIONS(2222), - [sym_float_literal] = ACTIONS(2222), - }, - [STATE(600)] = { - [sym_line_comment] = STATE(600), - [sym_block_comment] = STATE(600), + [STATE(585)] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), [ts_builtin_sym_end] = ACTIONS(2226), [sym_identifier] = ACTIONS(2228), [anon_sym_SEMI] = ACTIONS(2226), @@ -79888,9 +78851,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(601)] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), + [STATE(586)] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), [ts_builtin_sym_end] = ACTIONS(2230), [sym_identifier] = ACTIONS(2232), [anon_sym_SEMI] = ACTIONS(2230), @@ -79969,9 +78932,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(602)] = { - [sym_line_comment] = STATE(602), - [sym_block_comment] = STATE(602), + [STATE(587)] = { + [sym_line_comment] = STATE(587), + [sym_block_comment] = STATE(587), [ts_builtin_sym_end] = ACTIONS(2234), [sym_identifier] = ACTIONS(2236), [anon_sym_SEMI] = ACTIONS(2234), @@ -80050,9 +79013,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(603)] = { - [sym_line_comment] = STATE(603), - [sym_block_comment] = STATE(603), + [STATE(588)] = { + [sym_line_comment] = STATE(588), + [sym_block_comment] = STATE(588), [ts_builtin_sym_end] = ACTIONS(2238), [sym_identifier] = ACTIONS(2240), [anon_sym_SEMI] = ACTIONS(2238), @@ -80131,3087 +79094,5274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2238), [sym_float_literal] = ACTIONS(2238), }, + [STATE(589)] = { + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym_closure_expression] = STATE(3258), + [sym_closure_parameters] = STATE(245), + [sym__pattern] = STATE(3040), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_move] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(590)] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_identifier] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_macro_rules_BANG] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_u8] = ACTIONS(2246), + [anon_sym_i8] = ACTIONS(2246), + [anon_sym_u16] = ACTIONS(2246), + [anon_sym_i16] = ACTIONS(2246), + [anon_sym_u32] = ACTIONS(2246), + [anon_sym_i32] = ACTIONS(2246), + [anon_sym_u64] = ACTIONS(2246), + [anon_sym_i64] = ACTIONS(2246), + [anon_sym_u128] = ACTIONS(2246), + [anon_sym_i128] = ACTIONS(2246), + [anon_sym_isize] = ACTIONS(2246), + [anon_sym_usize] = ACTIONS(2246), + [anon_sym_f32] = ACTIONS(2246), + [anon_sym_f64] = ACTIONS(2246), + [anon_sym_bool] = ACTIONS(2246), + [anon_sym_str] = ACTIONS(2246), + [anon_sym_char] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON_COLON] = ACTIONS(2244), + [anon_sym_POUND] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2246), + [anon_sym_async] = ACTIONS(2246), + [anon_sym_break] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2246), + [anon_sym_continue] = ACTIONS(2246), + [anon_sym_default] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_fn] = ACTIONS(2246), + [anon_sym_for] = ACTIONS(2246), + [anon_sym_gen] = ACTIONS(2246), + [anon_sym_if] = ACTIONS(2246), + [anon_sym_impl] = ACTIONS(2246), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_loop] = ACTIONS(2246), + [anon_sym_match] = ACTIONS(2246), + [anon_sym_mod] = ACTIONS(2246), + [anon_sym_pub] = ACTIONS(2246), + [anon_sym_return] = ACTIONS(2246), + [anon_sym_static] = ACTIONS(2246), + [anon_sym_struct] = ACTIONS(2246), + [anon_sym_trait] = ACTIONS(2246), + [anon_sym_type] = ACTIONS(2246), + [anon_sym_union] = ACTIONS(2246), + [anon_sym_unsafe] = ACTIONS(2246), + [anon_sym_use] = ACTIONS(2246), + [anon_sym_while] = ACTIONS(2246), + [anon_sym_extern] = ACTIONS(2246), + [anon_sym_yield] = ACTIONS(2246), + [anon_sym_move] = ACTIONS(2246), + [anon_sym_try] = ACTIONS(2246), + [sym_integer_literal] = ACTIONS(2244), + [aux_sym_string_literal_token1] = ACTIONS(2244), + [sym_char_literal] = ACTIONS(2244), + [anon_sym_true] = ACTIONS(2246), + [anon_sym_false] = ACTIONS(2246), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2246), + [sym_super] = ACTIONS(2246), + [sym_crate] = ACTIONS(2246), + [sym_metavariable] = ACTIONS(2244), + [sym__raw_string_literal_start] = ACTIONS(2244), + [sym_float_literal] = ACTIONS(2244), + }, + [STATE(591)] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2248), + [anon_sym_macro_rules_BANG] = ACTIONS(2248), + [anon_sym_LPAREN] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2248), + [anon_sym_RBRACE] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_u8] = ACTIONS(2250), + [anon_sym_i8] = ACTIONS(2250), + [anon_sym_u16] = ACTIONS(2250), + [anon_sym_i16] = ACTIONS(2250), + [anon_sym_u32] = ACTIONS(2250), + [anon_sym_i32] = ACTIONS(2250), + [anon_sym_u64] = ACTIONS(2250), + [anon_sym_i64] = ACTIONS(2250), + [anon_sym_u128] = ACTIONS(2250), + [anon_sym_i128] = ACTIONS(2250), + [anon_sym_isize] = ACTIONS(2250), + [anon_sym_usize] = ACTIONS(2250), + [anon_sym_f32] = ACTIONS(2250), + [anon_sym_f64] = ACTIONS(2250), + [anon_sym_bool] = ACTIONS(2250), + [anon_sym_str] = ACTIONS(2250), + [anon_sym_char] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_AMP] = ACTIONS(2248), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_DOT_DOT] = ACTIONS(2248), + [anon_sym_COLON_COLON] = ACTIONS(2248), + [anon_sym_POUND] = ACTIONS(2248), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [anon_sym_fn] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_gen] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_impl] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_loop] = ACTIONS(2250), + [anon_sym_match] = ACTIONS(2250), + [anon_sym_mod] = ACTIONS(2250), + [anon_sym_pub] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_trait] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2250), + [anon_sym_unsafe] = ACTIONS(2250), + [anon_sym_use] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_extern] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_move] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [sym_integer_literal] = ACTIONS(2248), + [aux_sym_string_literal_token1] = ACTIONS(2248), + [sym_char_literal] = ACTIONS(2248), + [anon_sym_true] = ACTIONS(2250), + [anon_sym_false] = ACTIONS(2250), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_crate] = ACTIONS(2250), + [sym_metavariable] = ACTIONS(2248), + [sym__raw_string_literal_start] = ACTIONS(2248), + [sym_float_literal] = ACTIONS(2248), + }, + [STATE(592)] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), + [ts_builtin_sym_end] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2252), + [anon_sym_macro_rules_BANG] = ACTIONS(2252), + [anon_sym_LPAREN] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2252), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_u8] = ACTIONS(2254), + [anon_sym_i8] = ACTIONS(2254), + [anon_sym_u16] = ACTIONS(2254), + [anon_sym_i16] = ACTIONS(2254), + [anon_sym_u32] = ACTIONS(2254), + [anon_sym_i32] = ACTIONS(2254), + [anon_sym_u64] = ACTIONS(2254), + [anon_sym_i64] = ACTIONS(2254), + [anon_sym_u128] = ACTIONS(2254), + [anon_sym_i128] = ACTIONS(2254), + [anon_sym_isize] = ACTIONS(2254), + [anon_sym_usize] = ACTIONS(2254), + [anon_sym_f32] = ACTIONS(2254), + [anon_sym_f64] = ACTIONS(2254), + [anon_sym_bool] = ACTIONS(2254), + [anon_sym_str] = ACTIONS(2254), + [anon_sym_char] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_BANG] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2252), + [anon_sym_DOT_DOT] = ACTIONS(2252), + [anon_sym_COLON_COLON] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(2252), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_default] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), + [anon_sym_fn] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_gen] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_impl] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_loop] = ACTIONS(2254), + [anon_sym_match] = ACTIONS(2254), + [anon_sym_mod] = ACTIONS(2254), + [anon_sym_pub] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_static] = ACTIONS(2254), + [anon_sym_struct] = ACTIONS(2254), + [anon_sym_trait] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_unsafe] = ACTIONS(2254), + [anon_sym_use] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_extern] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_move] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [sym_integer_literal] = ACTIONS(2252), + [aux_sym_string_literal_token1] = ACTIONS(2252), + [sym_char_literal] = ACTIONS(2252), + [anon_sym_true] = ACTIONS(2254), + [anon_sym_false] = ACTIONS(2254), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_crate] = ACTIONS(2254), + [sym_metavariable] = ACTIONS(2252), + [sym__raw_string_literal_start] = ACTIONS(2252), + [sym_float_literal] = ACTIONS(2252), + }, + [STATE(593)] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), + [ts_builtin_sym_end] = ACTIONS(2256), + [sym_identifier] = ACTIONS(2258), + [anon_sym_SEMI] = ACTIONS(2256), + [anon_sym_macro_rules_BANG] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2256), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_u8] = ACTIONS(2258), + [anon_sym_i8] = ACTIONS(2258), + [anon_sym_u16] = ACTIONS(2258), + [anon_sym_i16] = ACTIONS(2258), + [anon_sym_u32] = ACTIONS(2258), + [anon_sym_i32] = ACTIONS(2258), + [anon_sym_u64] = ACTIONS(2258), + [anon_sym_i64] = ACTIONS(2258), + [anon_sym_u128] = ACTIONS(2258), + [anon_sym_i128] = ACTIONS(2258), + [anon_sym_isize] = ACTIONS(2258), + [anon_sym_usize] = ACTIONS(2258), + [anon_sym_f32] = ACTIONS(2258), + [anon_sym_f64] = ACTIONS(2258), + [anon_sym_bool] = ACTIONS(2258), + [anon_sym_str] = ACTIONS(2258), + [anon_sym_char] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_DOT_DOT] = ACTIONS(2256), + [anon_sym_COLON_COLON] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [anon_sym_SQUOTE] = ACTIONS(2258), + [anon_sym_async] = ACTIONS(2258), + [anon_sym_break] = ACTIONS(2258), + [anon_sym_const] = ACTIONS(2258), + [anon_sym_continue] = ACTIONS(2258), + [anon_sym_default] = ACTIONS(2258), + [anon_sym_enum] = ACTIONS(2258), + [anon_sym_fn] = ACTIONS(2258), + [anon_sym_for] = ACTIONS(2258), + [anon_sym_gen] = ACTIONS(2258), + [anon_sym_if] = ACTIONS(2258), + [anon_sym_impl] = ACTIONS(2258), + [anon_sym_let] = ACTIONS(2258), + [anon_sym_loop] = ACTIONS(2258), + [anon_sym_match] = ACTIONS(2258), + [anon_sym_mod] = ACTIONS(2258), + [anon_sym_pub] = ACTIONS(2258), + [anon_sym_return] = ACTIONS(2258), + [anon_sym_static] = ACTIONS(2258), + [anon_sym_struct] = ACTIONS(2258), + [anon_sym_trait] = ACTIONS(2258), + [anon_sym_type] = ACTIONS(2258), + [anon_sym_union] = ACTIONS(2258), + [anon_sym_unsafe] = ACTIONS(2258), + [anon_sym_use] = ACTIONS(2258), + [anon_sym_while] = ACTIONS(2258), + [anon_sym_extern] = ACTIONS(2258), + [anon_sym_yield] = ACTIONS(2258), + [anon_sym_move] = ACTIONS(2258), + [anon_sym_try] = ACTIONS(2258), + [sym_integer_literal] = ACTIONS(2256), + [aux_sym_string_literal_token1] = ACTIONS(2256), + [sym_char_literal] = ACTIONS(2256), + [anon_sym_true] = ACTIONS(2258), + [anon_sym_false] = ACTIONS(2258), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2258), + [sym_super] = ACTIONS(2258), + [sym_crate] = ACTIONS(2258), + [sym_metavariable] = ACTIONS(2256), + [sym__raw_string_literal_start] = ACTIONS(2256), + [sym_float_literal] = ACTIONS(2256), + }, + [STATE(594)] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), + [ts_builtin_sym_end] = ACTIONS(2260), + [sym_identifier] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_macro_rules_BANG] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2260), + [anon_sym_u8] = ACTIONS(2262), + [anon_sym_i8] = ACTIONS(2262), + [anon_sym_u16] = ACTIONS(2262), + [anon_sym_i16] = ACTIONS(2262), + [anon_sym_u32] = ACTIONS(2262), + [anon_sym_i32] = ACTIONS(2262), + [anon_sym_u64] = ACTIONS(2262), + [anon_sym_i64] = ACTIONS(2262), + [anon_sym_u128] = ACTIONS(2262), + [anon_sym_i128] = ACTIONS(2262), + [anon_sym_isize] = ACTIONS(2262), + [anon_sym_usize] = ACTIONS(2262), + [anon_sym_f32] = ACTIONS(2262), + [anon_sym_f64] = ACTIONS(2262), + [anon_sym_bool] = ACTIONS(2262), + [anon_sym_str] = ACTIONS(2262), + [anon_sym_char] = ACTIONS(2262), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_DOT_DOT] = ACTIONS(2260), + [anon_sym_COLON_COLON] = ACTIONS(2260), + [anon_sym_POUND] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2262), + [anon_sym_async] = ACTIONS(2262), + [anon_sym_break] = ACTIONS(2262), + [anon_sym_const] = ACTIONS(2262), + [anon_sym_continue] = ACTIONS(2262), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_enum] = ACTIONS(2262), + [anon_sym_fn] = ACTIONS(2262), + [anon_sym_for] = ACTIONS(2262), + [anon_sym_gen] = ACTIONS(2262), + [anon_sym_if] = ACTIONS(2262), + [anon_sym_impl] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_loop] = ACTIONS(2262), + [anon_sym_match] = ACTIONS(2262), + [anon_sym_mod] = ACTIONS(2262), + [anon_sym_pub] = ACTIONS(2262), + [anon_sym_return] = ACTIONS(2262), + [anon_sym_static] = ACTIONS(2262), + [anon_sym_struct] = ACTIONS(2262), + [anon_sym_trait] = ACTIONS(2262), + [anon_sym_type] = ACTIONS(2262), + [anon_sym_union] = ACTIONS(2262), + [anon_sym_unsafe] = ACTIONS(2262), + [anon_sym_use] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2262), + [anon_sym_extern] = ACTIONS(2262), + [anon_sym_yield] = ACTIONS(2262), + [anon_sym_move] = ACTIONS(2262), + [anon_sym_try] = ACTIONS(2262), + [sym_integer_literal] = ACTIONS(2260), + [aux_sym_string_literal_token1] = ACTIONS(2260), + [sym_char_literal] = ACTIONS(2260), + [anon_sym_true] = ACTIONS(2262), + [anon_sym_false] = ACTIONS(2262), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2262), + [sym_super] = ACTIONS(2262), + [sym_crate] = ACTIONS(2262), + [sym_metavariable] = ACTIONS(2260), + [sym__raw_string_literal_start] = ACTIONS(2260), + [sym_float_literal] = ACTIONS(2260), + }, + [STATE(595)] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), + [ts_builtin_sym_end] = ACTIONS(2264), + [sym_identifier] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_macro_rules_BANG] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2264), + [anon_sym_u8] = ACTIONS(2266), + [anon_sym_i8] = ACTIONS(2266), + [anon_sym_u16] = ACTIONS(2266), + [anon_sym_i16] = ACTIONS(2266), + [anon_sym_u32] = ACTIONS(2266), + [anon_sym_i32] = ACTIONS(2266), + [anon_sym_u64] = ACTIONS(2266), + [anon_sym_i64] = ACTIONS(2266), + [anon_sym_u128] = ACTIONS(2266), + [anon_sym_i128] = ACTIONS(2266), + [anon_sym_isize] = ACTIONS(2266), + [anon_sym_usize] = ACTIONS(2266), + [anon_sym_f32] = ACTIONS(2266), + [anon_sym_f64] = ACTIONS(2266), + [anon_sym_bool] = ACTIONS(2266), + [anon_sym_str] = ACTIONS(2266), + [anon_sym_char] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2264), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_PIPE] = ACTIONS(2264), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_DOT_DOT] = ACTIONS(2264), + [anon_sym_COLON_COLON] = ACTIONS(2264), + [anon_sym_POUND] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(2266), + [anon_sym_async] = ACTIONS(2266), + [anon_sym_break] = ACTIONS(2266), + [anon_sym_const] = ACTIONS(2266), + [anon_sym_continue] = ACTIONS(2266), + [anon_sym_default] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(2266), + [anon_sym_fn] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2266), + [anon_sym_gen] = ACTIONS(2266), + [anon_sym_if] = ACTIONS(2266), + [anon_sym_impl] = ACTIONS(2266), + [anon_sym_let] = ACTIONS(2266), + [anon_sym_loop] = ACTIONS(2266), + [anon_sym_match] = ACTIONS(2266), + [anon_sym_mod] = ACTIONS(2266), + [anon_sym_pub] = ACTIONS(2266), + [anon_sym_return] = ACTIONS(2266), + [anon_sym_static] = ACTIONS(2266), + [anon_sym_struct] = ACTIONS(2266), + [anon_sym_trait] = ACTIONS(2266), + [anon_sym_type] = ACTIONS(2266), + [anon_sym_union] = ACTIONS(2266), + [anon_sym_unsafe] = ACTIONS(2266), + [anon_sym_use] = ACTIONS(2266), + [anon_sym_while] = ACTIONS(2266), + [anon_sym_extern] = ACTIONS(2266), + [anon_sym_yield] = ACTIONS(2266), + [anon_sym_move] = ACTIONS(2266), + [anon_sym_try] = ACTIONS(2266), + [sym_integer_literal] = ACTIONS(2264), + [aux_sym_string_literal_token1] = ACTIONS(2264), + [sym_char_literal] = ACTIONS(2264), + [anon_sym_true] = ACTIONS(2266), + [anon_sym_false] = ACTIONS(2266), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2266), + [sym_super] = ACTIONS(2266), + [sym_crate] = ACTIONS(2266), + [sym_metavariable] = ACTIONS(2264), + [sym__raw_string_literal_start] = ACTIONS(2264), + [sym_float_literal] = ACTIONS(2264), + }, + [STATE(596)] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(2268), + [sym_identifier] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_macro_rules_BANG] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2268), + [anon_sym_u8] = ACTIONS(2270), + [anon_sym_i8] = ACTIONS(2270), + [anon_sym_u16] = ACTIONS(2270), + [anon_sym_i16] = ACTIONS(2270), + [anon_sym_u32] = ACTIONS(2270), + [anon_sym_i32] = ACTIONS(2270), + [anon_sym_u64] = ACTIONS(2270), + [anon_sym_i64] = ACTIONS(2270), + [anon_sym_u128] = ACTIONS(2270), + [anon_sym_i128] = ACTIONS(2270), + [anon_sym_isize] = ACTIONS(2270), + [anon_sym_usize] = ACTIONS(2270), + [anon_sym_f32] = ACTIONS(2270), + [anon_sym_f64] = ACTIONS(2270), + [anon_sym_bool] = ACTIONS(2270), + [anon_sym_str] = ACTIONS(2270), + [anon_sym_char] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_AMP] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_DOT_DOT] = ACTIONS(2268), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_POUND] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_async] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2270), + [anon_sym_enum] = ACTIONS(2270), + [anon_sym_fn] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_gen] = ACTIONS(2270), + [anon_sym_if] = ACTIONS(2270), + [anon_sym_impl] = ACTIONS(2270), + [anon_sym_let] = ACTIONS(2270), + [anon_sym_loop] = ACTIONS(2270), + [anon_sym_match] = ACTIONS(2270), + [anon_sym_mod] = ACTIONS(2270), + [anon_sym_pub] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_static] = ACTIONS(2270), + [anon_sym_struct] = ACTIONS(2270), + [anon_sym_trait] = ACTIONS(2270), + [anon_sym_type] = ACTIONS(2270), + [anon_sym_union] = ACTIONS(2270), + [anon_sym_unsafe] = ACTIONS(2270), + [anon_sym_use] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2270), + [anon_sym_extern] = ACTIONS(2270), + [anon_sym_yield] = ACTIONS(2270), + [anon_sym_move] = ACTIONS(2270), + [anon_sym_try] = ACTIONS(2270), + [sym_integer_literal] = ACTIONS(2268), + [aux_sym_string_literal_token1] = ACTIONS(2268), + [sym_char_literal] = ACTIONS(2268), + [anon_sym_true] = ACTIONS(2270), + [anon_sym_false] = ACTIONS(2270), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2270), + [sym_super] = ACTIONS(2270), + [sym_crate] = ACTIONS(2270), + [sym_metavariable] = ACTIONS(2268), + [sym__raw_string_literal_start] = ACTIONS(2268), + [sym_float_literal] = ACTIONS(2268), + }, + [STATE(597)] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2272), + [sym_identifier] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_macro_rules_BANG] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2272), + [anon_sym_u8] = ACTIONS(2274), + [anon_sym_i8] = ACTIONS(2274), + [anon_sym_u16] = ACTIONS(2274), + [anon_sym_i16] = ACTIONS(2274), + [anon_sym_u32] = ACTIONS(2274), + [anon_sym_i32] = ACTIONS(2274), + [anon_sym_u64] = ACTIONS(2274), + [anon_sym_i64] = ACTIONS(2274), + [anon_sym_u128] = ACTIONS(2274), + [anon_sym_i128] = ACTIONS(2274), + [anon_sym_isize] = ACTIONS(2274), + [anon_sym_usize] = ACTIONS(2274), + [anon_sym_f32] = ACTIONS(2274), + [anon_sym_f64] = ACTIONS(2274), + [anon_sym_bool] = ACTIONS(2274), + [anon_sym_str] = ACTIONS(2274), + [anon_sym_char] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_async] = ACTIONS(2274), + [anon_sym_break] = ACTIONS(2274), + [anon_sym_const] = ACTIONS(2274), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_default] = ACTIONS(2274), + [anon_sym_enum] = ACTIONS(2274), + [anon_sym_fn] = ACTIONS(2274), + [anon_sym_for] = ACTIONS(2274), + [anon_sym_gen] = ACTIONS(2274), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_impl] = ACTIONS(2274), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_loop] = ACTIONS(2274), + [anon_sym_match] = ACTIONS(2274), + [anon_sym_mod] = ACTIONS(2274), + [anon_sym_pub] = ACTIONS(2274), + [anon_sym_return] = ACTIONS(2274), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_struct] = ACTIONS(2274), + [anon_sym_trait] = ACTIONS(2274), + [anon_sym_type] = ACTIONS(2274), + [anon_sym_union] = ACTIONS(2274), + [anon_sym_unsafe] = ACTIONS(2274), + [anon_sym_use] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2274), + [anon_sym_extern] = ACTIONS(2274), + [anon_sym_yield] = ACTIONS(2274), + [anon_sym_move] = ACTIONS(2274), + [anon_sym_try] = ACTIONS(2274), + [sym_integer_literal] = ACTIONS(2272), + [aux_sym_string_literal_token1] = ACTIONS(2272), + [sym_char_literal] = ACTIONS(2272), + [anon_sym_true] = ACTIONS(2274), + [anon_sym_false] = ACTIONS(2274), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2274), + [sym_super] = ACTIONS(2274), + [sym_crate] = ACTIONS(2274), + [sym_metavariable] = ACTIONS(2272), + [sym__raw_string_literal_start] = ACTIONS(2272), + [sym_float_literal] = ACTIONS(2272), + }, + [STATE(598)] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), + [ts_builtin_sym_end] = ACTIONS(2276), + [sym_identifier] = ACTIONS(2278), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_macro_rules_BANG] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_u8] = ACTIONS(2278), + [anon_sym_i8] = ACTIONS(2278), + [anon_sym_u16] = ACTIONS(2278), + [anon_sym_i16] = ACTIONS(2278), + [anon_sym_u32] = ACTIONS(2278), + [anon_sym_i32] = ACTIONS(2278), + [anon_sym_u64] = ACTIONS(2278), + [anon_sym_i64] = ACTIONS(2278), + [anon_sym_u128] = ACTIONS(2278), + [anon_sym_i128] = ACTIONS(2278), + [anon_sym_isize] = ACTIONS(2278), + [anon_sym_usize] = ACTIONS(2278), + [anon_sym_f32] = ACTIONS(2278), + [anon_sym_f64] = ACTIONS(2278), + [anon_sym_bool] = ACTIONS(2278), + [anon_sym_str] = ACTIONS(2278), + [anon_sym_char] = ACTIONS(2278), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_DOT_DOT] = ACTIONS(2276), + [anon_sym_COLON_COLON] = ACTIONS(2276), + [anon_sym_POUND] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2278), + [anon_sym_async] = ACTIONS(2278), + [anon_sym_break] = ACTIONS(2278), + [anon_sym_const] = ACTIONS(2278), + [anon_sym_continue] = ACTIONS(2278), + [anon_sym_default] = ACTIONS(2278), + [anon_sym_enum] = ACTIONS(2278), + [anon_sym_fn] = ACTIONS(2278), + [anon_sym_for] = ACTIONS(2278), + [anon_sym_gen] = ACTIONS(2278), + [anon_sym_if] = ACTIONS(2278), + [anon_sym_impl] = ACTIONS(2278), + [anon_sym_let] = ACTIONS(2278), + [anon_sym_loop] = ACTIONS(2278), + [anon_sym_match] = ACTIONS(2278), + [anon_sym_mod] = ACTIONS(2278), + [anon_sym_pub] = ACTIONS(2278), + [anon_sym_return] = ACTIONS(2278), + [anon_sym_static] = ACTIONS(2278), + [anon_sym_struct] = ACTIONS(2278), + [anon_sym_trait] = ACTIONS(2278), + [anon_sym_type] = ACTIONS(2278), + [anon_sym_union] = ACTIONS(2278), + [anon_sym_unsafe] = ACTIONS(2278), + [anon_sym_use] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2278), + [anon_sym_extern] = ACTIONS(2278), + [anon_sym_yield] = ACTIONS(2278), + [anon_sym_move] = ACTIONS(2278), + [anon_sym_try] = ACTIONS(2278), + [sym_integer_literal] = ACTIONS(2276), + [aux_sym_string_literal_token1] = ACTIONS(2276), + [sym_char_literal] = ACTIONS(2276), + [anon_sym_true] = ACTIONS(2278), + [anon_sym_false] = ACTIONS(2278), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2278), + [sym_super] = ACTIONS(2278), + [sym_crate] = ACTIONS(2278), + [sym_metavariable] = ACTIONS(2276), + [sym__raw_string_literal_start] = ACTIONS(2276), + [sym_float_literal] = ACTIONS(2276), + }, + [STATE(599)] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), + [ts_builtin_sym_end] = ACTIONS(2280), + [sym_identifier] = ACTIONS(2282), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_macro_rules_BANG] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2280), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_STAR] = ACTIONS(2280), + [anon_sym_u8] = ACTIONS(2282), + [anon_sym_i8] = ACTIONS(2282), + [anon_sym_u16] = ACTIONS(2282), + [anon_sym_i16] = ACTIONS(2282), + [anon_sym_u32] = ACTIONS(2282), + [anon_sym_i32] = ACTIONS(2282), + [anon_sym_u64] = ACTIONS(2282), + [anon_sym_i64] = ACTIONS(2282), + [anon_sym_u128] = ACTIONS(2282), + [anon_sym_i128] = ACTIONS(2282), + [anon_sym_isize] = ACTIONS(2282), + [anon_sym_usize] = ACTIONS(2282), + [anon_sym_f32] = ACTIONS(2282), + [anon_sym_f64] = ACTIONS(2282), + [anon_sym_bool] = ACTIONS(2282), + [anon_sym_str] = ACTIONS(2282), + [anon_sym_char] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2280), + [anon_sym_BANG] = ACTIONS(2280), + [anon_sym_AMP] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2280), + [anon_sym_LT] = ACTIONS(2280), + [anon_sym_DOT_DOT] = ACTIONS(2280), + [anon_sym_COLON_COLON] = ACTIONS(2280), + [anon_sym_POUND] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [anon_sym_async] = ACTIONS(2282), + [anon_sym_break] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(2282), + [anon_sym_continue] = ACTIONS(2282), + [anon_sym_default] = ACTIONS(2282), + [anon_sym_enum] = ACTIONS(2282), + [anon_sym_fn] = ACTIONS(2282), + [anon_sym_for] = ACTIONS(2282), + [anon_sym_gen] = ACTIONS(2282), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_impl] = ACTIONS(2282), + [anon_sym_let] = ACTIONS(2282), + [anon_sym_loop] = ACTIONS(2282), + [anon_sym_match] = ACTIONS(2282), + [anon_sym_mod] = ACTIONS(2282), + [anon_sym_pub] = ACTIONS(2282), + [anon_sym_return] = ACTIONS(2282), + [anon_sym_static] = ACTIONS(2282), + [anon_sym_struct] = ACTIONS(2282), + [anon_sym_trait] = ACTIONS(2282), + [anon_sym_type] = ACTIONS(2282), + [anon_sym_union] = ACTIONS(2282), + [anon_sym_unsafe] = ACTIONS(2282), + [anon_sym_use] = ACTIONS(2282), + [anon_sym_while] = ACTIONS(2282), + [anon_sym_extern] = ACTIONS(2282), + [anon_sym_yield] = ACTIONS(2282), + [anon_sym_move] = ACTIONS(2282), + [anon_sym_try] = ACTIONS(2282), + [sym_integer_literal] = ACTIONS(2280), + [aux_sym_string_literal_token1] = ACTIONS(2280), + [sym_char_literal] = ACTIONS(2280), + [anon_sym_true] = ACTIONS(2282), + [anon_sym_false] = ACTIONS(2282), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2282), + [sym_super] = ACTIONS(2282), + [sym_crate] = ACTIONS(2282), + [sym_metavariable] = ACTIONS(2280), + [sym__raw_string_literal_start] = ACTIONS(2280), + [sym_float_literal] = ACTIONS(2280), + }, + [STATE(600)] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), + [ts_builtin_sym_end] = ACTIONS(2284), + [sym_identifier] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_macro_rules_BANG] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_u8] = ACTIONS(2286), + [anon_sym_i8] = ACTIONS(2286), + [anon_sym_u16] = ACTIONS(2286), + [anon_sym_i16] = ACTIONS(2286), + [anon_sym_u32] = ACTIONS(2286), + [anon_sym_i32] = ACTIONS(2286), + [anon_sym_u64] = ACTIONS(2286), + [anon_sym_i64] = ACTIONS(2286), + [anon_sym_u128] = ACTIONS(2286), + [anon_sym_i128] = ACTIONS(2286), + [anon_sym_isize] = ACTIONS(2286), + [anon_sym_usize] = ACTIONS(2286), + [anon_sym_f32] = ACTIONS(2286), + [anon_sym_f64] = ACTIONS(2286), + [anon_sym_bool] = ACTIONS(2286), + [anon_sym_str] = ACTIONS(2286), + [anon_sym_char] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2284), + [anon_sym_DOT_DOT] = ACTIONS(2284), + [anon_sym_COLON_COLON] = ACTIONS(2284), + [anon_sym_POUND] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), + [anon_sym_fn] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_gen] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_impl] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_loop] = ACTIONS(2286), + [anon_sym_match] = ACTIONS(2286), + [anon_sym_mod] = ACTIONS(2286), + [anon_sym_pub] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_struct] = ACTIONS(2286), + [anon_sym_trait] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_union] = ACTIONS(2286), + [anon_sym_unsafe] = ACTIONS(2286), + [anon_sym_use] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_extern] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_move] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [sym_integer_literal] = ACTIONS(2284), + [aux_sym_string_literal_token1] = ACTIONS(2284), + [sym_char_literal] = ACTIONS(2284), + [anon_sym_true] = ACTIONS(2286), + [anon_sym_false] = ACTIONS(2286), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_crate] = ACTIONS(2286), + [sym_metavariable] = ACTIONS(2284), + [sym__raw_string_literal_start] = ACTIONS(2284), + [sym_float_literal] = ACTIONS(2284), + }, + [STATE(601)] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), + [ts_builtin_sym_end] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2290), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_macro_rules_BANG] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_u8] = ACTIONS(2290), + [anon_sym_i8] = ACTIONS(2290), + [anon_sym_u16] = ACTIONS(2290), + [anon_sym_i16] = ACTIONS(2290), + [anon_sym_u32] = ACTIONS(2290), + [anon_sym_i32] = ACTIONS(2290), + [anon_sym_u64] = ACTIONS(2290), + [anon_sym_i64] = ACTIONS(2290), + [anon_sym_u128] = ACTIONS(2290), + [anon_sym_i128] = ACTIONS(2290), + [anon_sym_isize] = ACTIONS(2290), + [anon_sym_usize] = ACTIONS(2290), + [anon_sym_f32] = ACTIONS(2290), + [anon_sym_f64] = ACTIONS(2290), + [anon_sym_bool] = ACTIONS(2290), + [anon_sym_str] = ACTIONS(2290), + [anon_sym_char] = ACTIONS(2290), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_DOT_DOT] = ACTIONS(2288), + [anon_sym_COLON_COLON] = ACTIONS(2288), + [anon_sym_POUND] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2290), + [anon_sym_async] = ACTIONS(2290), + [anon_sym_break] = ACTIONS(2290), + [anon_sym_const] = ACTIONS(2290), + [anon_sym_continue] = ACTIONS(2290), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_enum] = ACTIONS(2290), + [anon_sym_fn] = ACTIONS(2290), + [anon_sym_for] = ACTIONS(2290), + [anon_sym_gen] = ACTIONS(2290), + [anon_sym_if] = ACTIONS(2290), + [anon_sym_impl] = ACTIONS(2290), + [anon_sym_let] = ACTIONS(2290), + [anon_sym_loop] = ACTIONS(2290), + [anon_sym_match] = ACTIONS(2290), + [anon_sym_mod] = ACTIONS(2290), + [anon_sym_pub] = ACTIONS(2290), + [anon_sym_return] = ACTIONS(2290), + [anon_sym_static] = ACTIONS(2290), + [anon_sym_struct] = ACTIONS(2290), + [anon_sym_trait] = ACTIONS(2290), + [anon_sym_type] = ACTIONS(2290), + [anon_sym_union] = ACTIONS(2290), + [anon_sym_unsafe] = ACTIONS(2290), + [anon_sym_use] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2290), + [anon_sym_extern] = ACTIONS(2290), + [anon_sym_yield] = ACTIONS(2290), + [anon_sym_move] = ACTIONS(2290), + [anon_sym_try] = ACTIONS(2290), + [sym_integer_literal] = ACTIONS(2288), + [aux_sym_string_literal_token1] = ACTIONS(2288), + [sym_char_literal] = ACTIONS(2288), + [anon_sym_true] = ACTIONS(2290), + [anon_sym_false] = ACTIONS(2290), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2290), + [sym_super] = ACTIONS(2290), + [sym_crate] = ACTIONS(2290), + [sym_metavariable] = ACTIONS(2288), + [sym__raw_string_literal_start] = ACTIONS(2288), + [sym_float_literal] = ACTIONS(2288), + }, + [STATE(602)] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), + [ts_builtin_sym_end] = ACTIONS(2292), + [sym_identifier] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_macro_rules_BANG] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_STAR] = ACTIONS(2292), + [anon_sym_u8] = ACTIONS(2294), + [anon_sym_i8] = ACTIONS(2294), + [anon_sym_u16] = ACTIONS(2294), + [anon_sym_i16] = ACTIONS(2294), + [anon_sym_u32] = ACTIONS(2294), + [anon_sym_i32] = ACTIONS(2294), + [anon_sym_u64] = ACTIONS(2294), + [anon_sym_i64] = ACTIONS(2294), + [anon_sym_u128] = ACTIONS(2294), + [anon_sym_i128] = ACTIONS(2294), + [anon_sym_isize] = ACTIONS(2294), + [anon_sym_usize] = ACTIONS(2294), + [anon_sym_f32] = ACTIONS(2294), + [anon_sym_f64] = ACTIONS(2294), + [anon_sym_bool] = ACTIONS(2294), + [anon_sym_str] = ACTIONS(2294), + [anon_sym_char] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_DOT_DOT] = ACTIONS(2292), + [anon_sym_COLON_COLON] = ACTIONS(2292), + [anon_sym_POUND] = ACTIONS(2292), + [anon_sym_SQUOTE] = ACTIONS(2294), + [anon_sym_async] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_fn] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_gen] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_impl] = ACTIONS(2294), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_loop] = ACTIONS(2294), + [anon_sym_match] = ACTIONS(2294), + [anon_sym_mod] = ACTIONS(2294), + [anon_sym_pub] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_trait] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_unsafe] = ACTIONS(2294), + [anon_sym_use] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym_yield] = ACTIONS(2294), + [anon_sym_move] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [sym_integer_literal] = ACTIONS(2292), + [aux_sym_string_literal_token1] = ACTIONS(2292), + [sym_char_literal] = ACTIONS(2292), + [anon_sym_true] = ACTIONS(2294), + [anon_sym_false] = ACTIONS(2294), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2294), + [sym_super] = ACTIONS(2294), + [sym_crate] = ACTIONS(2294), + [sym_metavariable] = ACTIONS(2292), + [sym__raw_string_literal_start] = ACTIONS(2292), + [sym_float_literal] = ACTIONS(2292), + }, + [STATE(603)] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), + [ts_builtin_sym_end] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_macro_rules_BANG] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_u8] = ACTIONS(2298), + [anon_sym_i8] = ACTIONS(2298), + [anon_sym_u16] = ACTIONS(2298), + [anon_sym_i16] = ACTIONS(2298), + [anon_sym_u32] = ACTIONS(2298), + [anon_sym_i32] = ACTIONS(2298), + [anon_sym_u64] = ACTIONS(2298), + [anon_sym_i64] = ACTIONS(2298), + [anon_sym_u128] = ACTIONS(2298), + [anon_sym_i128] = ACTIONS(2298), + [anon_sym_isize] = ACTIONS(2298), + [anon_sym_usize] = ACTIONS(2298), + [anon_sym_f32] = ACTIONS(2298), + [anon_sym_f64] = ACTIONS(2298), + [anon_sym_bool] = ACTIONS(2298), + [anon_sym_str] = ACTIONS(2298), + [anon_sym_char] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_DOT_DOT] = ACTIONS(2296), + [anon_sym_COLON_COLON] = ACTIONS(2296), + [anon_sym_POUND] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), + [anon_sym_fn] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_gen] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_impl] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_loop] = ACTIONS(2298), + [anon_sym_match] = ACTIONS(2298), + [anon_sym_mod] = ACTIONS(2298), + [anon_sym_pub] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_struct] = ACTIONS(2298), + [anon_sym_trait] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_union] = ACTIONS(2298), + [anon_sym_unsafe] = ACTIONS(2298), + [anon_sym_use] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_extern] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_move] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [sym_integer_literal] = ACTIONS(2296), + [aux_sym_string_literal_token1] = ACTIONS(2296), + [sym_char_literal] = ACTIONS(2296), + [anon_sym_true] = ACTIONS(2298), + [anon_sym_false] = ACTIONS(2298), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_crate] = ACTIONS(2298), + [sym_metavariable] = ACTIONS(2296), + [sym__raw_string_literal_start] = ACTIONS(2296), + [sym_float_literal] = ACTIONS(2296), + }, [STATE(604)] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(2242), - [sym_identifier] = ACTIONS(2244), - [anon_sym_SEMI] = ACTIONS(2242), - [anon_sym_macro_rules_BANG] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_RBRACE] = ACTIONS(2242), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_u8] = ACTIONS(2244), - [anon_sym_i8] = ACTIONS(2244), - [anon_sym_u16] = ACTIONS(2244), - [anon_sym_i16] = ACTIONS(2244), - [anon_sym_u32] = ACTIONS(2244), - [anon_sym_i32] = ACTIONS(2244), - [anon_sym_u64] = ACTIONS(2244), - [anon_sym_i64] = ACTIONS(2244), - [anon_sym_u128] = ACTIONS(2244), - [anon_sym_i128] = ACTIONS(2244), - [anon_sym_isize] = ACTIONS(2244), - [anon_sym_usize] = ACTIONS(2244), - [anon_sym_f32] = ACTIONS(2244), - [anon_sym_f64] = ACTIONS(2244), - [anon_sym_bool] = ACTIONS(2244), - [anon_sym_str] = ACTIONS(2244), - [anon_sym_char] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2242), - [anon_sym_AMP] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2242), - [anon_sym_DOT_DOT] = ACTIONS(2242), - [anon_sym_COLON_COLON] = ACTIONS(2242), - [anon_sym_POUND] = ACTIONS(2242), - [anon_sym_SQUOTE] = ACTIONS(2244), - [anon_sym_async] = ACTIONS(2244), - [anon_sym_break] = ACTIONS(2244), - [anon_sym_const] = ACTIONS(2244), - [anon_sym_continue] = ACTIONS(2244), - [anon_sym_default] = ACTIONS(2244), - [anon_sym_enum] = ACTIONS(2244), - [anon_sym_fn] = ACTIONS(2244), - [anon_sym_for] = ACTIONS(2244), - [anon_sym_gen] = ACTIONS(2244), - [anon_sym_if] = ACTIONS(2244), - [anon_sym_impl] = ACTIONS(2244), - [anon_sym_let] = ACTIONS(2244), - [anon_sym_loop] = ACTIONS(2244), - [anon_sym_match] = ACTIONS(2244), - [anon_sym_mod] = ACTIONS(2244), - [anon_sym_pub] = ACTIONS(2244), - [anon_sym_return] = ACTIONS(2244), - [anon_sym_static] = ACTIONS(2244), - [anon_sym_struct] = ACTIONS(2244), - [anon_sym_trait] = ACTIONS(2244), - [anon_sym_type] = ACTIONS(2244), - [anon_sym_union] = ACTIONS(2244), - [anon_sym_unsafe] = ACTIONS(2244), - [anon_sym_use] = ACTIONS(2244), - [anon_sym_while] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(2244), - [anon_sym_yield] = ACTIONS(2244), - [anon_sym_move] = ACTIONS(2244), - [anon_sym_try] = ACTIONS(2244), - [sym_integer_literal] = ACTIONS(2242), - [aux_sym_string_literal_token1] = ACTIONS(2242), - [sym_char_literal] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2244), - [anon_sym_false] = ACTIONS(2244), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2244), - [sym_super] = ACTIONS(2244), - [sym_crate] = ACTIONS(2244), - [sym_metavariable] = ACTIONS(2242), - [sym__raw_string_literal_start] = ACTIONS(2242), - [sym_float_literal] = ACTIONS(2242), + [ts_builtin_sym_end] = ACTIONS(2300), + [sym_identifier] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_macro_rules_BANG] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_STAR] = ACTIONS(2300), + [anon_sym_u8] = ACTIONS(2302), + [anon_sym_i8] = ACTIONS(2302), + [anon_sym_u16] = ACTIONS(2302), + [anon_sym_i16] = ACTIONS(2302), + [anon_sym_u32] = ACTIONS(2302), + [anon_sym_i32] = ACTIONS(2302), + [anon_sym_u64] = ACTIONS(2302), + [anon_sym_i64] = ACTIONS(2302), + [anon_sym_u128] = ACTIONS(2302), + [anon_sym_i128] = ACTIONS(2302), + [anon_sym_isize] = ACTIONS(2302), + [anon_sym_usize] = ACTIONS(2302), + [anon_sym_f32] = ACTIONS(2302), + [anon_sym_f64] = ACTIONS(2302), + [anon_sym_bool] = ACTIONS(2302), + [anon_sym_str] = ACTIONS(2302), + [anon_sym_char] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_AMP] = ACTIONS(2300), + [anon_sym_PIPE] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_DOT_DOT] = ACTIONS(2300), + [anon_sym_COLON_COLON] = ACTIONS(2300), + [anon_sym_POUND] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [anon_sym_fn] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_gen] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_impl] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_loop] = ACTIONS(2302), + [anon_sym_match] = ACTIONS(2302), + [anon_sym_mod] = ACTIONS(2302), + [anon_sym_pub] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_struct] = ACTIONS(2302), + [anon_sym_trait] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_union] = ACTIONS(2302), + [anon_sym_unsafe] = ACTIONS(2302), + [anon_sym_use] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_extern] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_move] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [sym_integer_literal] = ACTIONS(2300), + [aux_sym_string_literal_token1] = ACTIONS(2300), + [sym_char_literal] = ACTIONS(2300), + [anon_sym_true] = ACTIONS(2302), + [anon_sym_false] = ACTIONS(2302), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_crate] = ACTIONS(2302), + [sym_metavariable] = ACTIONS(2300), + [sym__raw_string_literal_start] = ACTIONS(2300), + [sym_float_literal] = ACTIONS(2300), }, [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), - [anon_sym_macro_rules_BANG] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_u8] = ACTIONS(2248), - [anon_sym_i8] = ACTIONS(2248), - [anon_sym_u16] = ACTIONS(2248), - [anon_sym_i16] = ACTIONS(2248), - [anon_sym_u32] = ACTIONS(2248), - [anon_sym_i32] = ACTIONS(2248), - [anon_sym_u64] = ACTIONS(2248), - [anon_sym_i64] = ACTIONS(2248), - [anon_sym_u128] = ACTIONS(2248), - [anon_sym_i128] = ACTIONS(2248), - [anon_sym_isize] = ACTIONS(2248), - [anon_sym_usize] = ACTIONS(2248), - [anon_sym_f32] = ACTIONS(2248), - [anon_sym_f64] = ACTIONS(2248), - [anon_sym_bool] = ACTIONS(2248), - [anon_sym_str] = ACTIONS(2248), - [anon_sym_char] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_DOT_DOT] = ACTIONS(2246), - [anon_sym_COLON_COLON] = ACTIONS(2246), - [anon_sym_POUND] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2248), - [anon_sym_async] = ACTIONS(2248), - [anon_sym_break] = ACTIONS(2248), - [anon_sym_const] = ACTIONS(2248), - [anon_sym_continue] = ACTIONS(2248), - [anon_sym_default] = ACTIONS(2248), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_fn] = ACTIONS(2248), - [anon_sym_for] = ACTIONS(2248), - [anon_sym_gen] = ACTIONS(2248), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_impl] = ACTIONS(2248), - [anon_sym_let] = ACTIONS(2248), - [anon_sym_loop] = ACTIONS(2248), - [anon_sym_match] = ACTIONS(2248), - [anon_sym_mod] = ACTIONS(2248), - [anon_sym_pub] = ACTIONS(2248), - [anon_sym_return] = ACTIONS(2248), - [anon_sym_static] = ACTIONS(2248), - [anon_sym_struct] = ACTIONS(2248), - [anon_sym_trait] = ACTIONS(2248), - [anon_sym_type] = ACTIONS(2248), - [anon_sym_union] = ACTIONS(2248), - [anon_sym_unsafe] = ACTIONS(2248), - [anon_sym_use] = ACTIONS(2248), - [anon_sym_while] = ACTIONS(2248), - [anon_sym_extern] = ACTIONS(2248), - [anon_sym_yield] = ACTIONS(2248), - [anon_sym_move] = ACTIONS(2248), - [anon_sym_try] = ACTIONS(2248), - [sym_integer_literal] = ACTIONS(2246), - [aux_sym_string_literal_token1] = ACTIONS(2246), - [sym_char_literal] = ACTIONS(2246), - [anon_sym_true] = ACTIONS(2248), - [anon_sym_false] = ACTIONS(2248), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2248), - [sym_super] = ACTIONS(2248), - [sym_crate] = ACTIONS(2248), - [sym_metavariable] = ACTIONS(2246), - [sym__raw_string_literal_start] = ACTIONS(2246), - [sym_float_literal] = ACTIONS(2246), + [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(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_RBRACE] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_u8] = ACTIONS(2252), - [anon_sym_i8] = ACTIONS(2252), - [anon_sym_u16] = ACTIONS(2252), - [anon_sym_i16] = ACTIONS(2252), - [anon_sym_u32] = ACTIONS(2252), - [anon_sym_i32] = ACTIONS(2252), - [anon_sym_u64] = ACTIONS(2252), - [anon_sym_i64] = ACTIONS(2252), - [anon_sym_u128] = ACTIONS(2252), - [anon_sym_i128] = ACTIONS(2252), - [anon_sym_isize] = ACTIONS(2252), - [anon_sym_usize] = ACTIONS(2252), - [anon_sym_f32] = ACTIONS(2252), - [anon_sym_f64] = ACTIONS(2252), - [anon_sym_bool] = ACTIONS(2252), - [anon_sym_str] = ACTIONS(2252), - [anon_sym_char] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2250), - [anon_sym_AMP] = ACTIONS(2250), - [anon_sym_PIPE] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2250), - [anon_sym_COLON_COLON] = ACTIONS(2250), - [anon_sym_POUND] = ACTIONS(2250), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_default] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), - [anon_sym_fn] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_gen] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_impl] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_loop] = ACTIONS(2252), - [anon_sym_match] = ACTIONS(2252), - [anon_sym_mod] = ACTIONS(2252), - [anon_sym_pub] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_trait] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2252), - [anon_sym_unsafe] = ACTIONS(2252), - [anon_sym_use] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_extern] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_move] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [sym_integer_literal] = ACTIONS(2250), - [aux_sym_string_literal_token1] = ACTIONS(2250), - [sym_char_literal] = ACTIONS(2250), - [anon_sym_true] = ACTIONS(2252), - [anon_sym_false] = ACTIONS(2252), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_crate] = ACTIONS(2252), - [sym_metavariable] = ACTIONS(2250), - [sym__raw_string_literal_start] = ACTIONS(2250), - [sym_float_literal] = ACTIONS(2250), + [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(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2254), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_RBRACE] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2254), - [anon_sym_u8] = ACTIONS(2256), - [anon_sym_i8] = ACTIONS(2256), - [anon_sym_u16] = ACTIONS(2256), - [anon_sym_i16] = ACTIONS(2256), - [anon_sym_u32] = ACTIONS(2256), - [anon_sym_i32] = ACTIONS(2256), - [anon_sym_u64] = ACTIONS(2256), - [anon_sym_i64] = ACTIONS(2256), - [anon_sym_u128] = ACTIONS(2256), - [anon_sym_i128] = ACTIONS(2256), - [anon_sym_isize] = ACTIONS(2256), - [anon_sym_usize] = ACTIONS(2256), - [anon_sym_f32] = ACTIONS(2256), - [anon_sym_f64] = ACTIONS(2256), - [anon_sym_bool] = ACTIONS(2256), - [anon_sym_str] = ACTIONS(2256), - [anon_sym_char] = ACTIONS(2256), - [anon_sym_DASH] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2254), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_DOT_DOT] = ACTIONS(2254), - [anon_sym_COLON_COLON] = ACTIONS(2254), - [anon_sym_POUND] = ACTIONS(2254), - [anon_sym_SQUOTE] = ACTIONS(2256), - [anon_sym_async] = ACTIONS(2256), - [anon_sym_break] = ACTIONS(2256), - [anon_sym_const] = ACTIONS(2256), - [anon_sym_continue] = ACTIONS(2256), - [anon_sym_default] = ACTIONS(2256), - [anon_sym_enum] = ACTIONS(2256), - [anon_sym_fn] = ACTIONS(2256), - [anon_sym_for] = ACTIONS(2256), - [anon_sym_gen] = ACTIONS(2256), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_impl] = ACTIONS(2256), - [anon_sym_let] = ACTIONS(2256), - [anon_sym_loop] = ACTIONS(2256), - [anon_sym_match] = ACTIONS(2256), - [anon_sym_mod] = ACTIONS(2256), - [anon_sym_pub] = ACTIONS(2256), - [anon_sym_return] = ACTIONS(2256), - [anon_sym_static] = ACTIONS(2256), - [anon_sym_struct] = ACTIONS(2256), - [anon_sym_trait] = ACTIONS(2256), - [anon_sym_type] = ACTIONS(2256), - [anon_sym_union] = ACTIONS(2256), - [anon_sym_unsafe] = ACTIONS(2256), - [anon_sym_use] = ACTIONS(2256), - [anon_sym_while] = ACTIONS(2256), - [anon_sym_extern] = ACTIONS(2256), - [anon_sym_yield] = ACTIONS(2256), - [anon_sym_move] = ACTIONS(2256), - [anon_sym_try] = ACTIONS(2256), - [sym_integer_literal] = ACTIONS(2254), - [aux_sym_string_literal_token1] = ACTIONS(2254), - [sym_char_literal] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2256), - [anon_sym_false] = ACTIONS(2256), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2256), - [sym_super] = ACTIONS(2256), - [sym_crate] = ACTIONS(2256), - [sym_metavariable] = ACTIONS(2254), - [sym__raw_string_literal_start] = ACTIONS(2254), - [sym_float_literal] = ACTIONS(2254), + [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(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_u8] = ACTIONS(2260), - [anon_sym_i8] = ACTIONS(2260), - [anon_sym_u16] = ACTIONS(2260), - [anon_sym_i16] = ACTIONS(2260), - [anon_sym_u32] = ACTIONS(2260), - [anon_sym_i32] = ACTIONS(2260), - [anon_sym_u64] = ACTIONS(2260), - [anon_sym_i64] = ACTIONS(2260), - [anon_sym_u128] = ACTIONS(2260), - [anon_sym_i128] = ACTIONS(2260), - [anon_sym_isize] = ACTIONS(2260), - [anon_sym_usize] = ACTIONS(2260), - [anon_sym_f32] = ACTIONS(2260), - [anon_sym_f64] = ACTIONS(2260), - [anon_sym_bool] = ACTIONS(2260), - [anon_sym_str] = ACTIONS(2260), - [anon_sym_char] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_AMP] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_DOT_DOT] = ACTIONS(2258), - [anon_sym_COLON_COLON] = ACTIONS(2258), - [anon_sym_POUND] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2260), - [anon_sym_async] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_const] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_enum] = ACTIONS(2260), - [anon_sym_fn] = ACTIONS(2260), - [anon_sym_for] = ACTIONS(2260), - [anon_sym_gen] = ACTIONS(2260), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_impl] = ACTIONS(2260), - [anon_sym_let] = ACTIONS(2260), - [anon_sym_loop] = ACTIONS(2260), - [anon_sym_match] = ACTIONS(2260), - [anon_sym_mod] = ACTIONS(2260), - [anon_sym_pub] = ACTIONS(2260), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_struct] = ACTIONS(2260), - [anon_sym_trait] = ACTIONS(2260), - [anon_sym_type] = ACTIONS(2260), - [anon_sym_union] = ACTIONS(2260), - [anon_sym_unsafe] = ACTIONS(2260), - [anon_sym_use] = ACTIONS(2260), - [anon_sym_while] = ACTIONS(2260), - [anon_sym_extern] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_move] = ACTIONS(2260), - [anon_sym_try] = ACTIONS(2260), - [sym_integer_literal] = ACTIONS(2258), - [aux_sym_string_literal_token1] = ACTIONS(2258), - [sym_char_literal] = ACTIONS(2258), - [anon_sym_true] = ACTIONS(2260), - [anon_sym_false] = ACTIONS(2260), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2260), - [sym_super] = ACTIONS(2260), - [sym_crate] = ACTIONS(2260), - [sym_metavariable] = ACTIONS(2258), - [sym__raw_string_literal_start] = ACTIONS(2258), - [sym_float_literal] = ACTIONS(2258), + [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(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_u8] = ACTIONS(2264), - [anon_sym_i8] = ACTIONS(2264), - [anon_sym_u16] = ACTIONS(2264), - [anon_sym_i16] = ACTIONS(2264), - [anon_sym_u32] = ACTIONS(2264), - [anon_sym_i32] = ACTIONS(2264), - [anon_sym_u64] = ACTIONS(2264), - [anon_sym_i64] = ACTIONS(2264), - [anon_sym_u128] = ACTIONS(2264), - [anon_sym_i128] = ACTIONS(2264), - [anon_sym_isize] = ACTIONS(2264), - [anon_sym_usize] = ACTIONS(2264), - [anon_sym_f32] = ACTIONS(2264), - [anon_sym_f64] = ACTIONS(2264), - [anon_sym_bool] = ACTIONS(2264), - [anon_sym_str] = ACTIONS(2264), - [anon_sym_char] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_DOT_DOT] = ACTIONS(2262), - [anon_sym_COLON_COLON] = ACTIONS(2262), - [anon_sym_POUND] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2264), - [anon_sym_async] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_const] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_default] = ACTIONS(2264), - [anon_sym_enum] = ACTIONS(2264), - [anon_sym_fn] = ACTIONS(2264), - [anon_sym_for] = ACTIONS(2264), - [anon_sym_gen] = ACTIONS(2264), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_impl] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2264), - [anon_sym_loop] = ACTIONS(2264), - [anon_sym_match] = ACTIONS(2264), - [anon_sym_mod] = ACTIONS(2264), - [anon_sym_pub] = ACTIONS(2264), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_struct] = ACTIONS(2264), - [anon_sym_trait] = ACTIONS(2264), - [anon_sym_type] = ACTIONS(2264), - [anon_sym_union] = ACTIONS(2264), - [anon_sym_unsafe] = ACTIONS(2264), - [anon_sym_use] = ACTIONS(2264), - [anon_sym_while] = ACTIONS(2264), - [anon_sym_extern] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2264), - [anon_sym_move] = ACTIONS(2264), - [anon_sym_try] = ACTIONS(2264), - [sym_integer_literal] = ACTIONS(2262), - [aux_sym_string_literal_token1] = ACTIONS(2262), - [sym_char_literal] = ACTIONS(2262), - [anon_sym_true] = ACTIONS(2264), - [anon_sym_false] = ACTIONS(2264), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2264), - [sym_super] = ACTIONS(2264), - [sym_crate] = ACTIONS(2264), - [sym_metavariable] = ACTIONS(2262), - [sym__raw_string_literal_start] = ACTIONS(2262), - [sym_float_literal] = ACTIONS(2262), + [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(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_u8] = ACTIONS(2268), - [anon_sym_i8] = ACTIONS(2268), - [anon_sym_u16] = ACTIONS(2268), - [anon_sym_i16] = ACTIONS(2268), - [anon_sym_u32] = ACTIONS(2268), - [anon_sym_i32] = ACTIONS(2268), - [anon_sym_u64] = ACTIONS(2268), - [anon_sym_i64] = ACTIONS(2268), - [anon_sym_u128] = ACTIONS(2268), - [anon_sym_i128] = ACTIONS(2268), - [anon_sym_isize] = ACTIONS(2268), - [anon_sym_usize] = ACTIONS(2268), - [anon_sym_f32] = ACTIONS(2268), - [anon_sym_f64] = ACTIONS(2268), - [anon_sym_bool] = ACTIONS(2268), - [anon_sym_str] = ACTIONS(2268), - [anon_sym_char] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_AMP] = ACTIONS(2266), - [anon_sym_PIPE] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_DOT_DOT] = ACTIONS(2266), - [anon_sym_COLON_COLON] = ACTIONS(2266), - [anon_sym_POUND] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2268), - [anon_sym_async] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_default] = ACTIONS(2268), - [anon_sym_enum] = ACTIONS(2268), - [anon_sym_fn] = ACTIONS(2268), - [anon_sym_for] = ACTIONS(2268), - [anon_sym_gen] = ACTIONS(2268), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_impl] = ACTIONS(2268), - [anon_sym_let] = ACTIONS(2268), - [anon_sym_loop] = ACTIONS(2268), - [anon_sym_match] = ACTIONS(2268), - [anon_sym_mod] = ACTIONS(2268), - [anon_sym_pub] = ACTIONS(2268), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_struct] = ACTIONS(2268), - [anon_sym_trait] = ACTIONS(2268), - [anon_sym_type] = ACTIONS(2268), - [anon_sym_union] = ACTIONS(2268), - [anon_sym_unsafe] = ACTIONS(2268), - [anon_sym_use] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2268), - [anon_sym_extern] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2268), - [anon_sym_move] = ACTIONS(2268), - [anon_sym_try] = ACTIONS(2268), - [sym_integer_literal] = ACTIONS(2266), - [aux_sym_string_literal_token1] = ACTIONS(2266), - [sym_char_literal] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(2268), - [anon_sym_false] = ACTIONS(2268), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2268), - [sym_super] = ACTIONS(2268), - [sym_crate] = ACTIONS(2268), - [sym_metavariable] = ACTIONS(2266), - [sym__raw_string_literal_start] = ACTIONS(2266), - [sym_float_literal] = ACTIONS(2266), + [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(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_RBRACE] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_u8] = ACTIONS(2272), - [anon_sym_i8] = ACTIONS(2272), - [anon_sym_u16] = ACTIONS(2272), - [anon_sym_i16] = ACTIONS(2272), - [anon_sym_u32] = ACTIONS(2272), - [anon_sym_i32] = ACTIONS(2272), - [anon_sym_u64] = ACTIONS(2272), - [anon_sym_i64] = ACTIONS(2272), - [anon_sym_u128] = ACTIONS(2272), - [anon_sym_i128] = ACTIONS(2272), - [anon_sym_isize] = ACTIONS(2272), - [anon_sym_usize] = ACTIONS(2272), - [anon_sym_f32] = ACTIONS(2272), - [anon_sym_f64] = ACTIONS(2272), - [anon_sym_bool] = ACTIONS(2272), - [anon_sym_str] = ACTIONS(2272), - [anon_sym_char] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2270), - [anon_sym_BANG] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2270), - [anon_sym_PIPE] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2270), - [anon_sym_DOT_DOT] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2270), - [anon_sym_POUND] = ACTIONS(2270), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_async] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_enum] = ACTIONS(2272), - [anon_sym_fn] = ACTIONS(2272), - [anon_sym_for] = ACTIONS(2272), - [anon_sym_gen] = ACTIONS(2272), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_impl] = ACTIONS(2272), - [anon_sym_let] = ACTIONS(2272), - [anon_sym_loop] = ACTIONS(2272), - [anon_sym_match] = ACTIONS(2272), - [anon_sym_mod] = ACTIONS(2272), - [anon_sym_pub] = ACTIONS(2272), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_struct] = ACTIONS(2272), - [anon_sym_trait] = ACTIONS(2272), - [anon_sym_type] = ACTIONS(2272), - [anon_sym_union] = ACTIONS(2272), - [anon_sym_unsafe] = ACTIONS(2272), - [anon_sym_use] = ACTIONS(2272), - [anon_sym_while] = ACTIONS(2272), - [anon_sym_extern] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2272), - [anon_sym_move] = ACTIONS(2272), - [anon_sym_try] = ACTIONS(2272), - [sym_integer_literal] = ACTIONS(2270), - [aux_sym_string_literal_token1] = ACTIONS(2270), - [sym_char_literal] = ACTIONS(2270), - [anon_sym_true] = ACTIONS(2272), - [anon_sym_false] = ACTIONS(2272), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2272), - [sym_super] = ACTIONS(2272), - [sym_crate] = ACTIONS(2272), - [sym_metavariable] = ACTIONS(2270), - [sym__raw_string_literal_start] = ACTIONS(2270), - [sym_float_literal] = ACTIONS(2270), + [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(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_u8] = ACTIONS(2276), - [anon_sym_i8] = ACTIONS(2276), - [anon_sym_u16] = ACTIONS(2276), - [anon_sym_i16] = ACTIONS(2276), - [anon_sym_u32] = ACTIONS(2276), - [anon_sym_i32] = ACTIONS(2276), - [anon_sym_u64] = ACTIONS(2276), - [anon_sym_i64] = ACTIONS(2276), - [anon_sym_u128] = ACTIONS(2276), - [anon_sym_i128] = ACTIONS(2276), - [anon_sym_isize] = ACTIONS(2276), - [anon_sym_usize] = ACTIONS(2276), - [anon_sym_f32] = ACTIONS(2276), - [anon_sym_f64] = ACTIONS(2276), - [anon_sym_bool] = ACTIONS(2276), - [anon_sym_str] = ACTIONS(2276), - [anon_sym_char] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_DOT_DOT] = ACTIONS(2274), - [anon_sym_COLON_COLON] = ACTIONS(2274), - [anon_sym_POUND] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_default] = ACTIONS(2276), - [anon_sym_enum] = ACTIONS(2276), - [anon_sym_fn] = ACTIONS(2276), - [anon_sym_for] = ACTIONS(2276), - [anon_sym_gen] = ACTIONS(2276), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_impl] = ACTIONS(2276), - [anon_sym_let] = ACTIONS(2276), - [anon_sym_loop] = ACTIONS(2276), - [anon_sym_match] = ACTIONS(2276), - [anon_sym_mod] = ACTIONS(2276), - [anon_sym_pub] = ACTIONS(2276), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_struct] = ACTIONS(2276), - [anon_sym_trait] = ACTIONS(2276), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_union] = ACTIONS(2276), - [anon_sym_unsafe] = ACTIONS(2276), - [anon_sym_use] = ACTIONS(2276), - [anon_sym_while] = ACTIONS(2276), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2276), - [anon_sym_move] = ACTIONS(2276), - [anon_sym_try] = ACTIONS(2276), - [sym_integer_literal] = ACTIONS(2274), - [aux_sym_string_literal_token1] = ACTIONS(2274), - [sym_char_literal] = ACTIONS(2274), - [anon_sym_true] = ACTIONS(2276), - [anon_sym_false] = ACTIONS(2276), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2276), - [sym_super] = ACTIONS(2276), - [sym_crate] = ACTIONS(2276), - [sym_metavariable] = ACTIONS(2274), - [sym__raw_string_literal_start] = ACTIONS(2274), - [sym_float_literal] = ACTIONS(2274), + [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(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2278), - [anon_sym_LPAREN] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2278), - [anon_sym_RBRACE] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_u8] = ACTIONS(2280), - [anon_sym_i8] = ACTIONS(2280), - [anon_sym_u16] = ACTIONS(2280), - [anon_sym_i16] = ACTIONS(2280), - [anon_sym_u32] = ACTIONS(2280), - [anon_sym_i32] = ACTIONS(2280), - [anon_sym_u64] = ACTIONS(2280), - [anon_sym_i64] = ACTIONS(2280), - [anon_sym_u128] = ACTIONS(2280), - [anon_sym_i128] = ACTIONS(2280), - [anon_sym_isize] = ACTIONS(2280), - [anon_sym_usize] = ACTIONS(2280), - [anon_sym_f32] = ACTIONS(2280), - [anon_sym_f64] = ACTIONS(2280), - [anon_sym_bool] = ACTIONS(2280), - [anon_sym_str] = ACTIONS(2280), - [anon_sym_char] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_BANG] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(2278), - [anon_sym_DOT_DOT] = ACTIONS(2278), - [anon_sym_COLON_COLON] = ACTIONS(2278), - [anon_sym_POUND] = ACTIONS(2278), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [anon_sym_fn] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_gen] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_impl] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_loop] = ACTIONS(2280), - [anon_sym_match] = ACTIONS(2280), - [anon_sym_mod] = ACTIONS(2280), - [anon_sym_pub] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_struct] = ACTIONS(2280), - [anon_sym_trait] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_union] = ACTIONS(2280), - [anon_sym_unsafe] = ACTIONS(2280), - [anon_sym_use] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_extern] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_move] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [sym_integer_literal] = ACTIONS(2278), - [aux_sym_string_literal_token1] = ACTIONS(2278), - [sym_char_literal] = ACTIONS(2278), - [anon_sym_true] = ACTIONS(2280), - [anon_sym_false] = ACTIONS(2280), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_crate] = ACTIONS(2280), - [sym_metavariable] = ACTIONS(2278), - [sym__raw_string_literal_start] = ACTIONS(2278), - [sym_float_literal] = ACTIONS(2278), + [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(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2282), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2282), - [anon_sym_u8] = ACTIONS(2284), - [anon_sym_i8] = ACTIONS(2284), - [anon_sym_u16] = ACTIONS(2284), - [anon_sym_i16] = ACTIONS(2284), - [anon_sym_u32] = ACTIONS(2284), - [anon_sym_i32] = ACTIONS(2284), - [anon_sym_u64] = ACTIONS(2284), - [anon_sym_i64] = ACTIONS(2284), - [anon_sym_u128] = ACTIONS(2284), - [anon_sym_i128] = ACTIONS(2284), - [anon_sym_isize] = ACTIONS(2284), - [anon_sym_usize] = ACTIONS(2284), - [anon_sym_f32] = ACTIONS(2284), - [anon_sym_f64] = ACTIONS(2284), - [anon_sym_bool] = ACTIONS(2284), - [anon_sym_str] = ACTIONS(2284), - [anon_sym_char] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2282), - [anon_sym_BANG] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2282), - [anon_sym_DOT_DOT] = ACTIONS(2282), - [anon_sym_COLON_COLON] = ACTIONS(2282), - [anon_sym_POUND] = ACTIONS(2282), - [anon_sym_SQUOTE] = ACTIONS(2284), - [anon_sym_async] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_const] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2284), - [anon_sym_enum] = ACTIONS(2284), - [anon_sym_fn] = ACTIONS(2284), - [anon_sym_for] = ACTIONS(2284), - [anon_sym_gen] = ACTIONS(2284), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_impl] = ACTIONS(2284), - [anon_sym_let] = ACTIONS(2284), - [anon_sym_loop] = ACTIONS(2284), - [anon_sym_match] = ACTIONS(2284), - [anon_sym_mod] = ACTIONS(2284), - [anon_sym_pub] = ACTIONS(2284), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_struct] = ACTIONS(2284), - [anon_sym_trait] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_union] = ACTIONS(2284), - [anon_sym_unsafe] = ACTIONS(2284), - [anon_sym_use] = ACTIONS(2284), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_extern] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2284), - [anon_sym_move] = ACTIONS(2284), - [anon_sym_try] = ACTIONS(2284), - [sym_integer_literal] = ACTIONS(2282), - [aux_sym_string_literal_token1] = ACTIONS(2282), - [sym_char_literal] = ACTIONS(2282), - [anon_sym_true] = ACTIONS(2284), - [anon_sym_false] = ACTIONS(2284), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2284), - [sym_super] = ACTIONS(2284), - [sym_crate] = ACTIONS(2284), - [sym_metavariable] = ACTIONS(2282), - [sym__raw_string_literal_start] = ACTIONS(2282), - [sym_float_literal] = ACTIONS(2282), + [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(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2286), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_RBRACE] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_u8] = ACTIONS(2288), - [anon_sym_i8] = ACTIONS(2288), - [anon_sym_u16] = ACTIONS(2288), - [anon_sym_i16] = ACTIONS(2288), - [anon_sym_u32] = ACTIONS(2288), - [anon_sym_i32] = ACTIONS(2288), - [anon_sym_u64] = ACTIONS(2288), - [anon_sym_i64] = ACTIONS(2288), - [anon_sym_u128] = ACTIONS(2288), - [anon_sym_i128] = ACTIONS(2288), - [anon_sym_isize] = ACTIONS(2288), - [anon_sym_usize] = ACTIONS(2288), - [anon_sym_f32] = ACTIONS(2288), - [anon_sym_f64] = ACTIONS(2288), - [anon_sym_bool] = ACTIONS(2288), - [anon_sym_str] = ACTIONS(2288), - [anon_sym_char] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2286), - [anon_sym_DOT_DOT] = ACTIONS(2286), - [anon_sym_COLON_COLON] = ACTIONS(2286), - [anon_sym_POUND] = ACTIONS(2286), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_default] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [anon_sym_fn] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_gen] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_impl] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_loop] = ACTIONS(2288), - [anon_sym_match] = ACTIONS(2288), - [anon_sym_mod] = ACTIONS(2288), - [anon_sym_pub] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_struct] = ACTIONS(2288), - [anon_sym_trait] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_union] = ACTIONS(2288), - [anon_sym_unsafe] = ACTIONS(2288), - [anon_sym_use] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_move] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [sym_integer_literal] = ACTIONS(2286), - [aux_sym_string_literal_token1] = ACTIONS(2286), - [sym_char_literal] = ACTIONS(2286), - [anon_sym_true] = ACTIONS(2288), - [anon_sym_false] = ACTIONS(2288), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_crate] = ACTIONS(2288), - [sym_metavariable] = ACTIONS(2286), - [sym__raw_string_literal_start] = ACTIONS(2286), - [sym_float_literal] = ACTIONS(2286), + [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(616)] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [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), + [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(617)] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [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), + [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(618)] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [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), + [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(619)] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [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), + [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(620)] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [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), + [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(621)] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [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), + [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(622)] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [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), + [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(623)] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [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), + [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(624)] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [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), + [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(625)] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [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), + [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(626)] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [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), + [ts_builtin_sym_end] = ACTIONS(2388), + [sym_identifier] = ACTIONS(2390), + [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym_macro_rules_BANG] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_u8] = ACTIONS(2390), + [anon_sym_i8] = ACTIONS(2390), + [anon_sym_u16] = ACTIONS(2390), + [anon_sym_i16] = ACTIONS(2390), + [anon_sym_u32] = ACTIONS(2390), + [anon_sym_i32] = ACTIONS(2390), + [anon_sym_u64] = ACTIONS(2390), + [anon_sym_i64] = ACTIONS(2390), + [anon_sym_u128] = ACTIONS(2390), + [anon_sym_i128] = ACTIONS(2390), + [anon_sym_isize] = ACTIONS(2390), + [anon_sym_usize] = ACTIONS(2390), + [anon_sym_f32] = ACTIONS(2390), + [anon_sym_f64] = ACTIONS(2390), + [anon_sym_bool] = ACTIONS(2390), + [anon_sym_str] = ACTIONS(2390), + [anon_sym_char] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_DOT_DOT] = ACTIONS(2388), + [anon_sym_COLON_COLON] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(2388), + [anon_sym_SQUOTE] = ACTIONS(2390), + [anon_sym_async] = ACTIONS(2390), + [anon_sym_break] = ACTIONS(2390), + [anon_sym_const] = ACTIONS(2390), + [anon_sym_continue] = ACTIONS(2390), + [anon_sym_default] = ACTIONS(2390), + [anon_sym_enum] = ACTIONS(2390), + [anon_sym_fn] = ACTIONS(2390), + [anon_sym_for] = ACTIONS(2390), + [anon_sym_gen] = ACTIONS(2390), + [anon_sym_if] = ACTIONS(2390), + [anon_sym_impl] = ACTIONS(2390), + [anon_sym_let] = ACTIONS(2390), + [anon_sym_loop] = ACTIONS(2390), + [anon_sym_match] = ACTIONS(2390), + [anon_sym_mod] = ACTIONS(2390), + [anon_sym_pub] = ACTIONS(2390), + [anon_sym_return] = ACTIONS(2390), + [anon_sym_static] = ACTIONS(2390), + [anon_sym_struct] = ACTIONS(2390), + [anon_sym_trait] = ACTIONS(2390), + [anon_sym_type] = ACTIONS(2390), + [anon_sym_union] = ACTIONS(2390), + [anon_sym_unsafe] = ACTIONS(2390), + [anon_sym_use] = ACTIONS(2390), + [anon_sym_while] = ACTIONS(2390), + [anon_sym_extern] = ACTIONS(2390), + [anon_sym_yield] = ACTIONS(2390), + [anon_sym_move] = ACTIONS(2390), + [anon_sym_try] = ACTIONS(2390), + [sym_integer_literal] = ACTIONS(2388), + [aux_sym_string_literal_token1] = ACTIONS(2388), + [sym_char_literal] = ACTIONS(2388), + [anon_sym_true] = ACTIONS(2390), + [anon_sym_false] = ACTIONS(2390), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2390), + [sym_super] = ACTIONS(2390), + [sym_crate] = ACTIONS(2390), + [sym_metavariable] = ACTIONS(2388), + [sym__raw_string_literal_start] = ACTIONS(2388), + [sym_float_literal] = ACTIONS(2388), }, [STATE(627)] = { + [sym_attribute_item] = STATE(1412), + [sym_inner_attribute_item] = STATE(1412), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_match_pattern] = STATE(3705), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3115), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [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), + [aux_sym_match_arm_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(628)] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(2392), + [sym_identifier] = ACTIONS(2394), + [anon_sym_SEMI] = ACTIONS(2392), + [anon_sym_macro_rules_BANG] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2392), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2392), + [anon_sym_u8] = ACTIONS(2394), + [anon_sym_i8] = ACTIONS(2394), + [anon_sym_u16] = ACTIONS(2394), + [anon_sym_i16] = ACTIONS(2394), + [anon_sym_u32] = ACTIONS(2394), + [anon_sym_i32] = ACTIONS(2394), + [anon_sym_u64] = ACTIONS(2394), + [anon_sym_i64] = ACTIONS(2394), + [anon_sym_u128] = ACTIONS(2394), + [anon_sym_i128] = ACTIONS(2394), + [anon_sym_isize] = ACTIONS(2394), + [anon_sym_usize] = ACTIONS(2394), + [anon_sym_f32] = ACTIONS(2394), + [anon_sym_f64] = ACTIONS(2394), + [anon_sym_bool] = ACTIONS(2394), + [anon_sym_str] = ACTIONS(2394), + [anon_sym_char] = ACTIONS(2394), + [anon_sym_DASH] = ACTIONS(2392), + [anon_sym_BANG] = ACTIONS(2392), + [anon_sym_AMP] = ACTIONS(2392), + [anon_sym_PIPE] = ACTIONS(2392), + [anon_sym_LT] = ACTIONS(2392), + [anon_sym_DOT_DOT] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_POUND] = ACTIONS(2392), + [anon_sym_SQUOTE] = ACTIONS(2394), + [anon_sym_async] = ACTIONS(2394), + [anon_sym_break] = ACTIONS(2394), + [anon_sym_const] = ACTIONS(2394), + [anon_sym_continue] = ACTIONS(2394), + [anon_sym_default] = ACTIONS(2394), + [anon_sym_enum] = ACTIONS(2394), + [anon_sym_fn] = ACTIONS(2394), + [anon_sym_for] = ACTIONS(2394), + [anon_sym_gen] = ACTIONS(2394), + [anon_sym_if] = ACTIONS(2394), + [anon_sym_impl] = ACTIONS(2394), + [anon_sym_let] = ACTIONS(2394), + [anon_sym_loop] = ACTIONS(2394), + [anon_sym_match] = ACTIONS(2394), + [anon_sym_mod] = ACTIONS(2394), + [anon_sym_pub] = ACTIONS(2394), + [anon_sym_return] = ACTIONS(2394), + [anon_sym_static] = ACTIONS(2394), + [anon_sym_struct] = ACTIONS(2394), + [anon_sym_trait] = ACTIONS(2394), + [anon_sym_type] = ACTIONS(2394), + [anon_sym_union] = ACTIONS(2394), + [anon_sym_unsafe] = ACTIONS(2394), + [anon_sym_use] = ACTIONS(2394), + [anon_sym_while] = ACTIONS(2394), + [anon_sym_extern] = ACTIONS(2394), + [anon_sym_yield] = ACTIONS(2394), + [anon_sym_move] = ACTIONS(2394), + [anon_sym_try] = ACTIONS(2394), + [sym_integer_literal] = ACTIONS(2392), + [aux_sym_string_literal_token1] = ACTIONS(2392), + [sym_char_literal] = ACTIONS(2392), + [anon_sym_true] = ACTIONS(2394), + [anon_sym_false] = ACTIONS(2394), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2394), + [sym_super] = ACTIONS(2394), + [sym_crate] = ACTIONS(2394), + [sym_metavariable] = ACTIONS(2392), + [sym__raw_string_literal_start] = ACTIONS(2392), + [sym_float_literal] = ACTIONS(2392), }, [STATE(629)] = { [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(2396), + [sym_identifier] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_macro_rules_BANG] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2396), + [anon_sym_u8] = ACTIONS(2398), + [anon_sym_i8] = ACTIONS(2398), + [anon_sym_u16] = ACTIONS(2398), + [anon_sym_i16] = ACTIONS(2398), + [anon_sym_u32] = ACTIONS(2398), + [anon_sym_i32] = ACTIONS(2398), + [anon_sym_u64] = ACTIONS(2398), + [anon_sym_i64] = ACTIONS(2398), + [anon_sym_u128] = ACTIONS(2398), + [anon_sym_i128] = ACTIONS(2398), + [anon_sym_isize] = ACTIONS(2398), + [anon_sym_usize] = ACTIONS(2398), + [anon_sym_f32] = ACTIONS(2398), + [anon_sym_f64] = ACTIONS(2398), + [anon_sym_bool] = ACTIONS(2398), + [anon_sym_str] = ACTIONS(2398), + [anon_sym_char] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_DOT_DOT] = ACTIONS(2396), + [anon_sym_COLON_COLON] = ACTIONS(2396), + [anon_sym_POUND] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2398), + [anon_sym_async] = ACTIONS(2398), + [anon_sym_break] = ACTIONS(2398), + [anon_sym_const] = ACTIONS(2398), + [anon_sym_continue] = ACTIONS(2398), + [anon_sym_default] = ACTIONS(2398), + [anon_sym_enum] = ACTIONS(2398), + [anon_sym_fn] = ACTIONS(2398), + [anon_sym_for] = ACTIONS(2398), + [anon_sym_gen] = ACTIONS(2398), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_impl] = ACTIONS(2398), + [anon_sym_let] = ACTIONS(2398), + [anon_sym_loop] = ACTIONS(2398), + [anon_sym_match] = ACTIONS(2398), + [anon_sym_mod] = ACTIONS(2398), + [anon_sym_pub] = ACTIONS(2398), + [anon_sym_return] = ACTIONS(2398), + [anon_sym_static] = ACTIONS(2398), + [anon_sym_struct] = ACTIONS(2398), + [anon_sym_trait] = ACTIONS(2398), + [anon_sym_type] = ACTIONS(2398), + [anon_sym_union] = ACTIONS(2398), + [anon_sym_unsafe] = ACTIONS(2398), + [anon_sym_use] = ACTIONS(2398), + [anon_sym_while] = ACTIONS(2398), + [anon_sym_extern] = ACTIONS(2398), + [anon_sym_yield] = ACTIONS(2398), + [anon_sym_move] = ACTIONS(2398), + [anon_sym_try] = ACTIONS(2398), + [sym_integer_literal] = ACTIONS(2396), + [aux_sym_string_literal_token1] = ACTIONS(2396), + [sym_char_literal] = ACTIONS(2396), + [anon_sym_true] = ACTIONS(2398), + [anon_sym_false] = ACTIONS(2398), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2398), + [sym_super] = ACTIONS(2398), + [sym_crate] = ACTIONS(2398), + [sym_metavariable] = ACTIONS(2396), + [sym__raw_string_literal_start] = ACTIONS(2396), + [sym_float_literal] = ACTIONS(2396), }, [STATE(630)] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(2400), + [sym_identifier] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2400), + [anon_sym_macro_rules_BANG] = ACTIONS(2400), + [anon_sym_LPAREN] = ACTIONS(2400), + [anon_sym_LBRACK] = ACTIONS(2400), + [anon_sym_LBRACE] = ACTIONS(2400), + [anon_sym_RBRACE] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2400), + [anon_sym_u8] = ACTIONS(2402), + [anon_sym_i8] = ACTIONS(2402), + [anon_sym_u16] = ACTIONS(2402), + [anon_sym_i16] = ACTIONS(2402), + [anon_sym_u32] = ACTIONS(2402), + [anon_sym_i32] = ACTIONS(2402), + [anon_sym_u64] = ACTIONS(2402), + [anon_sym_i64] = ACTIONS(2402), + [anon_sym_u128] = ACTIONS(2402), + [anon_sym_i128] = ACTIONS(2402), + [anon_sym_isize] = ACTIONS(2402), + [anon_sym_usize] = ACTIONS(2402), + [anon_sym_f32] = ACTIONS(2402), + [anon_sym_f64] = ACTIONS(2402), + [anon_sym_bool] = ACTIONS(2402), + [anon_sym_str] = ACTIONS(2402), + [anon_sym_char] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2400), + [anon_sym_BANG] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2400), + [anon_sym_PIPE] = ACTIONS(2400), + [anon_sym_LT] = ACTIONS(2400), + [anon_sym_DOT_DOT] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_POUND] = ACTIONS(2400), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [anon_sym_fn] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_gen] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_impl] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_mod] = ACTIONS(2402), + [anon_sym_pub] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_struct] = ACTIONS(2402), + [anon_sym_trait] = ACTIONS(2402), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_union] = ACTIONS(2402), + [anon_sym_unsafe] = ACTIONS(2402), + [anon_sym_use] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym_yield] = ACTIONS(2402), + [anon_sym_move] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2402), + [sym_integer_literal] = ACTIONS(2400), + [aux_sym_string_literal_token1] = ACTIONS(2400), + [sym_char_literal] = ACTIONS(2400), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2402), + [sym_super] = ACTIONS(2402), + [sym_crate] = ACTIONS(2402), + [sym_metavariable] = ACTIONS(2400), + [sym__raw_string_literal_start] = ACTIONS(2400), + [sym_float_literal] = ACTIONS(2400), }, [STATE(631)] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_identifier] = ACTIONS(1429), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_macro_rules_BANG] = ACTIONS(1427), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_STAR] = ACTIONS(1427), + [anon_sym_u8] = ACTIONS(1429), + [anon_sym_i8] = ACTIONS(1429), + [anon_sym_u16] = ACTIONS(1429), + [anon_sym_i16] = ACTIONS(1429), + [anon_sym_u32] = ACTIONS(1429), + [anon_sym_i32] = ACTIONS(1429), + [anon_sym_u64] = ACTIONS(1429), + [anon_sym_i64] = ACTIONS(1429), + [anon_sym_u128] = ACTIONS(1429), + [anon_sym_i128] = ACTIONS(1429), + [anon_sym_isize] = ACTIONS(1429), + [anon_sym_usize] = ACTIONS(1429), + [anon_sym_f32] = ACTIONS(1429), + [anon_sym_f64] = ACTIONS(1429), + [anon_sym_bool] = ACTIONS(1429), + [anon_sym_str] = ACTIONS(1429), + [anon_sym_char] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1427), + [anon_sym_LT] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_async] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(1429), + [anon_sym_for] = ACTIONS(1429), + [anon_sym_gen] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(1429), + [anon_sym_impl] = ACTIONS(1429), + [anon_sym_let] = ACTIONS(1429), + [anon_sym_loop] = ACTIONS(1429), + [anon_sym_match] = ACTIONS(1429), + [anon_sym_mod] = ACTIONS(1429), + [anon_sym_pub] = ACTIONS(1429), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_static] = ACTIONS(1429), + [anon_sym_struct] = ACTIONS(1429), + [anon_sym_trait] = ACTIONS(1429), + [anon_sym_type] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_unsafe] = ACTIONS(1429), + [anon_sym_use] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(1429), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(1429), + [anon_sym_move] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1429), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1427), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1429), + [anon_sym_false] = ACTIONS(1429), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1429), + [sym_super] = ACTIONS(1429), + [sym_crate] = ACTIONS(1429), + [sym_metavariable] = ACTIONS(1427), + [sym__raw_string_literal_start] = ACTIONS(1427), + [sym_float_literal] = ACTIONS(1427), }, [STATE(632)] = { [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(2404), + [sym_identifier] = ACTIONS(2406), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_macro_rules_BANG] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_u8] = ACTIONS(2406), + [anon_sym_i8] = ACTIONS(2406), + [anon_sym_u16] = ACTIONS(2406), + [anon_sym_i16] = ACTIONS(2406), + [anon_sym_u32] = ACTIONS(2406), + [anon_sym_i32] = ACTIONS(2406), + [anon_sym_u64] = ACTIONS(2406), + [anon_sym_i64] = ACTIONS(2406), + [anon_sym_u128] = ACTIONS(2406), + [anon_sym_i128] = ACTIONS(2406), + [anon_sym_isize] = ACTIONS(2406), + [anon_sym_usize] = ACTIONS(2406), + [anon_sym_f32] = ACTIONS(2406), + [anon_sym_f64] = ACTIONS(2406), + [anon_sym_bool] = ACTIONS(2406), + [anon_sym_str] = ACTIONS(2406), + [anon_sym_char] = ACTIONS(2406), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_DOT_DOT] = ACTIONS(2404), + [anon_sym_COLON_COLON] = ACTIONS(2404), + [anon_sym_POUND] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2406), + [anon_sym_async] = ACTIONS(2406), + [anon_sym_break] = ACTIONS(2406), + [anon_sym_const] = ACTIONS(2406), + [anon_sym_continue] = ACTIONS(2406), + [anon_sym_default] = ACTIONS(2406), + [anon_sym_enum] = ACTIONS(2406), + [anon_sym_fn] = ACTIONS(2406), + [anon_sym_for] = ACTIONS(2406), + [anon_sym_gen] = ACTIONS(2406), + [anon_sym_if] = ACTIONS(2406), + [anon_sym_impl] = ACTIONS(2406), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_loop] = ACTIONS(2406), + [anon_sym_match] = ACTIONS(2406), + [anon_sym_mod] = ACTIONS(2406), + [anon_sym_pub] = ACTIONS(2406), + [anon_sym_return] = ACTIONS(2406), + [anon_sym_static] = ACTIONS(2406), + [anon_sym_struct] = ACTIONS(2406), + [anon_sym_trait] = ACTIONS(2406), + [anon_sym_type] = ACTIONS(2406), + [anon_sym_union] = ACTIONS(2406), + [anon_sym_unsafe] = ACTIONS(2406), + [anon_sym_use] = ACTIONS(2406), + [anon_sym_while] = ACTIONS(2406), + [anon_sym_extern] = ACTIONS(2406), + [anon_sym_yield] = ACTIONS(2406), + [anon_sym_move] = ACTIONS(2406), + [anon_sym_try] = ACTIONS(2406), + [sym_integer_literal] = ACTIONS(2404), + [aux_sym_string_literal_token1] = ACTIONS(2404), + [sym_char_literal] = ACTIONS(2404), + [anon_sym_true] = ACTIONS(2406), + [anon_sym_false] = ACTIONS(2406), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2406), + [sym_super] = ACTIONS(2406), + [sym_crate] = ACTIONS(2406), + [sym_metavariable] = ACTIONS(2404), + [sym__raw_string_literal_start] = ACTIONS(2404), + [sym_float_literal] = ACTIONS(2404), }, [STATE(633)] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2408), + [anon_sym_macro_rules_BANG] = ACTIONS(2408), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_LBRACK] = ACTIONS(2408), + [anon_sym_LBRACE] = ACTIONS(2408), + [anon_sym_RBRACE] = ACTIONS(2408), + [anon_sym_STAR] = ACTIONS(2408), + [anon_sym_u8] = ACTIONS(2410), + [anon_sym_i8] = ACTIONS(2410), + [anon_sym_u16] = ACTIONS(2410), + [anon_sym_i16] = ACTIONS(2410), + [anon_sym_u32] = ACTIONS(2410), + [anon_sym_i32] = ACTIONS(2410), + [anon_sym_u64] = ACTIONS(2410), + [anon_sym_i64] = ACTIONS(2410), + [anon_sym_u128] = ACTIONS(2410), + [anon_sym_i128] = ACTIONS(2410), + [anon_sym_isize] = ACTIONS(2410), + [anon_sym_usize] = ACTIONS(2410), + [anon_sym_f32] = ACTIONS(2410), + [anon_sym_f64] = ACTIONS(2410), + [anon_sym_bool] = ACTIONS(2410), + [anon_sym_str] = ACTIONS(2410), + [anon_sym_char] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2408), + [anon_sym_BANG] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2408), + [anon_sym_PIPE] = ACTIONS(2408), + [anon_sym_LT] = ACTIONS(2408), + [anon_sym_DOT_DOT] = ACTIONS(2408), + [anon_sym_COLON_COLON] = ACTIONS(2408), + [anon_sym_POUND] = ACTIONS(2408), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_default] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [anon_sym_fn] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_gen] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_impl] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_loop] = ACTIONS(2410), + [anon_sym_match] = ACTIONS(2410), + [anon_sym_mod] = ACTIONS(2410), + [anon_sym_pub] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_struct] = ACTIONS(2410), + [anon_sym_trait] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_union] = ACTIONS(2410), + [anon_sym_unsafe] = ACTIONS(2410), + [anon_sym_use] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_extern] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_move] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [sym_integer_literal] = ACTIONS(2408), + [aux_sym_string_literal_token1] = ACTIONS(2408), + [sym_char_literal] = ACTIONS(2408), + [anon_sym_true] = ACTIONS(2410), + [anon_sym_false] = ACTIONS(2410), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_crate] = ACTIONS(2410), + [sym_metavariable] = ACTIONS(2408), + [sym__raw_string_literal_start] = ACTIONS(2408), + [sym_float_literal] = ACTIONS(2408), }, [STATE(634)] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(2412), + [sym_identifier] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2412), + [anon_sym_macro_rules_BANG] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2412), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_u8] = ACTIONS(2414), + [anon_sym_i8] = ACTIONS(2414), + [anon_sym_u16] = ACTIONS(2414), + [anon_sym_i16] = ACTIONS(2414), + [anon_sym_u32] = ACTIONS(2414), + [anon_sym_i32] = ACTIONS(2414), + [anon_sym_u64] = ACTIONS(2414), + [anon_sym_i64] = ACTIONS(2414), + [anon_sym_u128] = ACTIONS(2414), + [anon_sym_i128] = ACTIONS(2414), + [anon_sym_isize] = ACTIONS(2414), + [anon_sym_usize] = ACTIONS(2414), + [anon_sym_f32] = ACTIONS(2414), + [anon_sym_f64] = ACTIONS(2414), + [anon_sym_bool] = ACTIONS(2414), + [anon_sym_str] = ACTIONS(2414), + [anon_sym_char] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_BANG] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_DOT_DOT] = ACTIONS(2412), + [anon_sym_COLON_COLON] = ACTIONS(2412), + [anon_sym_POUND] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [anon_sym_fn] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_gen] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_impl] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_loop] = ACTIONS(2414), + [anon_sym_match] = ACTIONS(2414), + [anon_sym_mod] = ACTIONS(2414), + [anon_sym_pub] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_struct] = ACTIONS(2414), + [anon_sym_trait] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_union] = ACTIONS(2414), + [anon_sym_unsafe] = ACTIONS(2414), + [anon_sym_use] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_extern] = ACTIONS(2414), + [anon_sym_yield] = ACTIONS(2414), + [anon_sym_move] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2414), + [sym_integer_literal] = ACTIONS(2412), + [aux_sym_string_literal_token1] = ACTIONS(2412), + [sym_char_literal] = ACTIONS(2412), + [anon_sym_true] = ACTIONS(2414), + [anon_sym_false] = ACTIONS(2414), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2414), + [sym_super] = ACTIONS(2414), + [sym_crate] = ACTIONS(2414), + [sym_metavariable] = ACTIONS(2412), + [sym__raw_string_literal_start] = ACTIONS(2412), + [sym_float_literal] = ACTIONS(2412), }, [STATE(635)] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(2416), + [sym_identifier] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2416), + [anon_sym_macro_rules_BANG] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_LBRACK] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_RBRACE] = ACTIONS(2416), + [anon_sym_STAR] = ACTIONS(2416), + [anon_sym_u8] = ACTIONS(2418), + [anon_sym_i8] = ACTIONS(2418), + [anon_sym_u16] = ACTIONS(2418), + [anon_sym_i16] = ACTIONS(2418), + [anon_sym_u32] = ACTIONS(2418), + [anon_sym_i32] = ACTIONS(2418), + [anon_sym_u64] = ACTIONS(2418), + [anon_sym_i64] = ACTIONS(2418), + [anon_sym_u128] = ACTIONS(2418), + [anon_sym_i128] = ACTIONS(2418), + [anon_sym_isize] = ACTIONS(2418), + [anon_sym_usize] = ACTIONS(2418), + [anon_sym_f32] = ACTIONS(2418), + [anon_sym_f64] = ACTIONS(2418), + [anon_sym_bool] = ACTIONS(2418), + [anon_sym_str] = ACTIONS(2418), + [anon_sym_char] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_BANG] = ACTIONS(2416), + [anon_sym_AMP] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(2416), + [anon_sym_LT] = ACTIONS(2416), + [anon_sym_DOT_DOT] = ACTIONS(2416), + [anon_sym_COLON_COLON] = ACTIONS(2416), + [anon_sym_POUND] = ACTIONS(2416), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [anon_sym_fn] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_gen] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_impl] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_loop] = ACTIONS(2418), + [anon_sym_match] = ACTIONS(2418), + [anon_sym_mod] = ACTIONS(2418), + [anon_sym_pub] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_struct] = ACTIONS(2418), + [anon_sym_trait] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_union] = ACTIONS(2418), + [anon_sym_unsafe] = ACTIONS(2418), + [anon_sym_use] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_extern] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_move] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [sym_integer_literal] = ACTIONS(2416), + [aux_sym_string_literal_token1] = ACTIONS(2416), + [sym_char_literal] = ACTIONS(2416), + [anon_sym_true] = ACTIONS(2418), + [anon_sym_false] = ACTIONS(2418), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_crate] = ACTIONS(2418), + [sym_metavariable] = ACTIONS(2416), + [sym__raw_string_literal_start] = ACTIONS(2416), + [sym_float_literal] = ACTIONS(2416), }, [STATE(636)] = { [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(2420), + [sym_identifier] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2420), + [anon_sym_macro_rules_BANG] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_u8] = ACTIONS(2422), + [anon_sym_i8] = ACTIONS(2422), + [anon_sym_u16] = ACTIONS(2422), + [anon_sym_i16] = ACTIONS(2422), + [anon_sym_u32] = ACTIONS(2422), + [anon_sym_i32] = ACTIONS(2422), + [anon_sym_u64] = ACTIONS(2422), + [anon_sym_i64] = ACTIONS(2422), + [anon_sym_u128] = ACTIONS(2422), + [anon_sym_i128] = ACTIONS(2422), + [anon_sym_isize] = ACTIONS(2422), + [anon_sym_usize] = ACTIONS(2422), + [anon_sym_f32] = ACTIONS(2422), + [anon_sym_f64] = ACTIONS(2422), + [anon_sym_bool] = ACTIONS(2422), + [anon_sym_str] = ACTIONS(2422), + [anon_sym_char] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_BANG] = ACTIONS(2420), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_DOT_DOT] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(2420), + [anon_sym_POUND] = ACTIONS(2420), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_default] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [anon_sym_fn] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_gen] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_impl] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_loop] = ACTIONS(2422), + [anon_sym_match] = ACTIONS(2422), + [anon_sym_mod] = ACTIONS(2422), + [anon_sym_pub] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_struct] = ACTIONS(2422), + [anon_sym_trait] = ACTIONS(2422), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_union] = ACTIONS(2422), + [anon_sym_unsafe] = ACTIONS(2422), + [anon_sym_use] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_extern] = ACTIONS(2422), + [anon_sym_yield] = ACTIONS(2422), + [anon_sym_move] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2422), + [sym_integer_literal] = ACTIONS(2420), + [aux_sym_string_literal_token1] = ACTIONS(2420), + [sym_char_literal] = ACTIONS(2420), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2422), + [sym_super] = ACTIONS(2422), + [sym_crate] = ACTIONS(2422), + [sym_metavariable] = ACTIONS(2420), + [sym__raw_string_literal_start] = ACTIONS(2420), + [sym_float_literal] = ACTIONS(2420), }, [STATE(637)] = { [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(2424), + [sym_identifier] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_macro_rules_BANG] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2424), + [anon_sym_u8] = ACTIONS(2426), + [anon_sym_i8] = ACTIONS(2426), + [anon_sym_u16] = ACTIONS(2426), + [anon_sym_i16] = ACTIONS(2426), + [anon_sym_u32] = ACTIONS(2426), + [anon_sym_i32] = ACTIONS(2426), + [anon_sym_u64] = ACTIONS(2426), + [anon_sym_i64] = ACTIONS(2426), + [anon_sym_u128] = ACTIONS(2426), + [anon_sym_i128] = ACTIONS(2426), + [anon_sym_isize] = ACTIONS(2426), + [anon_sym_usize] = ACTIONS(2426), + [anon_sym_f32] = ACTIONS(2426), + [anon_sym_f64] = ACTIONS(2426), + [anon_sym_bool] = ACTIONS(2426), + [anon_sym_str] = ACTIONS(2426), + [anon_sym_char] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_BANG] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_DOT_DOT] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2424), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_break] = ACTIONS(2426), + [anon_sym_const] = ACTIONS(2426), + [anon_sym_continue] = ACTIONS(2426), + [anon_sym_default] = ACTIONS(2426), + [anon_sym_enum] = ACTIONS(2426), + [anon_sym_fn] = ACTIONS(2426), + [anon_sym_for] = ACTIONS(2426), + [anon_sym_gen] = ACTIONS(2426), + [anon_sym_if] = ACTIONS(2426), + [anon_sym_impl] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_loop] = ACTIONS(2426), + [anon_sym_match] = ACTIONS(2426), + [anon_sym_mod] = ACTIONS(2426), + [anon_sym_pub] = ACTIONS(2426), + [anon_sym_return] = ACTIONS(2426), + [anon_sym_static] = ACTIONS(2426), + [anon_sym_struct] = ACTIONS(2426), + [anon_sym_trait] = ACTIONS(2426), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_union] = ACTIONS(2426), + [anon_sym_unsafe] = ACTIONS(2426), + [anon_sym_use] = ACTIONS(2426), + [anon_sym_while] = ACTIONS(2426), + [anon_sym_extern] = ACTIONS(2426), + [anon_sym_yield] = ACTIONS(2426), + [anon_sym_move] = ACTIONS(2426), + [anon_sym_try] = ACTIONS(2426), + [sym_integer_literal] = ACTIONS(2424), + [aux_sym_string_literal_token1] = ACTIONS(2424), + [sym_char_literal] = ACTIONS(2424), + [anon_sym_true] = ACTIONS(2426), + [anon_sym_false] = ACTIONS(2426), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2426), + [sym_super] = ACTIONS(2426), + [sym_crate] = ACTIONS(2426), + [sym_metavariable] = ACTIONS(2424), + [sym__raw_string_literal_start] = ACTIONS(2424), + [sym_float_literal] = ACTIONS(2424), }, [STATE(638)] = { [sym_line_comment] = STATE(638), [sym_block_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(2428), + [sym_identifier] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2428), + [anon_sym_macro_rules_BANG] = ACTIONS(2428), + [anon_sym_LPAREN] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_LBRACE] = ACTIONS(2428), + [anon_sym_RBRACE] = ACTIONS(2428), + [anon_sym_STAR] = ACTIONS(2428), + [anon_sym_u8] = ACTIONS(2430), + [anon_sym_i8] = ACTIONS(2430), + [anon_sym_u16] = ACTIONS(2430), + [anon_sym_i16] = ACTIONS(2430), + [anon_sym_u32] = ACTIONS(2430), + [anon_sym_i32] = ACTIONS(2430), + [anon_sym_u64] = ACTIONS(2430), + [anon_sym_i64] = ACTIONS(2430), + [anon_sym_u128] = ACTIONS(2430), + [anon_sym_i128] = ACTIONS(2430), + [anon_sym_isize] = ACTIONS(2430), + [anon_sym_usize] = ACTIONS(2430), + [anon_sym_f32] = ACTIONS(2430), + [anon_sym_f64] = ACTIONS(2430), + [anon_sym_bool] = ACTIONS(2430), + [anon_sym_str] = ACTIONS(2430), + [anon_sym_char] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_BANG] = ACTIONS(2428), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_PIPE] = ACTIONS(2428), + [anon_sym_LT] = ACTIONS(2428), + [anon_sym_DOT_DOT] = ACTIONS(2428), + [anon_sym_COLON_COLON] = ACTIONS(2428), + [anon_sym_POUND] = ACTIONS(2428), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_default] = ACTIONS(2430), + [anon_sym_enum] = ACTIONS(2430), + [anon_sym_fn] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_gen] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_impl] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_loop] = ACTIONS(2430), + [anon_sym_match] = ACTIONS(2430), + [anon_sym_mod] = ACTIONS(2430), + [anon_sym_pub] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2430), + [anon_sym_struct] = ACTIONS(2430), + [anon_sym_trait] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_union] = ACTIONS(2430), + [anon_sym_unsafe] = ACTIONS(2430), + [anon_sym_use] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_extern] = ACTIONS(2430), + [anon_sym_yield] = ACTIONS(2430), + [anon_sym_move] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2430), + [sym_integer_literal] = ACTIONS(2428), + [aux_sym_string_literal_token1] = ACTIONS(2428), + [sym_char_literal] = ACTIONS(2428), + [anon_sym_true] = ACTIONS(2430), + [anon_sym_false] = ACTIONS(2430), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2430), + [sym_super] = ACTIONS(2430), + [sym_crate] = ACTIONS(2430), + [sym_metavariable] = ACTIONS(2428), + [sym__raw_string_literal_start] = ACTIONS(2428), + [sym_float_literal] = ACTIONS(2428), }, [STATE(639)] = { [sym_line_comment] = STATE(639), [sym_block_comment] = STATE(639), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(2432), + [sym_identifier] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2432), + [anon_sym_macro_rules_BANG] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2432), + [anon_sym_LBRACE] = ACTIONS(2432), + [anon_sym_RBRACE] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2432), + [anon_sym_u8] = ACTIONS(2434), + [anon_sym_i8] = ACTIONS(2434), + [anon_sym_u16] = ACTIONS(2434), + [anon_sym_i16] = ACTIONS(2434), + [anon_sym_u32] = ACTIONS(2434), + [anon_sym_i32] = ACTIONS(2434), + [anon_sym_u64] = ACTIONS(2434), + [anon_sym_i64] = ACTIONS(2434), + [anon_sym_u128] = ACTIONS(2434), + [anon_sym_i128] = ACTIONS(2434), + [anon_sym_isize] = ACTIONS(2434), + [anon_sym_usize] = ACTIONS(2434), + [anon_sym_f32] = ACTIONS(2434), + [anon_sym_f64] = ACTIONS(2434), + [anon_sym_bool] = ACTIONS(2434), + [anon_sym_str] = ACTIONS(2434), + [anon_sym_char] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_BANG] = ACTIONS(2432), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_PIPE] = ACTIONS(2432), + [anon_sym_LT] = ACTIONS(2432), + [anon_sym_DOT_DOT] = ACTIONS(2432), + [anon_sym_COLON_COLON] = ACTIONS(2432), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_default] = ACTIONS(2434), + [anon_sym_enum] = ACTIONS(2434), + [anon_sym_fn] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_gen] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_impl] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_loop] = ACTIONS(2434), + [anon_sym_match] = ACTIONS(2434), + [anon_sym_mod] = ACTIONS(2434), + [anon_sym_pub] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_static] = ACTIONS(2434), + [anon_sym_struct] = ACTIONS(2434), + [anon_sym_trait] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_union] = ACTIONS(2434), + [anon_sym_unsafe] = ACTIONS(2434), + [anon_sym_use] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_extern] = ACTIONS(2434), + [anon_sym_yield] = ACTIONS(2434), + [anon_sym_move] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2434), + [sym_integer_literal] = ACTIONS(2432), + [aux_sym_string_literal_token1] = ACTIONS(2432), + [sym_char_literal] = ACTIONS(2432), + [anon_sym_true] = ACTIONS(2434), + [anon_sym_false] = ACTIONS(2434), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2434), + [sym_super] = ACTIONS(2434), + [sym_crate] = ACTIONS(2434), + [sym_metavariable] = ACTIONS(2432), + [sym__raw_string_literal_start] = ACTIONS(2432), + [sym_float_literal] = ACTIONS(2432), }, [STATE(640)] = { [sym_line_comment] = STATE(640), [sym_block_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(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), + [ts_builtin_sym_end] = ACTIONS(2436), + [sym_identifier] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2436), + [anon_sym_macro_rules_BANG] = ACTIONS(2436), + [anon_sym_LPAREN] = ACTIONS(2436), + [anon_sym_LBRACK] = ACTIONS(2436), + [anon_sym_LBRACE] = ACTIONS(2436), + [anon_sym_RBRACE] = ACTIONS(2436), + [anon_sym_STAR] = ACTIONS(2436), + [anon_sym_u8] = ACTIONS(2438), + [anon_sym_i8] = ACTIONS(2438), + [anon_sym_u16] = ACTIONS(2438), + [anon_sym_i16] = ACTIONS(2438), + [anon_sym_u32] = ACTIONS(2438), + [anon_sym_i32] = ACTIONS(2438), + [anon_sym_u64] = ACTIONS(2438), + [anon_sym_i64] = ACTIONS(2438), + [anon_sym_u128] = ACTIONS(2438), + [anon_sym_i128] = ACTIONS(2438), + [anon_sym_isize] = ACTIONS(2438), + [anon_sym_usize] = ACTIONS(2438), + [anon_sym_f32] = ACTIONS(2438), + [anon_sym_f64] = ACTIONS(2438), + [anon_sym_bool] = ACTIONS(2438), + [anon_sym_str] = ACTIONS(2438), + [anon_sym_char] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2436), + [anon_sym_BANG] = ACTIONS(2436), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE] = ACTIONS(2436), + [anon_sym_LT] = ACTIONS(2436), + [anon_sym_DOT_DOT] = ACTIONS(2436), + [anon_sym_COLON_COLON] = ACTIONS(2436), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_default] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2438), + [anon_sym_fn] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_gen] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_impl] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_loop] = ACTIONS(2438), + [anon_sym_match] = ACTIONS(2438), + [anon_sym_mod] = ACTIONS(2438), + [anon_sym_pub] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_static] = ACTIONS(2438), + [anon_sym_struct] = ACTIONS(2438), + [anon_sym_trait] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_union] = ACTIONS(2438), + [anon_sym_unsafe] = ACTIONS(2438), + [anon_sym_use] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_extern] = ACTIONS(2438), + [anon_sym_yield] = ACTIONS(2438), + [anon_sym_move] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [sym_integer_literal] = ACTIONS(2436), + [aux_sym_string_literal_token1] = ACTIONS(2436), + [sym_char_literal] = ACTIONS(2436), + [anon_sym_true] = ACTIONS(2438), + [anon_sym_false] = ACTIONS(2438), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2438), + [sym_super] = ACTIONS(2438), + [sym_crate] = ACTIONS(2438), + [sym_metavariable] = ACTIONS(2436), + [sym__raw_string_literal_start] = ACTIONS(2436), + [sym_float_literal] = ACTIONS(2436), }, [STATE(641)] = { - [sym_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(2229), - [sym_visibility_modifier] = STATE(1997), - [sym_bracketed_type] = STATE(3441), - [sym_generic_type_with_turbofish] = STATE(3467), - [sym_macro_invocation] = STATE(1090), - [sym_scoped_identifier] = STATE(3306), [sym_line_comment] = STATE(641), [sym_block_comment] = STATE(641), - [aux_sym_declaration_list_repeat1] = STATE(641), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [ts_builtin_sym_end] = ACTIONS(2440), + [sym_identifier] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_macro_rules_BANG] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_u8] = ACTIONS(2442), + [anon_sym_i8] = ACTIONS(2442), + [anon_sym_u16] = ACTIONS(2442), + [anon_sym_i16] = ACTIONS(2442), + [anon_sym_u32] = ACTIONS(2442), + [anon_sym_i32] = ACTIONS(2442), + [anon_sym_u64] = ACTIONS(2442), + [anon_sym_i64] = ACTIONS(2442), + [anon_sym_u128] = ACTIONS(2442), + [anon_sym_i128] = ACTIONS(2442), + [anon_sym_isize] = ACTIONS(2442), + [anon_sym_usize] = ACTIONS(2442), + [anon_sym_f32] = ACTIONS(2442), + [anon_sym_f64] = ACTIONS(2442), + [anon_sym_bool] = ACTIONS(2442), + [anon_sym_str] = ACTIONS(2442), + [anon_sym_char] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_DOT_DOT] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2440), + [anon_sym_POUND] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_async] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_default] = ACTIONS(2442), + [anon_sym_enum] = ACTIONS(2442), + [anon_sym_fn] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_gen] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_impl] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_loop] = ACTIONS(2442), + [anon_sym_match] = ACTIONS(2442), + [anon_sym_mod] = ACTIONS(2442), + [anon_sym_pub] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_static] = ACTIONS(2442), + [anon_sym_struct] = ACTIONS(2442), + [anon_sym_trait] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2442), + [anon_sym_union] = ACTIONS(2442), + [anon_sym_unsafe] = ACTIONS(2442), + [anon_sym_use] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_extern] = ACTIONS(2442), + [anon_sym_yield] = ACTIONS(2442), + [anon_sym_move] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2442), + [sym_integer_literal] = ACTIONS(2440), + [aux_sym_string_literal_token1] = ACTIONS(2440), + [sym_char_literal] = ACTIONS(2440), + [anon_sym_true] = ACTIONS(2442), + [anon_sym_false] = ACTIONS(2442), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2442), + [sym_super] = ACTIONS(2442), + [sym_crate] = ACTIONS(2442), + [sym_metavariable] = ACTIONS(2440), + [sym__raw_string_literal_start] = ACTIONS(2440), + [sym_float_literal] = ACTIONS(2440), }, [STATE(642)] = { [sym_line_comment] = STATE(642), [sym_block_comment] = STATE(642), + [ts_builtin_sym_end] = ACTIONS(2444), + [sym_identifier] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2444), + [anon_sym_macro_rules_BANG] = ACTIONS(2444), + [anon_sym_LPAREN] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2444), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(2444), + [anon_sym_STAR] = ACTIONS(2444), + [anon_sym_u8] = ACTIONS(2446), + [anon_sym_i8] = ACTIONS(2446), + [anon_sym_u16] = ACTIONS(2446), + [anon_sym_i16] = ACTIONS(2446), + [anon_sym_u32] = ACTIONS(2446), + [anon_sym_i32] = ACTIONS(2446), + [anon_sym_u64] = ACTIONS(2446), + [anon_sym_i64] = ACTIONS(2446), + [anon_sym_u128] = ACTIONS(2446), + [anon_sym_i128] = ACTIONS(2446), + [anon_sym_isize] = ACTIONS(2446), + [anon_sym_usize] = ACTIONS(2446), + [anon_sym_f32] = ACTIONS(2446), + [anon_sym_f64] = ACTIONS(2446), + [anon_sym_bool] = ACTIONS(2446), + [anon_sym_str] = ACTIONS(2446), + [anon_sym_char] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(2444), + [anon_sym_LT] = ACTIONS(2444), + [anon_sym_DOT_DOT] = ACTIONS(2444), + [anon_sym_COLON_COLON] = ACTIONS(2444), + [anon_sym_POUND] = ACTIONS(2444), + [anon_sym_SQUOTE] = ACTIONS(2446), + [anon_sym_async] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_fn] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_gen] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_impl] = ACTIONS(2446), + [anon_sym_let] = ACTIONS(2446), + [anon_sym_loop] = ACTIONS(2446), + [anon_sym_match] = ACTIONS(2446), + [anon_sym_mod] = ACTIONS(2446), + [anon_sym_pub] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_trait] = ACTIONS(2446), + [anon_sym_type] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_unsafe] = ACTIONS(2446), + [anon_sym_use] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym_yield] = ACTIONS(2446), + [anon_sym_move] = ACTIONS(2446), + [anon_sym_try] = ACTIONS(2446), + [sym_integer_literal] = ACTIONS(2444), + [aux_sym_string_literal_token1] = ACTIONS(2444), + [sym_char_literal] = ACTIONS(2444), + [anon_sym_true] = ACTIONS(2446), + [anon_sym_false] = ACTIONS(2446), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2446), + [sym_super] = ACTIONS(2446), + [sym_crate] = ACTIONS(2446), + [sym_metavariable] = ACTIONS(2444), + [sym__raw_string_literal_start] = ACTIONS(2444), + [sym_float_literal] = ACTIONS(2444), + }, + [STATE(643)] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), + [ts_builtin_sym_end] = ACTIONS(2448), + [sym_identifier] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_macro_rules_BANG] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_u8] = ACTIONS(2450), + [anon_sym_i8] = ACTIONS(2450), + [anon_sym_u16] = ACTIONS(2450), + [anon_sym_i16] = ACTIONS(2450), + [anon_sym_u32] = ACTIONS(2450), + [anon_sym_i32] = ACTIONS(2450), + [anon_sym_u64] = ACTIONS(2450), + [anon_sym_i64] = ACTIONS(2450), + [anon_sym_u128] = ACTIONS(2450), + [anon_sym_i128] = ACTIONS(2450), + [anon_sym_isize] = ACTIONS(2450), + [anon_sym_usize] = ACTIONS(2450), + [anon_sym_f32] = ACTIONS(2450), + [anon_sym_f64] = ACTIONS(2450), + [anon_sym_bool] = ACTIONS(2450), + [anon_sym_str] = ACTIONS(2450), + [anon_sym_char] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_DOT_DOT] = ACTIONS(2448), + [anon_sym_COLON_COLON] = ACTIONS(2448), + [anon_sym_POUND] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2450), + [anon_sym_async] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_fn] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_gen] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_impl] = ACTIONS(2450), + [anon_sym_let] = ACTIONS(2450), + [anon_sym_loop] = ACTIONS(2450), + [anon_sym_match] = ACTIONS(2450), + [anon_sym_mod] = ACTIONS(2450), + [anon_sym_pub] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_trait] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(2450), + [anon_sym_use] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_move] = ACTIONS(2450), + [anon_sym_try] = ACTIONS(2450), + [sym_integer_literal] = ACTIONS(2448), + [aux_sym_string_literal_token1] = ACTIONS(2448), + [sym_char_literal] = ACTIONS(2448), + [anon_sym_true] = ACTIONS(2450), + [anon_sym_false] = ACTIONS(2450), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2450), + [sym_super] = ACTIONS(2450), + [sym_crate] = ACTIONS(2450), + [sym_metavariable] = ACTIONS(2448), + [sym__raw_string_literal_start] = ACTIONS(2448), + [sym_float_literal] = ACTIONS(2448), + }, + [STATE(644)] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), + [ts_builtin_sym_end] = ACTIONS(1435), + [sym_identifier] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_macro_rules_BANG] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_u8] = ACTIONS(1437), + [anon_sym_i8] = ACTIONS(1437), + [anon_sym_u16] = ACTIONS(1437), + [anon_sym_i16] = ACTIONS(1437), + [anon_sym_u32] = ACTIONS(1437), + [anon_sym_i32] = ACTIONS(1437), + [anon_sym_u64] = ACTIONS(1437), + [anon_sym_i64] = ACTIONS(1437), + [anon_sym_u128] = ACTIONS(1437), + [anon_sym_i128] = ACTIONS(1437), + [anon_sym_isize] = ACTIONS(1437), + [anon_sym_usize] = ACTIONS(1437), + [anon_sym_f32] = ACTIONS(1437), + [anon_sym_f64] = ACTIONS(1437), + [anon_sym_bool] = ACTIONS(1437), + [anon_sym_str] = ACTIONS(1437), + [anon_sym_char] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1437), + [anon_sym_async] = ACTIONS(1437), + [anon_sym_break] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_continue] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1437), + [anon_sym_enum] = ACTIONS(1437), + [anon_sym_fn] = ACTIONS(1437), + [anon_sym_for] = ACTIONS(1437), + [anon_sym_gen] = ACTIONS(1437), + [anon_sym_if] = ACTIONS(1437), + [anon_sym_impl] = ACTIONS(1437), + [anon_sym_let] = ACTIONS(1437), + [anon_sym_loop] = ACTIONS(1437), + [anon_sym_match] = ACTIONS(1437), + [anon_sym_mod] = ACTIONS(1437), + [anon_sym_pub] = ACTIONS(1437), + [anon_sym_return] = ACTIONS(1437), + [anon_sym_static] = ACTIONS(1437), + [anon_sym_struct] = ACTIONS(1437), + [anon_sym_trait] = ACTIONS(1437), + [anon_sym_type] = ACTIONS(1437), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_unsafe] = ACTIONS(1437), + [anon_sym_use] = ACTIONS(1437), + [anon_sym_while] = ACTIONS(1437), + [anon_sym_extern] = ACTIONS(1437), + [anon_sym_yield] = ACTIONS(1437), + [anon_sym_move] = ACTIONS(1437), + [anon_sym_try] = ACTIONS(1437), + [sym_integer_literal] = ACTIONS(1435), + [aux_sym_string_literal_token1] = ACTIONS(1435), + [sym_char_literal] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1437), + [anon_sym_false] = ACTIONS(1437), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1437), + [sym_super] = ACTIONS(1437), + [sym_crate] = ACTIONS(1437), + [sym_metavariable] = ACTIONS(1435), + [sym__raw_string_literal_start] = ACTIONS(1435), + [sym_float_literal] = ACTIONS(1435), + }, + [STATE(645)] = { + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), + [ts_builtin_sym_end] = ACTIONS(2452), + [sym_identifier] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym_macro_rules_BANG] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_RBRACE] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_u8] = ACTIONS(2454), + [anon_sym_i8] = ACTIONS(2454), + [anon_sym_u16] = ACTIONS(2454), + [anon_sym_i16] = ACTIONS(2454), + [anon_sym_u32] = ACTIONS(2454), + [anon_sym_i32] = ACTIONS(2454), + [anon_sym_u64] = ACTIONS(2454), + [anon_sym_i64] = ACTIONS(2454), + [anon_sym_u128] = ACTIONS(2454), + [anon_sym_i128] = ACTIONS(2454), + [anon_sym_isize] = ACTIONS(2454), + [anon_sym_usize] = ACTIONS(2454), + [anon_sym_f32] = ACTIONS(2454), + [anon_sym_f64] = ACTIONS(2454), + [anon_sym_bool] = ACTIONS(2454), + [anon_sym_str] = ACTIONS(2454), + [anon_sym_char] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_DOT_DOT] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(2452), + [anon_sym_POUND] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_fn] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_gen] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_impl] = ACTIONS(2454), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_loop] = ACTIONS(2454), + [anon_sym_match] = ACTIONS(2454), + [anon_sym_mod] = ACTIONS(2454), + [anon_sym_pub] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_trait] = ACTIONS(2454), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_unsafe] = ACTIONS(2454), + [anon_sym_use] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym_yield] = ACTIONS(2454), + [anon_sym_move] = ACTIONS(2454), + [anon_sym_try] = ACTIONS(2454), + [sym_integer_literal] = ACTIONS(2452), + [aux_sym_string_literal_token1] = ACTIONS(2452), + [sym_char_literal] = ACTIONS(2452), + [anon_sym_true] = ACTIONS(2454), + [anon_sym_false] = ACTIONS(2454), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2454), + [sym_super] = ACTIONS(2454), + [sym_crate] = ACTIONS(2454), + [sym_metavariable] = ACTIONS(2452), + [sym__raw_string_literal_start] = ACTIONS(2452), + [sym_float_literal] = ACTIONS(2452), + }, + [STATE(646)] = { + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), + [ts_builtin_sym_end] = ACTIONS(2456), + [sym_identifier] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2456), + [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), + }, + [STATE(647)] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(1431), + [sym_identifier] = ACTIONS(1433), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_macro_rules_BANG] = ACTIONS(1431), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1431), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u128] = ACTIONS(1433), + [anon_sym_i128] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_str] = ACTIONS(1433), + [anon_sym_char] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_COLON_COLON] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_async] = ACTIONS(1433), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_const] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_default] = ACTIONS(1433), + [anon_sym_enum] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_gen] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_impl] = ACTIONS(1433), + [anon_sym_let] = ACTIONS(1433), + [anon_sym_loop] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_mod] = ACTIONS(1433), + [anon_sym_pub] = ACTIONS(1433), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_static] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1433), + [anon_sym_trait] = ACTIONS(1433), + [anon_sym_type] = ACTIONS(1433), + [anon_sym_union] = ACTIONS(1433), + [anon_sym_unsafe] = ACTIONS(1433), + [anon_sym_use] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_extern] = ACTIONS(1433), + [anon_sym_yield] = ACTIONS(1433), + [anon_sym_move] = ACTIONS(1433), + [anon_sym_try] = ACTIONS(1433), + [sym_integer_literal] = ACTIONS(1431), + [aux_sym_string_literal_token1] = ACTIONS(1431), + [sym_char_literal] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1433), + [sym_super] = ACTIONS(1433), + [sym_crate] = ACTIONS(1433), + [sym_metavariable] = ACTIONS(1431), + [sym__raw_string_literal_start] = ACTIONS(1431), + [sym_float_literal] = ACTIONS(1431), + }, + [STATE(648)] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), + [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), + }, + [STATE(649)] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(1419), + [sym_identifier] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_macro_rules_BANG] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_u8] = ACTIONS(1421), + [anon_sym_i8] = ACTIONS(1421), + [anon_sym_u16] = ACTIONS(1421), + [anon_sym_i16] = ACTIONS(1421), + [anon_sym_u32] = ACTIONS(1421), + [anon_sym_i32] = ACTIONS(1421), + [anon_sym_u64] = ACTIONS(1421), + [anon_sym_i64] = ACTIONS(1421), + [anon_sym_u128] = ACTIONS(1421), + [anon_sym_i128] = ACTIONS(1421), + [anon_sym_isize] = ACTIONS(1421), + [anon_sym_usize] = ACTIONS(1421), + [anon_sym_f32] = ACTIONS(1421), + [anon_sym_f64] = ACTIONS(1421), + [anon_sym_bool] = ACTIONS(1421), + [anon_sym_str] = ACTIONS(1421), + [anon_sym_char] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1419), + [anon_sym_SQUOTE] = ACTIONS(1421), + [anon_sym_async] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1421), + [anon_sym_const] = ACTIONS(1421), + [anon_sym_continue] = ACTIONS(1421), + [anon_sym_default] = ACTIONS(1421), + [anon_sym_enum] = ACTIONS(1421), + [anon_sym_fn] = ACTIONS(1421), + [anon_sym_for] = ACTIONS(1421), + [anon_sym_gen] = ACTIONS(1421), + [anon_sym_if] = ACTIONS(1421), + [anon_sym_impl] = ACTIONS(1421), + [anon_sym_let] = ACTIONS(1421), + [anon_sym_loop] = ACTIONS(1421), + [anon_sym_match] = ACTIONS(1421), + [anon_sym_mod] = ACTIONS(1421), + [anon_sym_pub] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1421), + [anon_sym_static] = ACTIONS(1421), + [anon_sym_struct] = ACTIONS(1421), + [anon_sym_trait] = ACTIONS(1421), + [anon_sym_type] = ACTIONS(1421), + [anon_sym_union] = ACTIONS(1421), + [anon_sym_unsafe] = ACTIONS(1421), + [anon_sym_use] = ACTIONS(1421), + [anon_sym_while] = ACTIONS(1421), + [anon_sym_extern] = ACTIONS(1421), + [anon_sym_yield] = ACTIONS(1421), + [anon_sym_move] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1421), + [sym_integer_literal] = ACTIONS(1419), + [aux_sym_string_literal_token1] = ACTIONS(1419), + [sym_char_literal] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(1421), + [anon_sym_false] = ACTIONS(1421), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1421), + [sym_super] = ACTIONS(1421), + [sym_crate] = ACTIONS(1421), + [sym_metavariable] = ACTIONS(1419), + [sym__raw_string_literal_start] = ACTIONS(1419), + [sym_float_literal] = ACTIONS(1419), + }, + [STATE(650)] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(1423), + [sym_identifier] = ACTIONS(1425), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_macro_rules_BANG] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_u8] = ACTIONS(1425), + [anon_sym_i8] = ACTIONS(1425), + [anon_sym_u16] = ACTIONS(1425), + [anon_sym_i16] = ACTIONS(1425), + [anon_sym_u32] = ACTIONS(1425), + [anon_sym_i32] = ACTIONS(1425), + [anon_sym_u64] = ACTIONS(1425), + [anon_sym_i64] = ACTIONS(1425), + [anon_sym_u128] = ACTIONS(1425), + [anon_sym_i128] = ACTIONS(1425), + [anon_sym_isize] = ACTIONS(1425), + [anon_sym_usize] = ACTIONS(1425), + [anon_sym_f32] = ACTIONS(1425), + [anon_sym_f64] = ACTIONS(1425), + [anon_sym_bool] = ACTIONS(1425), + [anon_sym_str] = ACTIONS(1425), + [anon_sym_char] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_COLON_COLON] = ACTIONS(1423), + [anon_sym_POUND] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_break] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_continue] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_enum] = ACTIONS(1425), + [anon_sym_fn] = ACTIONS(1425), + [anon_sym_for] = ACTIONS(1425), + [anon_sym_gen] = ACTIONS(1425), + [anon_sym_if] = ACTIONS(1425), + [anon_sym_impl] = ACTIONS(1425), + [anon_sym_let] = ACTIONS(1425), + [anon_sym_loop] = ACTIONS(1425), + [anon_sym_match] = ACTIONS(1425), + [anon_sym_mod] = ACTIONS(1425), + [anon_sym_pub] = ACTIONS(1425), + [anon_sym_return] = ACTIONS(1425), + [anon_sym_static] = ACTIONS(1425), + [anon_sym_struct] = ACTIONS(1425), + [anon_sym_trait] = ACTIONS(1425), + [anon_sym_type] = ACTIONS(1425), + [anon_sym_union] = ACTIONS(1425), + [anon_sym_unsafe] = ACTIONS(1425), + [anon_sym_use] = ACTIONS(1425), + [anon_sym_while] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(1425), + [anon_sym_yield] = ACTIONS(1425), + [anon_sym_move] = ACTIONS(1425), + [anon_sym_try] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1423), + [aux_sym_string_literal_token1] = ACTIONS(1423), + [sym_char_literal] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(1425), + [anon_sym_false] = ACTIONS(1425), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1425), + [sym_super] = ACTIONS(1425), + [sym_crate] = ACTIONS(1425), + [sym_metavariable] = ACTIONS(1423), + [sym__raw_string_literal_start] = ACTIONS(1423), + [sym_float_literal] = ACTIONS(1423), + }, + [STATE(651)] = { + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), + [ts_builtin_sym_end] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_macro_rules_BANG] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_u8] = ACTIONS(2466), + [anon_sym_i8] = ACTIONS(2466), + [anon_sym_u16] = ACTIONS(2466), + [anon_sym_i16] = ACTIONS(2466), + [anon_sym_u32] = ACTIONS(2466), + [anon_sym_i32] = ACTIONS(2466), + [anon_sym_u64] = ACTIONS(2466), + [anon_sym_i64] = ACTIONS(2466), + [anon_sym_u128] = ACTIONS(2466), + [anon_sym_i128] = ACTIONS(2466), + [anon_sym_isize] = ACTIONS(2466), + [anon_sym_usize] = ACTIONS(2466), + [anon_sym_f32] = ACTIONS(2466), + [anon_sym_f64] = ACTIONS(2466), + [anon_sym_bool] = ACTIONS(2466), + [anon_sym_str] = ACTIONS(2466), + [anon_sym_char] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_DOT_DOT] = ACTIONS(2464), + [anon_sym_COLON_COLON] = ACTIONS(2464), + [anon_sym_POUND] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_fn] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_gen] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_impl] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_loop] = ACTIONS(2466), + [anon_sym_match] = ACTIONS(2466), + [anon_sym_mod] = ACTIONS(2466), + [anon_sym_pub] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_trait] = ACTIONS(2466), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_unsafe] = ACTIONS(2466), + [anon_sym_use] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym_yield] = ACTIONS(2466), + [anon_sym_move] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2466), + [sym_integer_literal] = ACTIONS(2464), + [aux_sym_string_literal_token1] = ACTIONS(2464), + [sym_char_literal] = ACTIONS(2464), + [anon_sym_true] = ACTIONS(2466), + [anon_sym_false] = ACTIONS(2466), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2466), + [sym_super] = ACTIONS(2466), + [sym_crate] = ACTIONS(2466), + [sym_metavariable] = ACTIONS(2464), + [sym__raw_string_literal_start] = ACTIONS(2464), + [sym_float_literal] = ACTIONS(2464), + }, + [STATE(652)] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_macro_rules_BANG] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_RBRACE] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_u8] = ACTIONS(2470), + [anon_sym_i8] = ACTIONS(2470), + [anon_sym_u16] = ACTIONS(2470), + [anon_sym_i16] = ACTIONS(2470), + [anon_sym_u32] = ACTIONS(2470), + [anon_sym_i32] = ACTIONS(2470), + [anon_sym_u64] = ACTIONS(2470), + [anon_sym_i64] = ACTIONS(2470), + [anon_sym_u128] = ACTIONS(2470), + [anon_sym_i128] = ACTIONS(2470), + [anon_sym_isize] = ACTIONS(2470), + [anon_sym_usize] = ACTIONS(2470), + [anon_sym_f32] = ACTIONS(2470), + [anon_sym_f64] = ACTIONS(2470), + [anon_sym_bool] = ACTIONS(2470), + [anon_sym_str] = ACTIONS(2470), + [anon_sym_char] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(2468), + [anon_sym_COLON_COLON] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [anon_sym_fn] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_gen] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_impl] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_loop] = ACTIONS(2470), + [anon_sym_match] = ACTIONS(2470), + [anon_sym_mod] = ACTIONS(2470), + [anon_sym_pub] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_struct] = ACTIONS(2470), + [anon_sym_trait] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_union] = ACTIONS(2470), + [anon_sym_unsafe] = ACTIONS(2470), + [anon_sym_use] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_move] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [sym_integer_literal] = ACTIONS(2468), + [aux_sym_string_literal_token1] = ACTIONS(2468), + [sym_char_literal] = ACTIONS(2468), + [anon_sym_true] = ACTIONS(2470), + [anon_sym_false] = ACTIONS(2470), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_crate] = ACTIONS(2470), + [sym_metavariable] = ACTIONS(2468), + [sym__raw_string_literal_start] = ACTIONS(2468), + [sym_float_literal] = ACTIONS(2468), + }, + [STATE(653)] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(2472), + [sym_identifier] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_macro_rules_BANG] = ACTIONS(2472), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2472), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_u8] = ACTIONS(2474), + [anon_sym_i8] = ACTIONS(2474), + [anon_sym_u16] = ACTIONS(2474), + [anon_sym_i16] = ACTIONS(2474), + [anon_sym_u32] = ACTIONS(2474), + [anon_sym_i32] = ACTIONS(2474), + [anon_sym_u64] = ACTIONS(2474), + [anon_sym_i64] = ACTIONS(2474), + [anon_sym_u128] = ACTIONS(2474), + [anon_sym_i128] = ACTIONS(2474), + [anon_sym_isize] = ACTIONS(2474), + [anon_sym_usize] = ACTIONS(2474), + [anon_sym_f32] = ACTIONS(2474), + [anon_sym_f64] = ACTIONS(2474), + [anon_sym_bool] = ACTIONS(2474), + [anon_sym_str] = ACTIONS(2474), + [anon_sym_char] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_DOT_DOT] = ACTIONS(2472), + [anon_sym_COLON_COLON] = ACTIONS(2472), + [anon_sym_POUND] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_default] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [anon_sym_fn] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_gen] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_impl] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_loop] = ACTIONS(2474), + [anon_sym_match] = ACTIONS(2474), + [anon_sym_mod] = ACTIONS(2474), + [anon_sym_pub] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_static] = ACTIONS(2474), + [anon_sym_struct] = ACTIONS(2474), + [anon_sym_trait] = ACTIONS(2474), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_union] = ACTIONS(2474), + [anon_sym_unsafe] = ACTIONS(2474), + [anon_sym_use] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_extern] = ACTIONS(2474), + [anon_sym_yield] = ACTIONS(2474), + [anon_sym_move] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2474), + [sym_integer_literal] = ACTIONS(2472), + [aux_sym_string_literal_token1] = ACTIONS(2472), + [sym_char_literal] = ACTIONS(2472), + [anon_sym_true] = ACTIONS(2474), + [anon_sym_false] = ACTIONS(2474), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2474), + [sym_super] = ACTIONS(2474), + [sym_crate] = ACTIONS(2474), + [sym_metavariable] = ACTIONS(2472), + [sym__raw_string_literal_start] = ACTIONS(2472), + [sym_float_literal] = ACTIONS(2472), + }, + [STATE(654)] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), [ts_builtin_sym_end] = ACTIONS(2476), [sym_identifier] = ACTIONS(2478), [anon_sym_SEMI] = ACTIONS(2476), @@ -83290,9 +84440,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(643)] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), + [STATE(655)] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), [ts_builtin_sym_end] = ACTIONS(2480), [sym_identifier] = ACTIONS(2482), [anon_sym_SEMI] = ACTIONS(2480), @@ -83371,9 +84521,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(644)] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), + [STATE(656)] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), [ts_builtin_sym_end] = ACTIONS(2484), [sym_identifier] = ACTIONS(2486), [anon_sym_SEMI] = ACTIONS(2484), @@ -83452,9 +84602,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2484), [sym_float_literal] = ACTIONS(2484), }, - [STATE(645)] = { - [sym_line_comment] = STATE(645), - [sym_block_comment] = STATE(645), + [STATE(657)] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), [ts_builtin_sym_end] = ACTIONS(2488), [sym_identifier] = ACTIONS(2490), [anon_sym_SEMI] = ACTIONS(2488), @@ -83533,9 +84683,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2488), [sym_float_literal] = ACTIONS(2488), }, - [STATE(646)] = { - [sym_line_comment] = STATE(646), - [sym_block_comment] = STATE(646), + [STATE(658)] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), [ts_builtin_sym_end] = ACTIONS(2492), [sym_identifier] = ACTIONS(2494), [anon_sym_SEMI] = ACTIONS(2492), @@ -83614,9 +84764,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2492), [sym_float_literal] = ACTIONS(2492), }, - [STATE(647)] = { - [sym_line_comment] = STATE(647), - [sym_block_comment] = STATE(647), + [STATE(659)] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), [ts_builtin_sym_end] = ACTIONS(2496), [sym_identifier] = ACTIONS(2498), [anon_sym_SEMI] = ACTIONS(2496), @@ -83695,9 +84845,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2496), [sym_float_literal] = ACTIONS(2496), }, - [STATE(648)] = { - [sym_line_comment] = STATE(648), - [sym_block_comment] = STATE(648), + [STATE(660)] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), [ts_builtin_sym_end] = ACTIONS(2500), [sym_identifier] = ACTIONS(2502), [anon_sym_SEMI] = ACTIONS(2500), @@ -83776,9 +84926,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2500), [sym_float_literal] = ACTIONS(2500), }, - [STATE(649)] = { - [sym_line_comment] = STATE(649), - [sym_block_comment] = STATE(649), + [STATE(661)] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), [ts_builtin_sym_end] = ACTIONS(2504), [sym_identifier] = ACTIONS(2506), [anon_sym_SEMI] = ACTIONS(2504), @@ -83857,9 +85007,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2504), [sym_float_literal] = ACTIONS(2504), }, - [STATE(650)] = { - [sym_line_comment] = STATE(650), - [sym_block_comment] = STATE(650), + [STATE(662)] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), [ts_builtin_sym_end] = ACTIONS(2508), [sym_identifier] = ACTIONS(2510), [anon_sym_SEMI] = ACTIONS(2508), @@ -83938,9 +85088,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2508), [sym_float_literal] = ACTIONS(2508), }, - [STATE(651)] = { - [sym_line_comment] = STATE(651), - [sym_block_comment] = STATE(651), + [STATE(663)] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), [ts_builtin_sym_end] = ACTIONS(2512), [sym_identifier] = ACTIONS(2514), [anon_sym_SEMI] = ACTIONS(2512), @@ -84019,738 +85169,1872 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2512), [sym_float_literal] = ACTIONS(2512), }, - [STATE(652)] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), - [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), + [STATE(664)] = { + [sym_empty_statement] = STATE(1106), + [sym_macro_definition] = STATE(1106), + [sym_attribute_item] = STATE(1106), + [sym_inner_attribute_item] = STATE(1106), + [sym_mod_item] = STATE(1106), + [sym_foreign_mod_item] = STATE(1106), + [sym_struct_item] = STATE(1106), + [sym_union_item] = STATE(1106), + [sym_enum_item] = STATE(1106), + [sym_extern_crate_declaration] = STATE(1106), + [sym_const_item] = STATE(1106), + [sym_static_item] = STATE(1106), + [sym_type_item] = STATE(1106), + [sym_function_item] = STATE(1106), + [sym_function_signature_item] = STATE(1106), + [sym_function_modifiers] = STATE(3743), + [sym_impl_item] = STATE(1106), + [sym_trait_item] = STATE(1106), + [sym_associated_type] = STATE(1106), + [sym_let_declaration] = STATE(1106), + [sym_use_declaration] = STATE(1106), + [sym_extern_modifier] = STATE(2246), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type_with_turbofish] = STATE(3765), + [sym_macro_invocation] = STATE(1106), + [sym_scoped_identifier] = STATE(3406), + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), + [aux_sym_declaration_list_repeat1] = STATE(747), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_macro_rules_BANG] = ACTIONS(2178), [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_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(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), + [anon_sym_u8] = ACTIONS(2182), + [anon_sym_i8] = ACTIONS(2182), + [anon_sym_u16] = ACTIONS(2182), + [anon_sym_i16] = ACTIONS(2182), + [anon_sym_u32] = ACTIONS(2182), + [anon_sym_i32] = ACTIONS(2182), + [anon_sym_u64] = ACTIONS(2182), + [anon_sym_i64] = ACTIONS(2182), + [anon_sym_u128] = ACTIONS(2182), + [anon_sym_i128] = ACTIONS(2182), + [anon_sym_isize] = ACTIONS(2182), + [anon_sym_usize] = ACTIONS(2182), + [anon_sym_f32] = ACTIONS(2182), + [anon_sym_f64] = ACTIONS(2182), + [anon_sym_bool] = ACTIONS(2182), + [anon_sym_str] = ACTIONS(2182), + [anon_sym_char] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_POUND] = ACTIONS(2186), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_default] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2192), + [anon_sym_fn] = ACTIONS(2194), + [anon_sym_gen] = ACTIONS(2196), + [anon_sym_impl] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_mod] = ACTIONS(2202), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2212), + [anon_sym_unsafe] = ACTIONS(2214), + [anon_sym_use] = ACTIONS(2216), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2220), + [sym_super] = ACTIONS(2220), + [sym_crate] = ACTIONS(2222), + [sym_metavariable] = ACTIONS(2224), }, - [STATE(654)] = { - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), - [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(665)] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), + [ts_builtin_sym_end] = ACTIONS(2518), + [sym_identifier] = ACTIONS(2520), + [anon_sym_SEMI] = ACTIONS(2518), + [anon_sym_macro_rules_BANG] = ACTIONS(2518), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_LBRACK] = ACTIONS(2518), + [anon_sym_LBRACE] = ACTIONS(2518), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_STAR] = ACTIONS(2518), + [anon_sym_u8] = ACTIONS(2520), + [anon_sym_i8] = ACTIONS(2520), + [anon_sym_u16] = ACTIONS(2520), + [anon_sym_i16] = ACTIONS(2520), + [anon_sym_u32] = ACTIONS(2520), + [anon_sym_i32] = ACTIONS(2520), + [anon_sym_u64] = ACTIONS(2520), + [anon_sym_i64] = ACTIONS(2520), + [anon_sym_u128] = ACTIONS(2520), + [anon_sym_i128] = ACTIONS(2520), + [anon_sym_isize] = ACTIONS(2520), + [anon_sym_usize] = ACTIONS(2520), + [anon_sym_f32] = ACTIONS(2520), + [anon_sym_f64] = ACTIONS(2520), + [anon_sym_bool] = ACTIONS(2520), + [anon_sym_str] = ACTIONS(2520), + [anon_sym_char] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_BANG] = ACTIONS(2518), + [anon_sym_AMP] = ACTIONS(2518), + [anon_sym_PIPE] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2518), + [anon_sym_DOT_DOT] = ACTIONS(2518), + [anon_sym_COLON_COLON] = ACTIONS(2518), + [anon_sym_POUND] = ACTIONS(2518), + [anon_sym_SQUOTE] = ACTIONS(2520), + [anon_sym_async] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_default] = ACTIONS(2520), + [anon_sym_enum] = ACTIONS(2520), + [anon_sym_fn] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_gen] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_impl] = ACTIONS(2520), + [anon_sym_let] = ACTIONS(2520), + [anon_sym_loop] = ACTIONS(2520), + [anon_sym_match] = ACTIONS(2520), + [anon_sym_mod] = ACTIONS(2520), + [anon_sym_pub] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_static] = ACTIONS(2520), + [anon_sym_struct] = ACTIONS(2520), + [anon_sym_trait] = ACTIONS(2520), + [anon_sym_type] = ACTIONS(2520), + [anon_sym_union] = ACTIONS(2520), + [anon_sym_unsafe] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym_yield] = ACTIONS(2520), + [anon_sym_move] = ACTIONS(2520), + [anon_sym_try] = ACTIONS(2520), + [sym_integer_literal] = ACTIONS(2518), + [aux_sym_string_literal_token1] = ACTIONS(2518), + [sym_char_literal] = ACTIONS(2518), + [anon_sym_true] = ACTIONS(2520), + [anon_sym_false] = ACTIONS(2520), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2520), + [sym_super] = ACTIONS(2520), + [sym_crate] = ACTIONS(2520), + [sym_metavariable] = ACTIONS(2518), + [sym__raw_string_literal_start] = ACTIONS(2518), + [sym_float_literal] = ACTIONS(2518), }, - [STATE(655)] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), - [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(666)] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), + [ts_builtin_sym_end] = ACTIONS(2522), + [sym_identifier] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2522), + [anon_sym_macro_rules_BANG] = ACTIONS(2522), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_LBRACK] = ACTIONS(2522), + [anon_sym_LBRACE] = ACTIONS(2522), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_STAR] = ACTIONS(2522), + [anon_sym_u8] = ACTIONS(2524), + [anon_sym_i8] = ACTIONS(2524), + [anon_sym_u16] = ACTIONS(2524), + [anon_sym_i16] = ACTIONS(2524), + [anon_sym_u32] = ACTIONS(2524), + [anon_sym_i32] = ACTIONS(2524), + [anon_sym_u64] = ACTIONS(2524), + [anon_sym_i64] = ACTIONS(2524), + [anon_sym_u128] = ACTIONS(2524), + [anon_sym_i128] = ACTIONS(2524), + [anon_sym_isize] = ACTIONS(2524), + [anon_sym_usize] = ACTIONS(2524), + [anon_sym_f32] = ACTIONS(2524), + [anon_sym_f64] = ACTIONS(2524), + [anon_sym_bool] = ACTIONS(2524), + [anon_sym_str] = ACTIONS(2524), + [anon_sym_char] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2522), + [anon_sym_AMP] = ACTIONS(2522), + [anon_sym_PIPE] = ACTIONS(2522), + [anon_sym_LT] = ACTIONS(2522), + [anon_sym_DOT_DOT] = ACTIONS(2522), + [anon_sym_COLON_COLON] = ACTIONS(2522), + [anon_sym_POUND] = ACTIONS(2522), + [anon_sym_SQUOTE] = ACTIONS(2524), + [anon_sym_async] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_default] = ACTIONS(2524), + [anon_sym_enum] = ACTIONS(2524), + [anon_sym_fn] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_gen] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_impl] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_loop] = ACTIONS(2524), + [anon_sym_match] = ACTIONS(2524), + [anon_sym_mod] = ACTIONS(2524), + [anon_sym_pub] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_static] = ACTIONS(2524), + [anon_sym_struct] = ACTIONS(2524), + [anon_sym_trait] = ACTIONS(2524), + [anon_sym_type] = ACTIONS(2524), + [anon_sym_union] = ACTIONS(2524), + [anon_sym_unsafe] = ACTIONS(2524), + [anon_sym_use] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym_yield] = ACTIONS(2524), + [anon_sym_move] = ACTIONS(2524), + [anon_sym_try] = ACTIONS(2524), + [sym_integer_literal] = ACTIONS(2522), + [aux_sym_string_literal_token1] = ACTIONS(2522), + [sym_char_literal] = ACTIONS(2522), + [anon_sym_true] = ACTIONS(2524), + [anon_sym_false] = ACTIONS(2524), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2524), + [sym_super] = ACTIONS(2524), + [sym_crate] = ACTIONS(2524), + [sym_metavariable] = ACTIONS(2522), + [sym__raw_string_literal_start] = ACTIONS(2522), + [sym_float_literal] = ACTIONS(2522), }, - [STATE(656)] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), - [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(667)] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), + [ts_builtin_sym_end] = ACTIONS(2526), + [sym_identifier] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2526), + [anon_sym_macro_rules_BANG] = ACTIONS(2526), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_LBRACK] = ACTIONS(2526), + [anon_sym_LBRACE] = ACTIONS(2526), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_STAR] = ACTIONS(2526), + [anon_sym_u8] = ACTIONS(2528), + [anon_sym_i8] = ACTIONS(2528), + [anon_sym_u16] = ACTIONS(2528), + [anon_sym_i16] = ACTIONS(2528), + [anon_sym_u32] = ACTIONS(2528), + [anon_sym_i32] = ACTIONS(2528), + [anon_sym_u64] = ACTIONS(2528), + [anon_sym_i64] = ACTIONS(2528), + [anon_sym_u128] = ACTIONS(2528), + [anon_sym_i128] = ACTIONS(2528), + [anon_sym_isize] = ACTIONS(2528), + [anon_sym_usize] = ACTIONS(2528), + [anon_sym_f32] = ACTIONS(2528), + [anon_sym_f64] = ACTIONS(2528), + [anon_sym_bool] = ACTIONS(2528), + [anon_sym_str] = ACTIONS(2528), + [anon_sym_char] = ACTIONS(2528), + [anon_sym_DASH] = ACTIONS(2526), + [anon_sym_BANG] = ACTIONS(2526), + [anon_sym_AMP] = ACTIONS(2526), + [anon_sym_PIPE] = ACTIONS(2526), + [anon_sym_LT] = ACTIONS(2526), + [anon_sym_DOT_DOT] = ACTIONS(2526), + [anon_sym_COLON_COLON] = ACTIONS(2526), + [anon_sym_POUND] = ACTIONS(2526), + [anon_sym_SQUOTE] = ACTIONS(2528), + [anon_sym_async] = ACTIONS(2528), + [anon_sym_break] = ACTIONS(2528), + [anon_sym_const] = ACTIONS(2528), + [anon_sym_continue] = ACTIONS(2528), + [anon_sym_default] = ACTIONS(2528), + [anon_sym_enum] = ACTIONS(2528), + [anon_sym_fn] = ACTIONS(2528), + [anon_sym_for] = ACTIONS(2528), + [anon_sym_gen] = ACTIONS(2528), + [anon_sym_if] = ACTIONS(2528), + [anon_sym_impl] = ACTIONS(2528), + [anon_sym_let] = ACTIONS(2528), + [anon_sym_loop] = ACTIONS(2528), + [anon_sym_match] = ACTIONS(2528), + [anon_sym_mod] = ACTIONS(2528), + [anon_sym_pub] = ACTIONS(2528), + [anon_sym_return] = ACTIONS(2528), + [anon_sym_static] = ACTIONS(2528), + [anon_sym_struct] = ACTIONS(2528), + [anon_sym_trait] = ACTIONS(2528), + [anon_sym_type] = ACTIONS(2528), + [anon_sym_union] = ACTIONS(2528), + [anon_sym_unsafe] = ACTIONS(2528), + [anon_sym_use] = ACTIONS(2528), + [anon_sym_while] = ACTIONS(2528), + [anon_sym_extern] = ACTIONS(2528), + [anon_sym_yield] = ACTIONS(2528), + [anon_sym_move] = ACTIONS(2528), + [anon_sym_try] = ACTIONS(2528), + [sym_integer_literal] = ACTIONS(2526), + [aux_sym_string_literal_token1] = ACTIONS(2526), + [sym_char_literal] = ACTIONS(2526), + [anon_sym_true] = ACTIONS(2528), + [anon_sym_false] = ACTIONS(2528), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2528), + [sym_super] = ACTIONS(2528), + [sym_crate] = ACTIONS(2528), + [sym_metavariable] = ACTIONS(2526), + [sym__raw_string_literal_start] = ACTIONS(2526), + [sym_float_literal] = ACTIONS(2526), }, - [STATE(657)] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), - [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(668)] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), + [ts_builtin_sym_end] = ACTIONS(2530), + [sym_identifier] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2530), + [anon_sym_macro_rules_BANG] = ACTIONS(2530), + [anon_sym_LPAREN] = ACTIONS(2530), + [anon_sym_LBRACK] = ACTIONS(2530), + [anon_sym_LBRACE] = ACTIONS(2530), + [anon_sym_RBRACE] = ACTIONS(2530), + [anon_sym_STAR] = ACTIONS(2530), + [anon_sym_u8] = ACTIONS(2532), + [anon_sym_i8] = ACTIONS(2532), + [anon_sym_u16] = ACTIONS(2532), + [anon_sym_i16] = ACTIONS(2532), + [anon_sym_u32] = ACTIONS(2532), + [anon_sym_i32] = ACTIONS(2532), + [anon_sym_u64] = ACTIONS(2532), + [anon_sym_i64] = ACTIONS(2532), + [anon_sym_u128] = ACTIONS(2532), + [anon_sym_i128] = ACTIONS(2532), + [anon_sym_isize] = ACTIONS(2532), + [anon_sym_usize] = ACTIONS(2532), + [anon_sym_f32] = ACTIONS(2532), + [anon_sym_f64] = ACTIONS(2532), + [anon_sym_bool] = ACTIONS(2532), + [anon_sym_str] = ACTIONS(2532), + [anon_sym_char] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2530), + [anon_sym_BANG] = ACTIONS(2530), + [anon_sym_AMP] = ACTIONS(2530), + [anon_sym_PIPE] = ACTIONS(2530), + [anon_sym_LT] = ACTIONS(2530), + [anon_sym_DOT_DOT] = ACTIONS(2530), + [anon_sym_COLON_COLON] = ACTIONS(2530), + [anon_sym_POUND] = ACTIONS(2530), + [anon_sym_SQUOTE] = ACTIONS(2532), + [anon_sym_async] = ACTIONS(2532), + [anon_sym_break] = ACTIONS(2532), + [anon_sym_const] = ACTIONS(2532), + [anon_sym_continue] = ACTIONS(2532), + [anon_sym_default] = ACTIONS(2532), + [anon_sym_enum] = ACTIONS(2532), + [anon_sym_fn] = ACTIONS(2532), + [anon_sym_for] = ACTIONS(2532), + [anon_sym_gen] = ACTIONS(2532), + [anon_sym_if] = ACTIONS(2532), + [anon_sym_impl] = ACTIONS(2532), + [anon_sym_let] = ACTIONS(2532), + [anon_sym_loop] = ACTIONS(2532), + [anon_sym_match] = ACTIONS(2532), + [anon_sym_mod] = ACTIONS(2532), + [anon_sym_pub] = ACTIONS(2532), + [anon_sym_return] = ACTIONS(2532), + [anon_sym_static] = ACTIONS(2532), + [anon_sym_struct] = ACTIONS(2532), + [anon_sym_trait] = ACTIONS(2532), + [anon_sym_type] = ACTIONS(2532), + [anon_sym_union] = ACTIONS(2532), + [anon_sym_unsafe] = ACTIONS(2532), + [anon_sym_use] = ACTIONS(2532), + [anon_sym_while] = ACTIONS(2532), + [anon_sym_extern] = ACTIONS(2532), + [anon_sym_yield] = ACTIONS(2532), + [anon_sym_move] = ACTIONS(2532), + [anon_sym_try] = ACTIONS(2532), + [sym_integer_literal] = ACTIONS(2530), + [aux_sym_string_literal_token1] = ACTIONS(2530), + [sym_char_literal] = ACTIONS(2530), + [anon_sym_true] = ACTIONS(2532), + [anon_sym_false] = ACTIONS(2532), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2532), + [sym_super] = ACTIONS(2532), + [sym_crate] = ACTIONS(2532), + [sym_metavariable] = ACTIONS(2530), + [sym__raw_string_literal_start] = ACTIONS(2530), + [sym_float_literal] = ACTIONS(2530), }, - [STATE(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(669)] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(2534), + [sym_identifier] = ACTIONS(2536), + [anon_sym_SEMI] = ACTIONS(2534), + [anon_sym_macro_rules_BANG] = ACTIONS(2534), + [anon_sym_LPAREN] = ACTIONS(2534), + [anon_sym_LBRACK] = ACTIONS(2534), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_RBRACE] = ACTIONS(2534), + [anon_sym_STAR] = ACTIONS(2534), + [anon_sym_u8] = ACTIONS(2536), + [anon_sym_i8] = ACTIONS(2536), + [anon_sym_u16] = ACTIONS(2536), + [anon_sym_i16] = ACTIONS(2536), + [anon_sym_u32] = ACTIONS(2536), + [anon_sym_i32] = ACTIONS(2536), + [anon_sym_u64] = ACTIONS(2536), + [anon_sym_i64] = ACTIONS(2536), + [anon_sym_u128] = ACTIONS(2536), + [anon_sym_i128] = ACTIONS(2536), + [anon_sym_isize] = ACTIONS(2536), + [anon_sym_usize] = ACTIONS(2536), + [anon_sym_f32] = ACTIONS(2536), + [anon_sym_f64] = ACTIONS(2536), + [anon_sym_bool] = ACTIONS(2536), + [anon_sym_str] = ACTIONS(2536), + [anon_sym_char] = ACTIONS(2536), + [anon_sym_DASH] = ACTIONS(2534), + [anon_sym_BANG] = ACTIONS(2534), + [anon_sym_AMP] = ACTIONS(2534), + [anon_sym_PIPE] = ACTIONS(2534), + [anon_sym_LT] = ACTIONS(2534), + [anon_sym_DOT_DOT] = ACTIONS(2534), + [anon_sym_COLON_COLON] = ACTIONS(2534), + [anon_sym_POUND] = ACTIONS(2534), + [anon_sym_SQUOTE] = ACTIONS(2536), + [anon_sym_async] = ACTIONS(2536), + [anon_sym_break] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_continue] = ACTIONS(2536), + [anon_sym_default] = ACTIONS(2536), + [anon_sym_enum] = ACTIONS(2536), + [anon_sym_fn] = ACTIONS(2536), + [anon_sym_for] = ACTIONS(2536), + [anon_sym_gen] = ACTIONS(2536), + [anon_sym_if] = ACTIONS(2536), + [anon_sym_impl] = ACTIONS(2536), + [anon_sym_let] = ACTIONS(2536), + [anon_sym_loop] = ACTIONS(2536), + [anon_sym_match] = ACTIONS(2536), + [anon_sym_mod] = ACTIONS(2536), + [anon_sym_pub] = ACTIONS(2536), + [anon_sym_return] = ACTIONS(2536), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_struct] = ACTIONS(2536), + [anon_sym_trait] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_union] = ACTIONS(2536), + [anon_sym_unsafe] = ACTIONS(2536), + [anon_sym_use] = ACTIONS(2536), + [anon_sym_while] = ACTIONS(2536), + [anon_sym_extern] = ACTIONS(2536), + [anon_sym_yield] = ACTIONS(2536), + [anon_sym_move] = ACTIONS(2536), + [anon_sym_try] = ACTIONS(2536), + [sym_integer_literal] = ACTIONS(2534), + [aux_sym_string_literal_token1] = ACTIONS(2534), + [sym_char_literal] = ACTIONS(2534), + [anon_sym_true] = ACTIONS(2536), + [anon_sym_false] = ACTIONS(2536), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2536), + [sym_super] = ACTIONS(2536), + [sym_crate] = ACTIONS(2536), + [sym_metavariable] = ACTIONS(2534), + [sym__raw_string_literal_start] = ACTIONS(2534), + [sym_float_literal] = ACTIONS(2534), }, - [STATE(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(670)] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), + [ts_builtin_sym_end] = ACTIONS(2538), + [sym_identifier] = ACTIONS(2540), + [anon_sym_SEMI] = ACTIONS(2538), + [anon_sym_macro_rules_BANG] = ACTIONS(2538), + [anon_sym_LPAREN] = ACTIONS(2538), + [anon_sym_LBRACK] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2538), + [anon_sym_STAR] = ACTIONS(2538), + [anon_sym_u8] = ACTIONS(2540), + [anon_sym_i8] = ACTIONS(2540), + [anon_sym_u16] = ACTIONS(2540), + [anon_sym_i16] = ACTIONS(2540), + [anon_sym_u32] = ACTIONS(2540), + [anon_sym_i32] = ACTIONS(2540), + [anon_sym_u64] = ACTIONS(2540), + [anon_sym_i64] = ACTIONS(2540), + [anon_sym_u128] = ACTIONS(2540), + [anon_sym_i128] = ACTIONS(2540), + [anon_sym_isize] = ACTIONS(2540), + [anon_sym_usize] = ACTIONS(2540), + [anon_sym_f32] = ACTIONS(2540), + [anon_sym_f64] = ACTIONS(2540), + [anon_sym_bool] = ACTIONS(2540), + [anon_sym_str] = ACTIONS(2540), + [anon_sym_char] = ACTIONS(2540), + [anon_sym_DASH] = ACTIONS(2538), + [anon_sym_BANG] = ACTIONS(2538), + [anon_sym_AMP] = ACTIONS(2538), + [anon_sym_PIPE] = ACTIONS(2538), + [anon_sym_LT] = ACTIONS(2538), + [anon_sym_DOT_DOT] = ACTIONS(2538), + [anon_sym_COLON_COLON] = ACTIONS(2538), + [anon_sym_POUND] = ACTIONS(2538), + [anon_sym_SQUOTE] = ACTIONS(2540), + [anon_sym_async] = ACTIONS(2540), + [anon_sym_break] = ACTIONS(2540), + [anon_sym_const] = ACTIONS(2540), + [anon_sym_continue] = ACTIONS(2540), + [anon_sym_default] = ACTIONS(2540), + [anon_sym_enum] = ACTIONS(2540), + [anon_sym_fn] = ACTIONS(2540), + [anon_sym_for] = ACTIONS(2540), + [anon_sym_gen] = ACTIONS(2540), + [anon_sym_if] = ACTIONS(2540), + [anon_sym_impl] = ACTIONS(2540), + [anon_sym_let] = ACTIONS(2540), + [anon_sym_loop] = ACTIONS(2540), + [anon_sym_match] = ACTIONS(2540), + [anon_sym_mod] = ACTIONS(2540), + [anon_sym_pub] = ACTIONS(2540), + [anon_sym_return] = ACTIONS(2540), + [anon_sym_static] = ACTIONS(2540), + [anon_sym_struct] = ACTIONS(2540), + [anon_sym_trait] = ACTIONS(2540), + [anon_sym_type] = ACTIONS(2540), + [anon_sym_union] = ACTIONS(2540), + [anon_sym_unsafe] = ACTIONS(2540), + [anon_sym_use] = ACTIONS(2540), + [anon_sym_while] = ACTIONS(2540), + [anon_sym_extern] = ACTIONS(2540), + [anon_sym_yield] = ACTIONS(2540), + [anon_sym_move] = ACTIONS(2540), + [anon_sym_try] = ACTIONS(2540), + [sym_integer_literal] = ACTIONS(2538), + [aux_sym_string_literal_token1] = ACTIONS(2538), + [sym_char_literal] = ACTIONS(2538), + [anon_sym_true] = ACTIONS(2540), + [anon_sym_false] = ACTIONS(2540), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2540), + [sym_super] = ACTIONS(2540), + [sym_crate] = ACTIONS(2540), + [sym_metavariable] = ACTIONS(2538), + [sym__raw_string_literal_start] = ACTIONS(2538), + [sym_float_literal] = ACTIONS(2538), }, - [STATE(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(2229), - [sym_visibility_modifier] = STATE(1997), - [sym_bracketed_type] = STATE(3441), - [sym_generic_type_with_turbofish] = STATE(3467), - [sym_macro_invocation] = STATE(1090), - [sym_scoped_identifier] = STATE(3306), - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), - [aux_sym_declaration_list_repeat1] = STATE(685), - [aux_sym_function_modifiers_repeat1] = STATE(2252), + [STATE(671)] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), + [ts_builtin_sym_end] = ACTIONS(2542), [sym_identifier] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2546), + [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), + }, + [STATE(672)] = { + [sym_empty_statement] = STATE(1106), + [sym_macro_definition] = STATE(1106), + [sym_attribute_item] = STATE(1106), + [sym_inner_attribute_item] = STATE(1106), + [sym_mod_item] = STATE(1106), + [sym_foreign_mod_item] = STATE(1106), + [sym_struct_item] = STATE(1106), + [sym_union_item] = STATE(1106), + [sym_enum_item] = STATE(1106), + [sym_extern_crate_declaration] = STATE(1106), + [sym_const_item] = STATE(1106), + [sym_static_item] = STATE(1106), + [sym_type_item] = STATE(1106), + [sym_function_item] = STATE(1106), + [sym_function_signature_item] = STATE(1106), + [sym_function_modifiers] = STATE(3743), + [sym_impl_item] = STATE(1106), + [sym_trait_item] = STATE(1106), + [sym_associated_type] = STATE(1106), + [sym_let_declaration] = STATE(1106), + [sym_use_declaration] = STATE(1106), + [sym_extern_modifier] = STATE(2246), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type_with_turbofish] = STATE(3765), + [sym_macro_invocation] = STATE(1106), + [sym_scoped_identifier] = STATE(3406), + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), + [aux_sym_declaration_list_repeat1] = STATE(676), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_macro_rules_BANG] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2546), + [anon_sym_u8] = ACTIONS(2182), + [anon_sym_i8] = ACTIONS(2182), + [anon_sym_u16] = ACTIONS(2182), + [anon_sym_i16] = ACTIONS(2182), + [anon_sym_u32] = ACTIONS(2182), + [anon_sym_i32] = ACTIONS(2182), + [anon_sym_u64] = ACTIONS(2182), + [anon_sym_i64] = ACTIONS(2182), + [anon_sym_u128] = ACTIONS(2182), + [anon_sym_i128] = ACTIONS(2182), + [anon_sym_isize] = ACTIONS(2182), + [anon_sym_usize] = ACTIONS(2182), + [anon_sym_f32] = ACTIONS(2182), + [anon_sym_f64] = ACTIONS(2182), + [anon_sym_bool] = ACTIONS(2182), + [anon_sym_str] = ACTIONS(2182), + [anon_sym_char] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_POUND] = ACTIONS(2186), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_default] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2192), + [anon_sym_fn] = ACTIONS(2194), + [anon_sym_gen] = ACTIONS(2196), + [anon_sym_impl] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_mod] = ACTIONS(2202), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2212), + [anon_sym_unsafe] = ACTIONS(2214), + [anon_sym_use] = ACTIONS(2216), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2220), + [sym_super] = ACTIONS(2220), + [sym_crate] = ACTIONS(2222), + [sym_metavariable] = ACTIONS(2224), + }, + [STATE(673)] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), + [ts_builtin_sym_end] = ACTIONS(2548), + [sym_identifier] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2548), [anon_sym_macro_rules_BANG] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2550), - [anon_sym_u8] = ACTIONS(2552), - [anon_sym_i8] = ACTIONS(2552), - [anon_sym_u16] = ACTIONS(2552), - [anon_sym_i16] = ACTIONS(2552), - [anon_sym_u32] = ACTIONS(2552), - [anon_sym_i32] = ACTIONS(2552), - [anon_sym_u64] = ACTIONS(2552), - [anon_sym_i64] = ACTIONS(2552), - [anon_sym_u128] = ACTIONS(2552), - [anon_sym_i128] = ACTIONS(2552), - [anon_sym_isize] = ACTIONS(2552), - [anon_sym_usize] = ACTIONS(2552), - [anon_sym_f32] = ACTIONS(2552), - [anon_sym_f64] = ACTIONS(2552), - [anon_sym_bool] = ACTIONS(2552), - [anon_sym_str] = ACTIONS(2552), - [anon_sym_char] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2554), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_RBRACE] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2548), + [anon_sym_u8] = ACTIONS(2550), + [anon_sym_i8] = ACTIONS(2550), + [anon_sym_u16] = ACTIONS(2550), + [anon_sym_i16] = ACTIONS(2550), + [anon_sym_u32] = ACTIONS(2550), + [anon_sym_i32] = ACTIONS(2550), + [anon_sym_u64] = ACTIONS(2550), + [anon_sym_i64] = ACTIONS(2550), + [anon_sym_u128] = ACTIONS(2550), + [anon_sym_i128] = ACTIONS(2550), + [anon_sym_isize] = ACTIONS(2550), + [anon_sym_usize] = ACTIONS(2550), + [anon_sym_f32] = ACTIONS(2550), + [anon_sym_f64] = ACTIONS(2550), + [anon_sym_bool] = ACTIONS(2550), + [anon_sym_str] = ACTIONS(2550), + [anon_sym_char] = ACTIONS(2550), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_BANG] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_DOT_DOT] = ACTIONS(2548), + [anon_sym_COLON_COLON] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(2548), + [anon_sym_SQUOTE] = ACTIONS(2550), + [anon_sym_async] = ACTIONS(2550), + [anon_sym_break] = ACTIONS(2550), + [anon_sym_const] = ACTIONS(2550), + [anon_sym_continue] = ACTIONS(2550), + [anon_sym_default] = ACTIONS(2550), + [anon_sym_enum] = ACTIONS(2550), + [anon_sym_fn] = ACTIONS(2550), + [anon_sym_for] = ACTIONS(2550), + [anon_sym_gen] = ACTIONS(2550), + [anon_sym_if] = ACTIONS(2550), + [anon_sym_impl] = ACTIONS(2550), + [anon_sym_let] = ACTIONS(2550), + [anon_sym_loop] = ACTIONS(2550), + [anon_sym_match] = ACTIONS(2550), + [anon_sym_mod] = ACTIONS(2550), + [anon_sym_pub] = ACTIONS(2550), + [anon_sym_return] = ACTIONS(2550), + [anon_sym_static] = ACTIONS(2550), + [anon_sym_struct] = ACTIONS(2550), + [anon_sym_trait] = ACTIONS(2550), + [anon_sym_type] = ACTIONS(2550), + [anon_sym_union] = ACTIONS(2550), + [anon_sym_unsafe] = ACTIONS(2550), + [anon_sym_use] = ACTIONS(2550), + [anon_sym_while] = ACTIONS(2550), + [anon_sym_extern] = ACTIONS(2550), + [anon_sym_yield] = ACTIONS(2550), + [anon_sym_move] = ACTIONS(2550), + [anon_sym_try] = ACTIONS(2550), + [sym_integer_literal] = ACTIONS(2548), + [aux_sym_string_literal_token1] = ACTIONS(2548), + [sym_char_literal] = ACTIONS(2548), + [anon_sym_true] = ACTIONS(2550), + [anon_sym_false] = ACTIONS(2550), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2550), + [sym_super] = ACTIONS(2550), + [sym_crate] = ACTIONS(2550), + [sym_metavariable] = ACTIONS(2548), + [sym__raw_string_literal_start] = ACTIONS(2548), + [sym_float_literal] = ACTIONS(2548), + }, + [STATE(674)] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(2552), + [sym_identifier] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2552), + [anon_sym_macro_rules_BANG] = ACTIONS(2552), + [anon_sym_LPAREN] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2552), + [anon_sym_RBRACE] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(2552), + [anon_sym_u8] = ACTIONS(2554), + [anon_sym_i8] = ACTIONS(2554), + [anon_sym_u16] = ACTIONS(2554), + [anon_sym_i16] = ACTIONS(2554), + [anon_sym_u32] = ACTIONS(2554), + [anon_sym_i32] = ACTIONS(2554), + [anon_sym_u64] = ACTIONS(2554), + [anon_sym_i64] = ACTIONS(2554), + [anon_sym_u128] = ACTIONS(2554), + [anon_sym_i128] = ACTIONS(2554), + [anon_sym_isize] = ACTIONS(2554), + [anon_sym_usize] = ACTIONS(2554), + [anon_sym_f32] = ACTIONS(2554), + [anon_sym_f64] = ACTIONS(2554), + [anon_sym_bool] = ACTIONS(2554), + [anon_sym_str] = ACTIONS(2554), + [anon_sym_char] = ACTIONS(2554), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_BANG] = ACTIONS(2552), + [anon_sym_AMP] = ACTIONS(2552), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_DOT_DOT] = ACTIONS(2552), + [anon_sym_COLON_COLON] = ACTIONS(2552), + [anon_sym_POUND] = ACTIONS(2552), + [anon_sym_SQUOTE] = ACTIONS(2554), + [anon_sym_async] = ACTIONS(2554), + [anon_sym_break] = ACTIONS(2554), + [anon_sym_const] = ACTIONS(2554), + [anon_sym_continue] = ACTIONS(2554), + [anon_sym_default] = ACTIONS(2554), + [anon_sym_enum] = ACTIONS(2554), + [anon_sym_fn] = ACTIONS(2554), + [anon_sym_for] = ACTIONS(2554), + [anon_sym_gen] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2554), + [anon_sym_impl] = ACTIONS(2554), + [anon_sym_let] = ACTIONS(2554), + [anon_sym_loop] = ACTIONS(2554), + [anon_sym_match] = ACTIONS(2554), + [anon_sym_mod] = ACTIONS(2554), + [anon_sym_pub] = ACTIONS(2554), + [anon_sym_return] = ACTIONS(2554), + [anon_sym_static] = ACTIONS(2554), + [anon_sym_struct] = ACTIONS(2554), + [anon_sym_trait] = ACTIONS(2554), + [anon_sym_type] = ACTIONS(2554), + [anon_sym_union] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(2554), + [anon_sym_use] = ACTIONS(2554), + [anon_sym_while] = ACTIONS(2554), + [anon_sym_extern] = ACTIONS(2554), + [anon_sym_yield] = ACTIONS(2554), + [anon_sym_move] = ACTIONS(2554), + [anon_sym_try] = ACTIONS(2554), + [sym_integer_literal] = ACTIONS(2552), + [aux_sym_string_literal_token1] = ACTIONS(2552), + [sym_char_literal] = ACTIONS(2552), + [anon_sym_true] = ACTIONS(2554), + [anon_sym_false] = ACTIONS(2554), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2554), + [sym_super] = ACTIONS(2554), + [sym_crate] = ACTIONS(2554), + [sym_metavariable] = ACTIONS(2552), + [sym__raw_string_literal_start] = ACTIONS(2552), + [sym_float_literal] = ACTIONS(2552), + }, + [STATE(675)] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), + [ts_builtin_sym_end] = ACTIONS(2556), + [sym_identifier] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2556), + [anon_sym_macro_rules_BANG] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2556), + [anon_sym_RBRACE] = ACTIONS(2556), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_u8] = ACTIONS(2558), + [anon_sym_i8] = ACTIONS(2558), + [anon_sym_u16] = ACTIONS(2558), + [anon_sym_i16] = ACTIONS(2558), + [anon_sym_u32] = ACTIONS(2558), + [anon_sym_i32] = ACTIONS(2558), + [anon_sym_u64] = ACTIONS(2558), + [anon_sym_i64] = ACTIONS(2558), + [anon_sym_u128] = ACTIONS(2558), + [anon_sym_i128] = ACTIONS(2558), + [anon_sym_isize] = ACTIONS(2558), + [anon_sym_usize] = ACTIONS(2558), + [anon_sym_f32] = ACTIONS(2558), + [anon_sym_f64] = ACTIONS(2558), + [anon_sym_bool] = ACTIONS(2558), + [anon_sym_str] = ACTIONS(2558), + [anon_sym_char] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_BANG] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(2556), + [anon_sym_PIPE] = ACTIONS(2556), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_DOT_DOT] = ACTIONS(2556), + [anon_sym_COLON_COLON] = ACTIONS(2556), [anon_sym_POUND] = ACTIONS(2556), - [anon_sym_async] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_async] = ACTIONS(2558), + [anon_sym_break] = ACTIONS(2558), [anon_sym_const] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2560), - [anon_sym_enum] = ACTIONS(2562), + [anon_sym_continue] = ACTIONS(2558), + [anon_sym_default] = ACTIONS(2558), + [anon_sym_enum] = ACTIONS(2558), + [anon_sym_fn] = ACTIONS(2558), + [anon_sym_for] = ACTIONS(2558), + [anon_sym_gen] = ACTIONS(2558), + [anon_sym_if] = ACTIONS(2558), + [anon_sym_impl] = ACTIONS(2558), + [anon_sym_let] = ACTIONS(2558), + [anon_sym_loop] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2558), + [anon_sym_mod] = ACTIONS(2558), + [anon_sym_pub] = ACTIONS(2558), + [anon_sym_return] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2558), + [anon_sym_struct] = ACTIONS(2558), + [anon_sym_trait] = ACTIONS(2558), + [anon_sym_type] = ACTIONS(2558), + [anon_sym_union] = ACTIONS(2558), + [anon_sym_unsafe] = ACTIONS(2558), + [anon_sym_use] = ACTIONS(2558), + [anon_sym_while] = ACTIONS(2558), + [anon_sym_extern] = ACTIONS(2558), + [anon_sym_yield] = ACTIONS(2558), + [anon_sym_move] = ACTIONS(2558), + [anon_sym_try] = ACTIONS(2558), + [sym_integer_literal] = ACTIONS(2556), + [aux_sym_string_literal_token1] = ACTIONS(2556), + [sym_char_literal] = ACTIONS(2556), + [anon_sym_true] = ACTIONS(2558), + [anon_sym_false] = ACTIONS(2558), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2558), + [sym_super] = ACTIONS(2558), + [sym_crate] = ACTIONS(2558), + [sym_metavariable] = ACTIONS(2556), + [sym__raw_string_literal_start] = ACTIONS(2556), + [sym_float_literal] = ACTIONS(2556), + }, + [STATE(676)] = { + [sym_empty_statement] = STATE(1106), + [sym_macro_definition] = STATE(1106), + [sym_attribute_item] = STATE(1106), + [sym_inner_attribute_item] = STATE(1106), + [sym_mod_item] = STATE(1106), + [sym_foreign_mod_item] = STATE(1106), + [sym_struct_item] = STATE(1106), + [sym_union_item] = STATE(1106), + [sym_enum_item] = STATE(1106), + [sym_extern_crate_declaration] = STATE(1106), + [sym_const_item] = STATE(1106), + [sym_static_item] = STATE(1106), + [sym_type_item] = STATE(1106), + [sym_function_item] = STATE(1106), + [sym_function_signature_item] = STATE(1106), + [sym_function_modifiers] = STATE(3743), + [sym_impl_item] = STATE(1106), + [sym_trait_item] = STATE(1106), + [sym_associated_type] = STATE(1106), + [sym_let_declaration] = STATE(1106), + [sym_use_declaration] = STATE(1106), + [sym_extern_modifier] = STATE(2246), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type_with_turbofish] = STATE(3765), + [sym_macro_invocation] = STATE(1106), + [sym_scoped_identifier] = STATE(3406), + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), + [aux_sym_declaration_list_repeat1] = STATE(747), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_macro_rules_BANG] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2560), + [anon_sym_u8] = ACTIONS(2182), + [anon_sym_i8] = ACTIONS(2182), + [anon_sym_u16] = ACTIONS(2182), + [anon_sym_i16] = ACTIONS(2182), + [anon_sym_u32] = ACTIONS(2182), + [anon_sym_i32] = ACTIONS(2182), + [anon_sym_u64] = ACTIONS(2182), + [anon_sym_i64] = ACTIONS(2182), + [anon_sym_u128] = ACTIONS(2182), + [anon_sym_i128] = ACTIONS(2182), + [anon_sym_isize] = ACTIONS(2182), + [anon_sym_usize] = ACTIONS(2182), + [anon_sym_f32] = ACTIONS(2182), + [anon_sym_f64] = ACTIONS(2182), + [anon_sym_bool] = ACTIONS(2182), + [anon_sym_str] = ACTIONS(2182), + [anon_sym_char] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_POUND] = ACTIONS(2186), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_default] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2192), + [anon_sym_fn] = ACTIONS(2194), + [anon_sym_gen] = ACTIONS(2196), + [anon_sym_impl] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_mod] = ACTIONS(2202), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2208), + [anon_sym_type] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2212), + [anon_sym_unsafe] = ACTIONS(2214), + [anon_sym_use] = ACTIONS(2216), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2220), + [sym_super] = ACTIONS(2220), + [sym_crate] = ACTIONS(2222), + [sym_metavariable] = ACTIONS(2224), + }, + [STATE(677)] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), + [ts_builtin_sym_end] = ACTIONS(2562), + [sym_identifier] = ACTIONS(2564), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym_macro_rules_BANG] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2562), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_u8] = ACTIONS(2564), + [anon_sym_i8] = ACTIONS(2564), + [anon_sym_u16] = ACTIONS(2564), + [anon_sym_i16] = ACTIONS(2564), + [anon_sym_u32] = ACTIONS(2564), + [anon_sym_i32] = ACTIONS(2564), + [anon_sym_u64] = ACTIONS(2564), + [anon_sym_i64] = ACTIONS(2564), + [anon_sym_u128] = ACTIONS(2564), + [anon_sym_i128] = ACTIONS(2564), + [anon_sym_isize] = ACTIONS(2564), + [anon_sym_usize] = ACTIONS(2564), + [anon_sym_f32] = ACTIONS(2564), + [anon_sym_f64] = ACTIONS(2564), + [anon_sym_bool] = ACTIONS(2564), + [anon_sym_str] = ACTIONS(2564), + [anon_sym_char] = ACTIONS(2564), + [anon_sym_DASH] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2562), + [anon_sym_LT] = ACTIONS(2562), + [anon_sym_DOT_DOT] = ACTIONS(2562), + [anon_sym_COLON_COLON] = ACTIONS(2562), + [anon_sym_POUND] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2564), + [anon_sym_async] = ACTIONS(2564), + [anon_sym_break] = ACTIONS(2564), + [anon_sym_const] = ACTIONS(2564), + [anon_sym_continue] = ACTIONS(2564), + [anon_sym_default] = ACTIONS(2564), + [anon_sym_enum] = ACTIONS(2564), [anon_sym_fn] = ACTIONS(2564), - [anon_sym_gen] = ACTIONS(2566), + [anon_sym_for] = ACTIONS(2564), + [anon_sym_gen] = ACTIONS(2564), + [anon_sym_if] = ACTIONS(2564), + [anon_sym_impl] = ACTIONS(2564), + [anon_sym_let] = ACTIONS(2564), + [anon_sym_loop] = ACTIONS(2564), + [anon_sym_match] = ACTIONS(2564), + [anon_sym_mod] = ACTIONS(2564), + [anon_sym_pub] = ACTIONS(2564), + [anon_sym_return] = ACTIONS(2564), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_struct] = ACTIONS(2564), + [anon_sym_trait] = ACTIONS(2564), + [anon_sym_type] = ACTIONS(2564), + [anon_sym_union] = ACTIONS(2564), + [anon_sym_unsafe] = ACTIONS(2564), + [anon_sym_use] = ACTIONS(2564), + [anon_sym_while] = ACTIONS(2564), + [anon_sym_extern] = ACTIONS(2564), + [anon_sym_yield] = ACTIONS(2564), + [anon_sym_move] = ACTIONS(2564), + [anon_sym_try] = ACTIONS(2564), + [sym_integer_literal] = ACTIONS(2562), + [aux_sym_string_literal_token1] = ACTIONS(2562), + [sym_char_literal] = ACTIONS(2562), + [anon_sym_true] = ACTIONS(2564), + [anon_sym_false] = ACTIONS(2564), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2564), + [sym_super] = ACTIONS(2564), + [sym_crate] = ACTIONS(2564), + [sym_metavariable] = ACTIONS(2562), + [sym__raw_string_literal_start] = ACTIONS(2562), + [sym_float_literal] = ACTIONS(2562), + }, + [STATE(678)] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), + [ts_builtin_sym_end] = ACTIONS(2566), + [sym_identifier] = ACTIONS(2568), + [anon_sym_SEMI] = ACTIONS(2566), + [anon_sym_macro_rules_BANG] = ACTIONS(2566), + [anon_sym_LPAREN] = ACTIONS(2566), + [anon_sym_LBRACK] = ACTIONS(2566), + [anon_sym_LBRACE] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2566), + [anon_sym_STAR] = ACTIONS(2566), + [anon_sym_u8] = ACTIONS(2568), + [anon_sym_i8] = ACTIONS(2568), + [anon_sym_u16] = ACTIONS(2568), + [anon_sym_i16] = ACTIONS(2568), + [anon_sym_u32] = ACTIONS(2568), + [anon_sym_i32] = ACTIONS(2568), + [anon_sym_u64] = ACTIONS(2568), + [anon_sym_i64] = ACTIONS(2568), + [anon_sym_u128] = ACTIONS(2568), + [anon_sym_i128] = ACTIONS(2568), + [anon_sym_isize] = ACTIONS(2568), + [anon_sym_usize] = ACTIONS(2568), + [anon_sym_f32] = ACTIONS(2568), + [anon_sym_f64] = ACTIONS(2568), + [anon_sym_bool] = ACTIONS(2568), + [anon_sym_str] = ACTIONS(2568), + [anon_sym_char] = ACTIONS(2568), + [anon_sym_DASH] = ACTIONS(2566), + [anon_sym_BANG] = ACTIONS(2566), + [anon_sym_AMP] = ACTIONS(2566), + [anon_sym_PIPE] = ACTIONS(2566), + [anon_sym_LT] = ACTIONS(2566), + [anon_sym_DOT_DOT] = ACTIONS(2566), + [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_POUND] = ACTIONS(2566), + [anon_sym_SQUOTE] = ACTIONS(2568), + [anon_sym_async] = ACTIONS(2568), + [anon_sym_break] = ACTIONS(2568), + [anon_sym_const] = ACTIONS(2568), + [anon_sym_continue] = ACTIONS(2568), + [anon_sym_default] = ACTIONS(2568), + [anon_sym_enum] = ACTIONS(2568), + [anon_sym_fn] = ACTIONS(2568), + [anon_sym_for] = ACTIONS(2568), + [anon_sym_gen] = ACTIONS(2568), + [anon_sym_if] = ACTIONS(2568), [anon_sym_impl] = ACTIONS(2568), - [anon_sym_let] = ACTIONS(2570), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2568), + [anon_sym_loop] = ACTIONS(2568), + [anon_sym_match] = ACTIONS(2568), + [anon_sym_mod] = ACTIONS(2568), + [anon_sym_pub] = ACTIONS(2568), + [anon_sym_return] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2568), + [anon_sym_struct] = ACTIONS(2568), + [anon_sym_trait] = ACTIONS(2568), + [anon_sym_type] = ACTIONS(2568), + [anon_sym_union] = ACTIONS(2568), + [anon_sym_unsafe] = ACTIONS(2568), + [anon_sym_use] = ACTIONS(2568), + [anon_sym_while] = ACTIONS(2568), + [anon_sym_extern] = ACTIONS(2568), + [anon_sym_yield] = ACTIONS(2568), + [anon_sym_move] = ACTIONS(2568), + [anon_sym_try] = ACTIONS(2568), + [sym_integer_literal] = ACTIONS(2566), + [aux_sym_string_literal_token1] = ACTIONS(2566), + [sym_char_literal] = ACTIONS(2566), + [anon_sym_true] = ACTIONS(2568), + [anon_sym_false] = ACTIONS(2568), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2568), + [sym_super] = ACTIONS(2568), + [sym_crate] = ACTIONS(2568), + [sym_metavariable] = ACTIONS(2566), + [sym__raw_string_literal_start] = ACTIONS(2566), + [sym_float_literal] = ACTIONS(2566), + }, + [STATE(679)] = { + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym_closure_expression] = STATE(3258), + [sym_closure_parameters] = STATE(245), + [sym__pattern] = STATE(3040), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(2570), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_move] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(680)] = { + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym_closure_expression] = STATE(3258), + [sym_closure_parameters] = STATE(245), + [sym__pattern] = STATE(3040), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_move] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(681)] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), + [ts_builtin_sym_end] = ACTIONS(2574), + [sym_identifier] = ACTIONS(2576), + [anon_sym_SEMI] = ACTIONS(2574), + [anon_sym_macro_rules_BANG] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_RBRACE] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_u8] = ACTIONS(2576), + [anon_sym_i8] = ACTIONS(2576), + [anon_sym_u16] = ACTIONS(2576), + [anon_sym_i16] = ACTIONS(2576), + [anon_sym_u32] = ACTIONS(2576), + [anon_sym_i32] = ACTIONS(2576), + [anon_sym_u64] = ACTIONS(2576), + [anon_sym_i64] = ACTIONS(2576), + [anon_sym_u128] = ACTIONS(2576), + [anon_sym_i128] = ACTIONS(2576), + [anon_sym_isize] = ACTIONS(2576), + [anon_sym_usize] = ACTIONS(2576), + [anon_sym_f32] = ACTIONS(2576), + [anon_sym_f64] = ACTIONS(2576), + [anon_sym_bool] = ACTIONS(2576), + [anon_sym_str] = ACTIONS(2576), + [anon_sym_char] = ACTIONS(2576), + [anon_sym_DASH] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_AMP] = ACTIONS(2574), + [anon_sym_PIPE] = ACTIONS(2574), + [anon_sym_LT] = ACTIONS(2574), + [anon_sym_DOT_DOT] = ACTIONS(2574), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_POUND] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2576), + [anon_sym_async] = ACTIONS(2576), + [anon_sym_break] = ACTIONS(2576), + [anon_sym_const] = ACTIONS(2576), + [anon_sym_continue] = ACTIONS(2576), + [anon_sym_default] = ACTIONS(2576), + [anon_sym_enum] = ACTIONS(2576), + [anon_sym_fn] = ACTIONS(2576), + [anon_sym_for] = ACTIONS(2576), + [anon_sym_gen] = ACTIONS(2576), + [anon_sym_if] = ACTIONS(2576), + [anon_sym_impl] = ACTIONS(2576), + [anon_sym_let] = ACTIONS(2576), + [anon_sym_loop] = ACTIONS(2576), + [anon_sym_match] = ACTIONS(2576), + [anon_sym_mod] = ACTIONS(2576), + [anon_sym_pub] = ACTIONS(2576), + [anon_sym_return] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(2576), [anon_sym_struct] = ACTIONS(2576), - [anon_sym_trait] = ACTIONS(2578), + [anon_sym_trait] = ACTIONS(2576), + [anon_sym_type] = ACTIONS(2576), + [anon_sym_union] = ACTIONS(2576), + [anon_sym_unsafe] = ACTIONS(2576), + [anon_sym_use] = ACTIONS(2576), + [anon_sym_while] = ACTIONS(2576), + [anon_sym_extern] = ACTIONS(2576), + [anon_sym_yield] = ACTIONS(2576), + [anon_sym_move] = ACTIONS(2576), + [anon_sym_try] = ACTIONS(2576), + [sym_integer_literal] = ACTIONS(2574), + [aux_sym_string_literal_token1] = ACTIONS(2574), + [sym_char_literal] = ACTIONS(2574), + [anon_sym_true] = ACTIONS(2576), + [anon_sym_false] = ACTIONS(2576), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2576), + [sym_super] = ACTIONS(2576), + [sym_crate] = ACTIONS(2576), + [sym_metavariable] = ACTIONS(2574), + [sym__raw_string_literal_start] = ACTIONS(2574), + [sym_float_literal] = ACTIONS(2574), + }, + [STATE(682)] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), + [ts_builtin_sym_end] = ACTIONS(2578), + [sym_identifier] = ACTIONS(2580), + [anon_sym_SEMI] = ACTIONS(2578), + [anon_sym_macro_rules_BANG] = ACTIONS(2578), + [anon_sym_LPAREN] = ACTIONS(2578), + [anon_sym_LBRACK] = ACTIONS(2578), + [anon_sym_LBRACE] = ACTIONS(2578), + [anon_sym_RBRACE] = ACTIONS(2578), + [anon_sym_STAR] = ACTIONS(2578), + [anon_sym_u8] = ACTIONS(2580), + [anon_sym_i8] = ACTIONS(2580), + [anon_sym_u16] = ACTIONS(2580), + [anon_sym_i16] = ACTIONS(2580), + [anon_sym_u32] = ACTIONS(2580), + [anon_sym_i32] = ACTIONS(2580), + [anon_sym_u64] = ACTIONS(2580), + [anon_sym_i64] = ACTIONS(2580), + [anon_sym_u128] = ACTIONS(2580), + [anon_sym_i128] = ACTIONS(2580), + [anon_sym_isize] = ACTIONS(2580), + [anon_sym_usize] = ACTIONS(2580), + [anon_sym_f32] = ACTIONS(2580), + [anon_sym_f64] = ACTIONS(2580), + [anon_sym_bool] = ACTIONS(2580), + [anon_sym_str] = ACTIONS(2580), + [anon_sym_char] = ACTIONS(2580), + [anon_sym_DASH] = ACTIONS(2578), + [anon_sym_BANG] = ACTIONS(2578), + [anon_sym_AMP] = ACTIONS(2578), + [anon_sym_PIPE] = ACTIONS(2578), + [anon_sym_LT] = ACTIONS(2578), + [anon_sym_DOT_DOT] = ACTIONS(2578), + [anon_sym_COLON_COLON] = ACTIONS(2578), + [anon_sym_POUND] = ACTIONS(2578), + [anon_sym_SQUOTE] = ACTIONS(2580), + [anon_sym_async] = ACTIONS(2580), + [anon_sym_break] = ACTIONS(2580), + [anon_sym_const] = ACTIONS(2580), + [anon_sym_continue] = ACTIONS(2580), + [anon_sym_default] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2580), + [anon_sym_fn] = ACTIONS(2580), + [anon_sym_for] = ACTIONS(2580), + [anon_sym_gen] = ACTIONS(2580), + [anon_sym_if] = ACTIONS(2580), + [anon_sym_impl] = ACTIONS(2580), + [anon_sym_let] = ACTIONS(2580), + [anon_sym_loop] = ACTIONS(2580), + [anon_sym_match] = ACTIONS(2580), + [anon_sym_mod] = ACTIONS(2580), + [anon_sym_pub] = ACTIONS(2580), + [anon_sym_return] = ACTIONS(2580), + [anon_sym_static] = ACTIONS(2580), + [anon_sym_struct] = ACTIONS(2580), + [anon_sym_trait] = ACTIONS(2580), [anon_sym_type] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2580), + [anon_sym_unsafe] = ACTIONS(2580), + [anon_sym_use] = ACTIONS(2580), + [anon_sym_while] = ACTIONS(2580), + [anon_sym_extern] = ACTIONS(2580), + [anon_sym_yield] = ACTIONS(2580), + [anon_sym_move] = ACTIONS(2580), + [anon_sym_try] = ACTIONS(2580), + [sym_integer_literal] = ACTIONS(2578), + [aux_sym_string_literal_token1] = ACTIONS(2578), + [sym_char_literal] = ACTIONS(2578), + [anon_sym_true] = ACTIONS(2580), + [anon_sym_false] = ACTIONS(2580), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2580), + [sym_super] = ACTIONS(2580), + [sym_crate] = ACTIONS(2580), + [sym_metavariable] = ACTIONS(2578), + [sym__raw_string_literal_start] = ACTIONS(2578), + [sym_float_literal] = ACTIONS(2578), + }, + [STATE(683)] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), + [ts_builtin_sym_end] = ACTIONS(2582), + [sym_identifier] = ACTIONS(2584), + [anon_sym_SEMI] = ACTIONS(2582), + [anon_sym_macro_rules_BANG] = ACTIONS(2582), + [anon_sym_LPAREN] = ACTIONS(2582), + [anon_sym_LBRACK] = ACTIONS(2582), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_RBRACE] = ACTIONS(2582), + [anon_sym_STAR] = ACTIONS(2582), + [anon_sym_u8] = ACTIONS(2584), + [anon_sym_i8] = ACTIONS(2584), + [anon_sym_u16] = ACTIONS(2584), + [anon_sym_i16] = ACTIONS(2584), + [anon_sym_u32] = ACTIONS(2584), + [anon_sym_i32] = ACTIONS(2584), + [anon_sym_u64] = ACTIONS(2584), + [anon_sym_i64] = ACTIONS(2584), + [anon_sym_u128] = ACTIONS(2584), + [anon_sym_i128] = ACTIONS(2584), + [anon_sym_isize] = ACTIONS(2584), + [anon_sym_usize] = ACTIONS(2584), + [anon_sym_f32] = ACTIONS(2584), + [anon_sym_f64] = ACTIONS(2584), + [anon_sym_bool] = ACTIONS(2584), + [anon_sym_str] = ACTIONS(2584), + [anon_sym_char] = ACTIONS(2584), + [anon_sym_DASH] = ACTIONS(2582), + [anon_sym_BANG] = ACTIONS(2582), + [anon_sym_AMP] = ACTIONS(2582), + [anon_sym_PIPE] = ACTIONS(2582), + [anon_sym_LT] = ACTIONS(2582), + [anon_sym_DOT_DOT] = ACTIONS(2582), + [anon_sym_COLON_COLON] = ACTIONS(2582), + [anon_sym_POUND] = ACTIONS(2582), + [anon_sym_SQUOTE] = ACTIONS(2584), + [anon_sym_async] = ACTIONS(2584), + [anon_sym_break] = ACTIONS(2584), + [anon_sym_const] = ACTIONS(2584), + [anon_sym_continue] = ACTIONS(2584), + [anon_sym_default] = ACTIONS(2584), + [anon_sym_enum] = ACTIONS(2584), + [anon_sym_fn] = ACTIONS(2584), + [anon_sym_for] = ACTIONS(2584), + [anon_sym_gen] = ACTIONS(2584), + [anon_sym_if] = ACTIONS(2584), + [anon_sym_impl] = ACTIONS(2584), + [anon_sym_let] = ACTIONS(2584), + [anon_sym_loop] = ACTIONS(2584), + [anon_sym_match] = ACTIONS(2584), + [anon_sym_mod] = ACTIONS(2584), + [anon_sym_pub] = ACTIONS(2584), + [anon_sym_return] = ACTIONS(2584), + [anon_sym_static] = ACTIONS(2584), + [anon_sym_struct] = ACTIONS(2584), + [anon_sym_trait] = ACTIONS(2584), + [anon_sym_type] = ACTIONS(2584), + [anon_sym_union] = ACTIONS(2584), [anon_sym_unsafe] = ACTIONS(2584), - [anon_sym_use] = ACTIONS(2586), + [anon_sym_use] = ACTIONS(2584), + [anon_sym_while] = ACTIONS(2584), + [anon_sym_extern] = ACTIONS(2584), + [anon_sym_yield] = ACTIONS(2584), + [anon_sym_move] = ACTIONS(2584), + [anon_sym_try] = ACTIONS(2584), + [sym_integer_literal] = ACTIONS(2582), + [aux_sym_string_literal_token1] = ACTIONS(2582), + [sym_char_literal] = ACTIONS(2582), + [anon_sym_true] = ACTIONS(2584), + [anon_sym_false] = ACTIONS(2584), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2584), + [sym_super] = ACTIONS(2584), + [sym_crate] = ACTIONS(2584), + [sym_metavariable] = ACTIONS(2582), + [sym__raw_string_literal_start] = ACTIONS(2582), + [sym_float_literal] = ACTIONS(2582), + }, + [STATE(684)] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), + [ts_builtin_sym_end] = ACTIONS(2586), + [sym_identifier] = ACTIONS(2588), + [anon_sym_SEMI] = ACTIONS(2586), + [anon_sym_macro_rules_BANG] = ACTIONS(2586), + [anon_sym_LPAREN] = ACTIONS(2586), + [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(2586), + [anon_sym_u8] = ACTIONS(2588), + [anon_sym_i8] = ACTIONS(2588), + [anon_sym_u16] = ACTIONS(2588), + [anon_sym_i16] = ACTIONS(2588), + [anon_sym_u32] = ACTIONS(2588), + [anon_sym_i32] = ACTIONS(2588), + [anon_sym_u64] = ACTIONS(2588), + [anon_sym_i64] = ACTIONS(2588), + [anon_sym_u128] = ACTIONS(2588), + [anon_sym_i128] = ACTIONS(2588), + [anon_sym_isize] = ACTIONS(2588), + [anon_sym_usize] = ACTIONS(2588), + [anon_sym_f32] = ACTIONS(2588), + [anon_sym_f64] = ACTIONS(2588), + [anon_sym_bool] = ACTIONS(2588), + [anon_sym_str] = ACTIONS(2588), + [anon_sym_char] = ACTIONS(2588), + [anon_sym_DASH] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(2586), + [anon_sym_AMP] = ACTIONS(2586), + [anon_sym_PIPE] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2586), + [anon_sym_DOT_DOT] = ACTIONS(2586), + [anon_sym_COLON_COLON] = ACTIONS(2586), + [anon_sym_POUND] = ACTIONS(2586), + [anon_sym_SQUOTE] = ACTIONS(2588), + [anon_sym_async] = ACTIONS(2588), + [anon_sym_break] = ACTIONS(2588), + [anon_sym_const] = ACTIONS(2588), + [anon_sym_continue] = ACTIONS(2588), + [anon_sym_default] = ACTIONS(2588), + [anon_sym_enum] = ACTIONS(2588), + [anon_sym_fn] = ACTIONS(2588), + [anon_sym_for] = ACTIONS(2588), + [anon_sym_gen] = ACTIONS(2588), + [anon_sym_if] = ACTIONS(2588), + [anon_sym_impl] = ACTIONS(2588), + [anon_sym_let] = ACTIONS(2588), + [anon_sym_loop] = ACTIONS(2588), + [anon_sym_match] = ACTIONS(2588), + [anon_sym_mod] = ACTIONS(2588), + [anon_sym_pub] = ACTIONS(2588), + [anon_sym_return] = ACTIONS(2588), + [anon_sym_static] = ACTIONS(2588), + [anon_sym_struct] = ACTIONS(2588), + [anon_sym_trait] = ACTIONS(2588), + [anon_sym_type] = ACTIONS(2588), + [anon_sym_union] = ACTIONS(2588), + [anon_sym_unsafe] = ACTIONS(2588), + [anon_sym_use] = ACTIONS(2588), + [anon_sym_while] = ACTIONS(2588), [anon_sym_extern] = ACTIONS(2588), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2590), - [sym_super] = ACTIONS(2590), + [anon_sym_yield] = ACTIONS(2588), + [anon_sym_move] = ACTIONS(2588), + [anon_sym_try] = ACTIONS(2588), + [sym_integer_literal] = ACTIONS(2586), + [aux_sym_string_literal_token1] = ACTIONS(2586), + [sym_char_literal] = ACTIONS(2586), + [anon_sym_true] = ACTIONS(2588), + [anon_sym_false] = ACTIONS(2588), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2588), + [sym_super] = ACTIONS(2588), + [sym_crate] = ACTIONS(2588), + [sym_metavariable] = ACTIONS(2586), + [sym__raw_string_literal_start] = ACTIONS(2586), + [sym_float_literal] = ACTIONS(2586), + }, + [STATE(685)] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), + [ts_builtin_sym_end] = ACTIONS(2590), + [sym_identifier] = ACTIONS(2592), + [anon_sym_SEMI] = ACTIONS(2590), + [anon_sym_macro_rules_BANG] = ACTIONS(2590), + [anon_sym_LPAREN] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2590), + [anon_sym_RBRACE] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2590), + [anon_sym_u8] = ACTIONS(2592), + [anon_sym_i8] = ACTIONS(2592), + [anon_sym_u16] = ACTIONS(2592), + [anon_sym_i16] = ACTIONS(2592), + [anon_sym_u32] = ACTIONS(2592), + [anon_sym_i32] = ACTIONS(2592), + [anon_sym_u64] = ACTIONS(2592), + [anon_sym_i64] = ACTIONS(2592), + [anon_sym_u128] = ACTIONS(2592), + [anon_sym_i128] = ACTIONS(2592), + [anon_sym_isize] = ACTIONS(2592), + [anon_sym_usize] = ACTIONS(2592), + [anon_sym_f32] = ACTIONS(2592), + [anon_sym_f64] = ACTIONS(2592), + [anon_sym_bool] = ACTIONS(2592), + [anon_sym_str] = ACTIONS(2592), + [anon_sym_char] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_AMP] = ACTIONS(2590), + [anon_sym_PIPE] = ACTIONS(2590), + [anon_sym_LT] = ACTIONS(2590), + [anon_sym_DOT_DOT] = ACTIONS(2590), + [anon_sym_COLON_COLON] = ACTIONS(2590), + [anon_sym_POUND] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_async] = ACTIONS(2592), + [anon_sym_break] = ACTIONS(2592), + [anon_sym_const] = ACTIONS(2592), + [anon_sym_continue] = ACTIONS(2592), + [anon_sym_default] = ACTIONS(2592), + [anon_sym_enum] = ACTIONS(2592), + [anon_sym_fn] = ACTIONS(2592), + [anon_sym_for] = ACTIONS(2592), + [anon_sym_gen] = ACTIONS(2592), + [anon_sym_if] = ACTIONS(2592), + [anon_sym_impl] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), + [anon_sym_loop] = ACTIONS(2592), + [anon_sym_match] = ACTIONS(2592), + [anon_sym_mod] = ACTIONS(2592), + [anon_sym_pub] = ACTIONS(2592), + [anon_sym_return] = ACTIONS(2592), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_struct] = ACTIONS(2592), + [anon_sym_trait] = ACTIONS(2592), + [anon_sym_type] = ACTIONS(2592), + [anon_sym_union] = ACTIONS(2592), + [anon_sym_unsafe] = ACTIONS(2592), + [anon_sym_use] = ACTIONS(2592), + [anon_sym_while] = ACTIONS(2592), + [anon_sym_extern] = ACTIONS(2592), + [anon_sym_yield] = ACTIONS(2592), + [anon_sym_move] = ACTIONS(2592), + [anon_sym_try] = ACTIONS(2592), + [sym_integer_literal] = ACTIONS(2590), + [aux_sym_string_literal_token1] = ACTIONS(2590), + [sym_char_literal] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2592), + [anon_sym_false] = ACTIONS(2592), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2592), + [sym_super] = ACTIONS(2592), [sym_crate] = ACTIONS(2592), - [sym_metavariable] = ACTIONS(2594), + [sym_metavariable] = ACTIONS(2590), + [sym__raw_string_literal_start] = ACTIONS(2590), + [sym_float_literal] = ACTIONS(2590), }, - [STATE(661)] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), + [STATE(686)] = { + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym_closure_expression] = STATE(3258), + [sym_closure_parameters] = STATE(245), + [sym__pattern] = STATE(3040), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_move] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(687)] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), [ts_builtin_sym_end] = ACTIONS(2596), [sym_identifier] = ACTIONS(2598), [anon_sym_SEMI] = ACTIONS(2596), @@ -84829,90 +87113,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2596), [sym_float_literal] = ACTIONS(2596), }, - [STATE(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), + [STATE(688)] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), [ts_builtin_sym_end] = ACTIONS(2600), [sym_identifier] = ACTIONS(2602), [anon_sym_SEMI] = ACTIONS(2600), @@ -84991,1791 +87194,1467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2600), [sym_float_literal] = ACTIONS(2600), }, - [STATE(664)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3252), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(2604), - [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(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2606), - [anon_sym_u8] = ACTIONS(2608), - [anon_sym_i8] = ACTIONS(2608), - [anon_sym_u16] = ACTIONS(2608), - [anon_sym_i16] = ACTIONS(2608), - [anon_sym_u32] = ACTIONS(2608), - [anon_sym_i32] = ACTIONS(2608), - [anon_sym_u64] = ACTIONS(2608), - [anon_sym_i64] = ACTIONS(2608), - [anon_sym_u128] = ACTIONS(2608), - [anon_sym_i128] = ACTIONS(2608), - [anon_sym_isize] = ACTIONS(2608), - [anon_sym_usize] = ACTIONS(2608), - [anon_sym_f32] = ACTIONS(2608), - [anon_sym_f64] = ACTIONS(2608), - [anon_sym_bool] = ACTIONS(2608), - [anon_sym_str] = ACTIONS(2608), - [anon_sym_char] = ACTIONS(2608), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_DOT_DOT] = ACTIONS(2606), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2606), - [anon_sym_SQUOTE] = ACTIONS(2608), - [anon_sym_async] = ACTIONS(2608), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_const] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2608), - [anon_sym_default] = ACTIONS(2608), - [anon_sym_enum] = ACTIONS(2608), - [anon_sym_fn] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2608), - [anon_sym_gen] = ACTIONS(2608), - [anon_sym_if] = ACTIONS(2608), - [anon_sym_impl] = ACTIONS(2608), - [anon_sym_let] = ACTIONS(2608), - [anon_sym_loop] = ACTIONS(2608), - [anon_sym_match] = ACTIONS(2608), - [anon_sym_mod] = ACTIONS(2608), - [anon_sym_pub] = ACTIONS(2608), - [anon_sym_return] = ACTIONS(2608), - [anon_sym_static] = ACTIONS(2608), - [anon_sym_struct] = ACTIONS(2608), - [anon_sym_trait] = ACTIONS(2608), - [anon_sym_type] = ACTIONS(2608), - [anon_sym_union] = ACTIONS(2608), - [anon_sym_unsafe] = ACTIONS(2608), - [anon_sym_use] = ACTIONS(2608), - [anon_sym_while] = ACTIONS(2608), - [anon_sym_extern] = ACTIONS(2608), - [anon_sym_yield] = ACTIONS(2608), - [anon_sym_move] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2608), - [sym_integer_literal] = ACTIONS(2606), - [aux_sym_string_literal_token1] = ACTIONS(2606), - [sym_char_literal] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2608), - [anon_sym_false] = ACTIONS(2608), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2608), - [sym_super] = ACTIONS(2608), - [sym_crate] = ACTIONS(2608), - [sym_metavariable] = ACTIONS(2606), - [sym__raw_string_literal_start] = ACTIONS(2606), - [sym_float_literal] = ACTIONS(2606), - }, - [STATE(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2610), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LBRACK] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2610), - [anon_sym_RBRACE] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(2610), - [anon_sym_u8] = ACTIONS(2612), - [anon_sym_i8] = ACTIONS(2612), - [anon_sym_u16] = ACTIONS(2612), - [anon_sym_i16] = ACTIONS(2612), - [anon_sym_u32] = ACTIONS(2612), - [anon_sym_i32] = ACTIONS(2612), - [anon_sym_u64] = ACTIONS(2612), - [anon_sym_i64] = ACTIONS(2612), - [anon_sym_u128] = ACTIONS(2612), - [anon_sym_i128] = ACTIONS(2612), - [anon_sym_isize] = ACTIONS(2612), - [anon_sym_usize] = ACTIONS(2612), - [anon_sym_f32] = ACTIONS(2612), - [anon_sym_f64] = ACTIONS(2612), - [anon_sym_bool] = ACTIONS(2612), - [anon_sym_str] = ACTIONS(2612), - [anon_sym_char] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_BANG] = ACTIONS(2610), - [anon_sym_AMP] = ACTIONS(2610), - [anon_sym_PIPE] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(2610), - [anon_sym_DOT_DOT] = ACTIONS(2610), - [anon_sym_COLON_COLON] = ACTIONS(2610), - [anon_sym_POUND] = ACTIONS(2610), - [anon_sym_SQUOTE] = ACTIONS(2612), - [anon_sym_async] = ACTIONS(2612), - [anon_sym_break] = ACTIONS(2612), - [anon_sym_const] = ACTIONS(2612), - [anon_sym_continue] = ACTIONS(2612), - [anon_sym_default] = ACTIONS(2612), - [anon_sym_enum] = ACTIONS(2612), - [anon_sym_fn] = ACTIONS(2612), - [anon_sym_for] = ACTIONS(2612), - [anon_sym_gen] = ACTIONS(2612), - [anon_sym_if] = ACTIONS(2612), - [anon_sym_impl] = ACTIONS(2612), - [anon_sym_let] = ACTIONS(2612), - [anon_sym_loop] = ACTIONS(2612), - [anon_sym_match] = ACTIONS(2612), - [anon_sym_mod] = ACTIONS(2612), - [anon_sym_pub] = ACTIONS(2612), - [anon_sym_return] = ACTIONS(2612), - [anon_sym_static] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(2612), - [anon_sym_trait] = ACTIONS(2612), - [anon_sym_type] = ACTIONS(2612), - [anon_sym_union] = ACTIONS(2612), - [anon_sym_unsafe] = ACTIONS(2612), - [anon_sym_use] = ACTIONS(2612), - [anon_sym_while] = ACTIONS(2612), - [anon_sym_extern] = ACTIONS(2612), - [anon_sym_yield] = ACTIONS(2612), - [anon_sym_move] = ACTIONS(2612), - [anon_sym_try] = ACTIONS(2612), - [sym_integer_literal] = ACTIONS(2610), - [aux_sym_string_literal_token1] = ACTIONS(2610), - [sym_char_literal] = ACTIONS(2610), - [anon_sym_true] = ACTIONS(2612), - [anon_sym_false] = ACTIONS(2612), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2612), - [sym_super] = ACTIONS(2612), - [sym_crate] = ACTIONS(2612), - [sym_metavariable] = ACTIONS(2610), - [sym__raw_string_literal_start] = ACTIONS(2610), - [sym_float_literal] = ACTIONS(2610), - }, - [STATE(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_RBRACE] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2614), - [anon_sym_u8] = ACTIONS(2616), - [anon_sym_i8] = ACTIONS(2616), - [anon_sym_u16] = ACTIONS(2616), - [anon_sym_i16] = ACTIONS(2616), - [anon_sym_u32] = ACTIONS(2616), - [anon_sym_i32] = ACTIONS(2616), - [anon_sym_u64] = ACTIONS(2616), - [anon_sym_i64] = ACTIONS(2616), - [anon_sym_u128] = ACTIONS(2616), - [anon_sym_i128] = ACTIONS(2616), - [anon_sym_isize] = ACTIONS(2616), - [anon_sym_usize] = ACTIONS(2616), - [anon_sym_f32] = ACTIONS(2616), - [anon_sym_f64] = ACTIONS(2616), - [anon_sym_bool] = ACTIONS(2616), - [anon_sym_str] = ACTIONS(2616), - [anon_sym_char] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2614), - [anon_sym_DOT_DOT] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2614), - [anon_sym_POUND] = ACTIONS(2614), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_async] = ACTIONS(2616), - [anon_sym_break] = ACTIONS(2616), - [anon_sym_const] = ACTIONS(2616), - [anon_sym_continue] = ACTIONS(2616), - [anon_sym_default] = ACTIONS(2616), - [anon_sym_enum] = ACTIONS(2616), - [anon_sym_fn] = ACTIONS(2616), - [anon_sym_for] = ACTIONS(2616), - [anon_sym_gen] = ACTIONS(2616), - [anon_sym_if] = ACTIONS(2616), - [anon_sym_impl] = ACTIONS(2616), - [anon_sym_let] = ACTIONS(2616), - [anon_sym_loop] = ACTIONS(2616), - [anon_sym_match] = ACTIONS(2616), - [anon_sym_mod] = ACTIONS(2616), - [anon_sym_pub] = ACTIONS(2616), - [anon_sym_return] = ACTIONS(2616), - [anon_sym_static] = ACTIONS(2616), - [anon_sym_struct] = ACTIONS(2616), - [anon_sym_trait] = ACTIONS(2616), - [anon_sym_type] = ACTIONS(2616), - [anon_sym_union] = ACTIONS(2616), - [anon_sym_unsafe] = ACTIONS(2616), - [anon_sym_use] = ACTIONS(2616), - [anon_sym_while] = ACTIONS(2616), - [anon_sym_extern] = ACTIONS(2616), - [anon_sym_yield] = ACTIONS(2616), - [anon_sym_move] = ACTIONS(2616), - [anon_sym_try] = ACTIONS(2616), - [sym_integer_literal] = ACTIONS(2614), - [aux_sym_string_literal_token1] = ACTIONS(2614), - [sym_char_literal] = ACTIONS(2614), - [anon_sym_true] = ACTIONS(2616), - [anon_sym_false] = ACTIONS(2616), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2616), - [sym_super] = ACTIONS(2616), - [sym_crate] = ACTIONS(2616), - [sym_metavariable] = ACTIONS(2614), - [sym__raw_string_literal_start] = ACTIONS(2614), - [sym_float_literal] = ACTIONS(2614), - }, - [STATE(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(689)] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), + [ts_builtin_sym_end] = ACTIONS(2604), + [sym_identifier] = ACTIONS(2606), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym_macro_rules_BANG] = ACTIONS(2604), + [anon_sym_LPAREN] = ACTIONS(2604), + [anon_sym_LBRACK] = ACTIONS(2604), + [anon_sym_LBRACE] = ACTIONS(2604), + [anon_sym_RBRACE] = ACTIONS(2604), + [anon_sym_STAR] = ACTIONS(2604), + [anon_sym_u8] = ACTIONS(2606), + [anon_sym_i8] = ACTIONS(2606), + [anon_sym_u16] = ACTIONS(2606), + [anon_sym_i16] = ACTIONS(2606), + [anon_sym_u32] = ACTIONS(2606), + [anon_sym_i32] = ACTIONS(2606), + [anon_sym_u64] = ACTIONS(2606), + [anon_sym_i64] = ACTIONS(2606), + [anon_sym_u128] = ACTIONS(2606), + [anon_sym_i128] = ACTIONS(2606), + [anon_sym_isize] = ACTIONS(2606), + [anon_sym_usize] = ACTIONS(2606), + [anon_sym_f32] = ACTIONS(2606), + [anon_sym_f64] = ACTIONS(2606), + [anon_sym_bool] = ACTIONS(2606), + [anon_sym_str] = ACTIONS(2606), + [anon_sym_char] = ACTIONS(2606), + [anon_sym_DASH] = ACTIONS(2604), + [anon_sym_BANG] = ACTIONS(2604), + [anon_sym_AMP] = ACTIONS(2604), + [anon_sym_PIPE] = ACTIONS(2604), + [anon_sym_LT] = ACTIONS(2604), + [anon_sym_DOT_DOT] = ACTIONS(2604), + [anon_sym_COLON_COLON] = ACTIONS(2604), + [anon_sym_POUND] = ACTIONS(2604), + [anon_sym_SQUOTE] = ACTIONS(2606), + [anon_sym_async] = ACTIONS(2606), + [anon_sym_break] = ACTIONS(2606), + [anon_sym_const] = ACTIONS(2606), + [anon_sym_continue] = ACTIONS(2606), + [anon_sym_default] = ACTIONS(2606), + [anon_sym_enum] = ACTIONS(2606), + [anon_sym_fn] = ACTIONS(2606), + [anon_sym_for] = ACTIONS(2606), + [anon_sym_gen] = ACTIONS(2606), + [anon_sym_if] = ACTIONS(2606), + [anon_sym_impl] = ACTIONS(2606), + [anon_sym_let] = ACTIONS(2606), + [anon_sym_loop] = ACTIONS(2606), + [anon_sym_match] = ACTIONS(2606), + [anon_sym_mod] = ACTIONS(2606), + [anon_sym_pub] = ACTIONS(2606), + [anon_sym_return] = ACTIONS(2606), + [anon_sym_static] = ACTIONS(2606), + [anon_sym_struct] = ACTIONS(2606), + [anon_sym_trait] = ACTIONS(2606), + [anon_sym_type] = ACTIONS(2606), + [anon_sym_union] = ACTIONS(2606), + [anon_sym_unsafe] = ACTIONS(2606), + [anon_sym_use] = ACTIONS(2606), + [anon_sym_while] = ACTIONS(2606), + [anon_sym_extern] = ACTIONS(2606), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_move] = ACTIONS(2606), + [anon_sym_try] = ACTIONS(2606), + [sym_integer_literal] = ACTIONS(2604), + [aux_sym_string_literal_token1] = ACTIONS(2604), + [sym_char_literal] = ACTIONS(2604), + [anon_sym_true] = ACTIONS(2606), + [anon_sym_false] = ACTIONS(2606), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2606), + [sym_super] = ACTIONS(2606), + [sym_crate] = ACTIONS(2606), + [sym_metavariable] = ACTIONS(2604), + [sym__raw_string_literal_start] = ACTIONS(2604), + [sym_float_literal] = ACTIONS(2604), }, - [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), - [anon_sym_macro_rules_BANG] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2618), - [anon_sym_u8] = ACTIONS(2620), - [anon_sym_i8] = ACTIONS(2620), - [anon_sym_u16] = ACTIONS(2620), - [anon_sym_i16] = ACTIONS(2620), - [anon_sym_u32] = ACTIONS(2620), - [anon_sym_i32] = ACTIONS(2620), - [anon_sym_u64] = ACTIONS(2620), - [anon_sym_i64] = ACTIONS(2620), - [anon_sym_u128] = ACTIONS(2620), - [anon_sym_i128] = ACTIONS(2620), - [anon_sym_isize] = ACTIONS(2620), - [anon_sym_usize] = ACTIONS(2620), - [anon_sym_f32] = ACTIONS(2620), - [anon_sym_f64] = ACTIONS(2620), - [anon_sym_bool] = ACTIONS(2620), - [anon_sym_str] = ACTIONS(2620), - [anon_sym_char] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_BANG] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2618), - [anon_sym_DOT_DOT] = ACTIONS(2618), - [anon_sym_COLON_COLON] = ACTIONS(2618), - [anon_sym_POUND] = ACTIONS(2618), - [anon_sym_SQUOTE] = ACTIONS(2620), - [anon_sym_async] = ACTIONS(2620), - [anon_sym_break] = ACTIONS(2620), - [anon_sym_const] = ACTIONS(2620), - [anon_sym_continue] = ACTIONS(2620), - [anon_sym_default] = ACTIONS(2620), - [anon_sym_enum] = ACTIONS(2620), - [anon_sym_fn] = ACTIONS(2620), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_gen] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_impl] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_loop] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_mod] = ACTIONS(2620), - [anon_sym_pub] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(2620), - [anon_sym_trait] = ACTIONS(2620), - [anon_sym_type] = ACTIONS(2620), - [anon_sym_union] = ACTIONS(2620), - [anon_sym_unsafe] = ACTIONS(2620), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_extern] = ACTIONS(2620), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_move] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [sym_integer_literal] = ACTIONS(2618), - [aux_sym_string_literal_token1] = ACTIONS(2618), - [sym_char_literal] = ACTIONS(2618), - [anon_sym_true] = ACTIONS(2620), - [anon_sym_false] = ACTIONS(2620), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2620), - [sym_super] = ACTIONS(2620), - [sym_crate] = ACTIONS(2620), - [sym_metavariable] = ACTIONS(2618), - [sym__raw_string_literal_start] = ACTIONS(2618), - [sym_float_literal] = ACTIONS(2618), + [STATE(690)] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), + [ts_builtin_sym_end] = ACTIONS(2608), + [sym_identifier] = ACTIONS(2610), + [anon_sym_SEMI] = ACTIONS(2608), + [anon_sym_macro_rules_BANG] = ACTIONS(2608), + [anon_sym_LPAREN] = ACTIONS(2608), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_RBRACE] = ACTIONS(2608), + [anon_sym_STAR] = ACTIONS(2608), + [anon_sym_u8] = ACTIONS(2610), + [anon_sym_i8] = ACTIONS(2610), + [anon_sym_u16] = ACTIONS(2610), + [anon_sym_i16] = ACTIONS(2610), + [anon_sym_u32] = ACTIONS(2610), + [anon_sym_i32] = ACTIONS(2610), + [anon_sym_u64] = ACTIONS(2610), + [anon_sym_i64] = ACTIONS(2610), + [anon_sym_u128] = ACTIONS(2610), + [anon_sym_i128] = ACTIONS(2610), + [anon_sym_isize] = ACTIONS(2610), + [anon_sym_usize] = ACTIONS(2610), + [anon_sym_f32] = ACTIONS(2610), + [anon_sym_f64] = ACTIONS(2610), + [anon_sym_bool] = ACTIONS(2610), + [anon_sym_str] = ACTIONS(2610), + [anon_sym_char] = ACTIONS(2610), + [anon_sym_DASH] = ACTIONS(2608), + [anon_sym_BANG] = ACTIONS(2608), + [anon_sym_AMP] = ACTIONS(2608), + [anon_sym_PIPE] = ACTIONS(2608), + [anon_sym_LT] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(2608), + [anon_sym_POUND] = ACTIONS(2608), + [anon_sym_SQUOTE] = ACTIONS(2610), + [anon_sym_async] = ACTIONS(2610), + [anon_sym_break] = ACTIONS(2610), + [anon_sym_const] = ACTIONS(2610), + [anon_sym_continue] = ACTIONS(2610), + [anon_sym_default] = ACTIONS(2610), + [anon_sym_enum] = ACTIONS(2610), + [anon_sym_fn] = ACTIONS(2610), + [anon_sym_for] = ACTIONS(2610), + [anon_sym_gen] = ACTIONS(2610), + [anon_sym_if] = ACTIONS(2610), + [anon_sym_impl] = ACTIONS(2610), + [anon_sym_let] = ACTIONS(2610), + [anon_sym_loop] = ACTIONS(2610), + [anon_sym_match] = ACTIONS(2610), + [anon_sym_mod] = ACTIONS(2610), + [anon_sym_pub] = ACTIONS(2610), + [anon_sym_return] = ACTIONS(2610), + [anon_sym_static] = ACTIONS(2610), + [anon_sym_struct] = ACTIONS(2610), + [anon_sym_trait] = ACTIONS(2610), + [anon_sym_type] = ACTIONS(2610), + [anon_sym_union] = ACTIONS(2610), + [anon_sym_unsafe] = ACTIONS(2610), + [anon_sym_use] = ACTIONS(2610), + [anon_sym_while] = ACTIONS(2610), + [anon_sym_extern] = ACTIONS(2610), + [anon_sym_yield] = ACTIONS(2610), + [anon_sym_move] = ACTIONS(2610), + [anon_sym_try] = ACTIONS(2610), + [sym_integer_literal] = ACTIONS(2608), + [aux_sym_string_literal_token1] = ACTIONS(2608), + [sym_char_literal] = ACTIONS(2608), + [anon_sym_true] = ACTIONS(2610), + [anon_sym_false] = ACTIONS(2610), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2610), + [sym_super] = ACTIONS(2610), + [sym_crate] = ACTIONS(2610), + [sym_metavariable] = ACTIONS(2608), + [sym__raw_string_literal_start] = ACTIONS(2608), + [sym_float_literal] = ACTIONS(2608), }, - [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(691)] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), + [ts_builtin_sym_end] = ACTIONS(2612), + [sym_identifier] = ACTIONS(2614), + [anon_sym_SEMI] = ACTIONS(2612), + [anon_sym_macro_rules_BANG] = ACTIONS(2612), + [anon_sym_LPAREN] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2612), + [anon_sym_RBRACE] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2612), + [anon_sym_u8] = ACTIONS(2614), + [anon_sym_i8] = ACTIONS(2614), + [anon_sym_u16] = ACTIONS(2614), + [anon_sym_i16] = ACTIONS(2614), + [anon_sym_u32] = ACTIONS(2614), + [anon_sym_i32] = ACTIONS(2614), + [anon_sym_u64] = ACTIONS(2614), + [anon_sym_i64] = ACTIONS(2614), + [anon_sym_u128] = ACTIONS(2614), + [anon_sym_i128] = ACTIONS(2614), + [anon_sym_isize] = ACTIONS(2614), + [anon_sym_usize] = ACTIONS(2614), + [anon_sym_f32] = ACTIONS(2614), + [anon_sym_f64] = ACTIONS(2614), + [anon_sym_bool] = ACTIONS(2614), + [anon_sym_str] = ACTIONS(2614), + [anon_sym_char] = ACTIONS(2614), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_AMP] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2612), + [anon_sym_LT] = ACTIONS(2612), + [anon_sym_DOT_DOT] = ACTIONS(2612), + [anon_sym_COLON_COLON] = ACTIONS(2612), + [anon_sym_POUND] = ACTIONS(2612), + [anon_sym_SQUOTE] = ACTIONS(2614), + [anon_sym_async] = ACTIONS(2614), + [anon_sym_break] = ACTIONS(2614), + [anon_sym_const] = ACTIONS(2614), + [anon_sym_continue] = ACTIONS(2614), + [anon_sym_default] = ACTIONS(2614), + [anon_sym_enum] = ACTIONS(2614), + [anon_sym_fn] = ACTIONS(2614), + [anon_sym_for] = ACTIONS(2614), + [anon_sym_gen] = ACTIONS(2614), + [anon_sym_if] = ACTIONS(2614), + [anon_sym_impl] = ACTIONS(2614), + [anon_sym_let] = ACTIONS(2614), + [anon_sym_loop] = ACTIONS(2614), + [anon_sym_match] = ACTIONS(2614), + [anon_sym_mod] = ACTIONS(2614), + [anon_sym_pub] = ACTIONS(2614), + [anon_sym_return] = ACTIONS(2614), + [anon_sym_static] = ACTIONS(2614), + [anon_sym_struct] = ACTIONS(2614), + [anon_sym_trait] = ACTIONS(2614), + [anon_sym_type] = ACTIONS(2614), + [anon_sym_union] = ACTIONS(2614), + [anon_sym_unsafe] = ACTIONS(2614), + [anon_sym_use] = ACTIONS(2614), + [anon_sym_while] = ACTIONS(2614), + [anon_sym_extern] = ACTIONS(2614), + [anon_sym_yield] = ACTIONS(2614), + [anon_sym_move] = ACTIONS(2614), + [anon_sym_try] = ACTIONS(2614), + [sym_integer_literal] = ACTIONS(2612), + [aux_sym_string_literal_token1] = ACTIONS(2612), + [sym_char_literal] = ACTIONS(2612), + [anon_sym_true] = ACTIONS(2614), + [anon_sym_false] = ACTIONS(2614), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2614), + [sym_super] = ACTIONS(2614), + [sym_crate] = ACTIONS(2614), + [sym_metavariable] = ACTIONS(2612), + [sym__raw_string_literal_start] = ACTIONS(2612), + [sym_float_literal] = ACTIONS(2612), }, - [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(692)] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), + [ts_builtin_sym_end] = ACTIONS(2616), + [sym_identifier] = ACTIONS(2618), + [anon_sym_SEMI] = ACTIONS(2616), + [anon_sym_macro_rules_BANG] = ACTIONS(2616), + [anon_sym_LPAREN] = ACTIONS(2616), + [anon_sym_LBRACK] = ACTIONS(2616), + [anon_sym_LBRACE] = ACTIONS(2616), + [anon_sym_RBRACE] = ACTIONS(2616), + [anon_sym_STAR] = ACTIONS(2616), + [anon_sym_u8] = ACTIONS(2618), + [anon_sym_i8] = ACTIONS(2618), + [anon_sym_u16] = ACTIONS(2618), + [anon_sym_i16] = ACTIONS(2618), + [anon_sym_u32] = ACTIONS(2618), + [anon_sym_i32] = ACTIONS(2618), + [anon_sym_u64] = ACTIONS(2618), + [anon_sym_i64] = ACTIONS(2618), + [anon_sym_u128] = ACTIONS(2618), + [anon_sym_i128] = ACTIONS(2618), + [anon_sym_isize] = ACTIONS(2618), + [anon_sym_usize] = ACTIONS(2618), + [anon_sym_f32] = ACTIONS(2618), + [anon_sym_f64] = ACTIONS(2618), + [anon_sym_bool] = ACTIONS(2618), + [anon_sym_str] = ACTIONS(2618), + [anon_sym_char] = ACTIONS(2618), + [anon_sym_DASH] = ACTIONS(2616), + [anon_sym_BANG] = ACTIONS(2616), + [anon_sym_AMP] = ACTIONS(2616), + [anon_sym_PIPE] = ACTIONS(2616), + [anon_sym_LT] = ACTIONS(2616), + [anon_sym_DOT_DOT] = ACTIONS(2616), + [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_POUND] = ACTIONS(2616), + [anon_sym_SQUOTE] = ACTIONS(2618), + [anon_sym_async] = ACTIONS(2618), + [anon_sym_break] = ACTIONS(2618), + [anon_sym_const] = ACTIONS(2618), + [anon_sym_continue] = ACTIONS(2618), + [anon_sym_default] = ACTIONS(2618), + [anon_sym_enum] = ACTIONS(2618), + [anon_sym_fn] = ACTIONS(2618), + [anon_sym_for] = ACTIONS(2618), + [anon_sym_gen] = ACTIONS(2618), + [anon_sym_if] = ACTIONS(2618), + [anon_sym_impl] = ACTIONS(2618), + [anon_sym_let] = ACTIONS(2618), + [anon_sym_loop] = ACTIONS(2618), + [anon_sym_match] = ACTIONS(2618), + [anon_sym_mod] = ACTIONS(2618), + [anon_sym_pub] = ACTIONS(2618), + [anon_sym_return] = ACTIONS(2618), + [anon_sym_static] = ACTIONS(2618), + [anon_sym_struct] = ACTIONS(2618), + [anon_sym_trait] = ACTIONS(2618), + [anon_sym_type] = ACTIONS(2618), + [anon_sym_union] = ACTIONS(2618), + [anon_sym_unsafe] = ACTIONS(2618), + [anon_sym_use] = ACTIONS(2618), + [anon_sym_while] = ACTIONS(2618), + [anon_sym_extern] = ACTIONS(2618), + [anon_sym_yield] = ACTIONS(2618), + [anon_sym_move] = ACTIONS(2618), + [anon_sym_try] = ACTIONS(2618), + [sym_integer_literal] = ACTIONS(2616), + [aux_sym_string_literal_token1] = ACTIONS(2616), + [sym_char_literal] = ACTIONS(2616), + [anon_sym_true] = ACTIONS(2618), + [anon_sym_false] = ACTIONS(2618), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2618), + [sym_super] = ACTIONS(2618), + [sym_crate] = ACTIONS(2618), + [sym_metavariable] = ACTIONS(2616), + [sym__raw_string_literal_start] = ACTIONS(2616), + [sym_float_literal] = ACTIONS(2616), }, - [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(693)] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(1519), + [sym_identifier] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_macro_rules_BANG] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_STAR] = ACTIONS(1519), + [anon_sym_u8] = ACTIONS(1521), + [anon_sym_i8] = ACTIONS(1521), + [anon_sym_u16] = ACTIONS(1521), + [anon_sym_i16] = ACTIONS(1521), + [anon_sym_u32] = ACTIONS(1521), + [anon_sym_i32] = ACTIONS(1521), + [anon_sym_u64] = ACTIONS(1521), + [anon_sym_i64] = ACTIONS(1521), + [anon_sym_u128] = ACTIONS(1521), + [anon_sym_i128] = ACTIONS(1521), + [anon_sym_isize] = ACTIONS(1521), + [anon_sym_usize] = ACTIONS(1521), + [anon_sym_f32] = ACTIONS(1521), + [anon_sym_f64] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_str] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_AMP] = ACTIONS(1519), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_LT] = ACTIONS(1519), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1521), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_enum] = ACTIONS(1521), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_gen] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_impl] = ACTIONS(1521), + [anon_sym_let] = ACTIONS(1521), + [anon_sym_loop] = ACTIONS(1521), + [anon_sym_match] = ACTIONS(1521), + [anon_sym_mod] = ACTIONS(1521), + [anon_sym_pub] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_struct] = ACTIONS(1521), + [anon_sym_trait] = ACTIONS(1521), + [anon_sym_type] = ACTIONS(1521), + [anon_sym_union] = ACTIONS(1521), + [anon_sym_unsafe] = ACTIONS(1521), + [anon_sym_use] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_extern] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1519), + [aux_sym_string_literal_token1] = ACTIONS(1519), + [sym_char_literal] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1521), + [sym_super] = ACTIONS(1521), + [sym_crate] = ACTIONS(1521), + [sym_metavariable] = ACTIONS(1519), + [sym__raw_string_literal_start] = ACTIONS(1519), + [sym_float_literal] = ACTIONS(1519), }, - [STATE(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_RBRACE] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_u8] = ACTIONS(2624), - [anon_sym_i8] = ACTIONS(2624), - [anon_sym_u16] = ACTIONS(2624), - [anon_sym_i16] = ACTIONS(2624), - [anon_sym_u32] = ACTIONS(2624), - [anon_sym_i32] = ACTIONS(2624), - [anon_sym_u64] = ACTIONS(2624), - [anon_sym_i64] = ACTIONS(2624), - [anon_sym_u128] = ACTIONS(2624), - [anon_sym_i128] = ACTIONS(2624), - [anon_sym_isize] = ACTIONS(2624), - [anon_sym_usize] = ACTIONS(2624), - [anon_sym_f32] = ACTIONS(2624), - [anon_sym_f64] = ACTIONS(2624), - [anon_sym_bool] = ACTIONS(2624), - [anon_sym_str] = ACTIONS(2624), - [anon_sym_char] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2622), - [anon_sym_PIPE] = ACTIONS(2622), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_DOT_DOT] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2622), - [anon_sym_POUND] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_async] = ACTIONS(2624), - [anon_sym_break] = ACTIONS(2624), - [anon_sym_const] = ACTIONS(2624), - [anon_sym_continue] = ACTIONS(2624), - [anon_sym_default] = ACTIONS(2624), - [anon_sym_enum] = ACTIONS(2624), - [anon_sym_fn] = ACTIONS(2624), - [anon_sym_for] = ACTIONS(2624), - [anon_sym_gen] = ACTIONS(2624), - [anon_sym_if] = ACTIONS(2624), - [anon_sym_impl] = ACTIONS(2624), - [anon_sym_let] = ACTIONS(2624), - [anon_sym_loop] = ACTIONS(2624), - [anon_sym_match] = ACTIONS(2624), - [anon_sym_mod] = ACTIONS(2624), - [anon_sym_pub] = ACTIONS(2624), - [anon_sym_return] = ACTIONS(2624), - [anon_sym_static] = ACTIONS(2624), - [anon_sym_struct] = ACTIONS(2624), - [anon_sym_trait] = ACTIONS(2624), - [anon_sym_type] = ACTIONS(2624), - [anon_sym_union] = ACTIONS(2624), - [anon_sym_unsafe] = ACTIONS(2624), - [anon_sym_use] = ACTIONS(2624), - [anon_sym_while] = ACTIONS(2624), - [anon_sym_extern] = ACTIONS(2624), - [anon_sym_yield] = ACTIONS(2624), - [anon_sym_move] = ACTIONS(2624), - [anon_sym_try] = ACTIONS(2624), - [sym_integer_literal] = ACTIONS(2622), - [aux_sym_string_literal_token1] = ACTIONS(2622), - [sym_char_literal] = ACTIONS(2622), - [anon_sym_true] = ACTIONS(2624), - [anon_sym_false] = ACTIONS(2624), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2624), - [sym_super] = ACTIONS(2624), - [sym_crate] = ACTIONS(2624), - [sym_metavariable] = ACTIONS(2622), - [sym__raw_string_literal_start] = ACTIONS(2622), - [sym_float_literal] = ACTIONS(2622), + [STATE(694)] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [ts_builtin_sym_end] = ACTIONS(2620), + [sym_identifier] = ACTIONS(2622), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_macro_rules_BANG] = ACTIONS(2620), + [anon_sym_LPAREN] = ACTIONS(2620), + [anon_sym_LBRACK] = ACTIONS(2620), + [anon_sym_LBRACE] = ACTIONS(2620), + [anon_sym_RBRACE] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2620), + [anon_sym_u8] = ACTIONS(2622), + [anon_sym_i8] = ACTIONS(2622), + [anon_sym_u16] = ACTIONS(2622), + [anon_sym_i16] = ACTIONS(2622), + [anon_sym_u32] = ACTIONS(2622), + [anon_sym_i32] = ACTIONS(2622), + [anon_sym_u64] = ACTIONS(2622), + [anon_sym_i64] = ACTIONS(2622), + [anon_sym_u128] = ACTIONS(2622), + [anon_sym_i128] = ACTIONS(2622), + [anon_sym_isize] = ACTIONS(2622), + [anon_sym_usize] = ACTIONS(2622), + [anon_sym_f32] = ACTIONS(2622), + [anon_sym_f64] = ACTIONS(2622), + [anon_sym_bool] = ACTIONS(2622), + [anon_sym_str] = ACTIONS(2622), + [anon_sym_char] = ACTIONS(2622), + [anon_sym_DASH] = ACTIONS(2620), + [anon_sym_BANG] = ACTIONS(2620), + [anon_sym_AMP] = ACTIONS(2620), + [anon_sym_PIPE] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(2620), + [anon_sym_DOT_DOT] = ACTIONS(2620), + [anon_sym_COLON_COLON] = ACTIONS(2620), + [anon_sym_POUND] = ACTIONS(2620), + [anon_sym_SQUOTE] = ACTIONS(2622), + [anon_sym_async] = ACTIONS(2622), + [anon_sym_break] = ACTIONS(2622), + [anon_sym_const] = ACTIONS(2622), + [anon_sym_continue] = ACTIONS(2622), + [anon_sym_default] = ACTIONS(2622), + [anon_sym_enum] = ACTIONS(2622), + [anon_sym_fn] = ACTIONS(2622), + [anon_sym_for] = ACTIONS(2622), + [anon_sym_gen] = ACTIONS(2622), + [anon_sym_if] = ACTIONS(2622), + [anon_sym_impl] = ACTIONS(2622), + [anon_sym_let] = ACTIONS(2622), + [anon_sym_loop] = ACTIONS(2622), + [anon_sym_match] = ACTIONS(2622), + [anon_sym_mod] = ACTIONS(2622), + [anon_sym_pub] = ACTIONS(2622), + [anon_sym_return] = ACTIONS(2622), + [anon_sym_static] = ACTIONS(2622), + [anon_sym_struct] = ACTIONS(2622), + [anon_sym_trait] = ACTIONS(2622), + [anon_sym_type] = ACTIONS(2622), + [anon_sym_union] = ACTIONS(2622), + [anon_sym_unsafe] = ACTIONS(2622), + [anon_sym_use] = ACTIONS(2622), + [anon_sym_while] = ACTIONS(2622), + [anon_sym_extern] = ACTIONS(2622), + [anon_sym_yield] = ACTIONS(2622), + [anon_sym_move] = ACTIONS(2622), + [anon_sym_try] = ACTIONS(2622), + [sym_integer_literal] = ACTIONS(2620), + [aux_sym_string_literal_token1] = ACTIONS(2620), + [sym_char_literal] = ACTIONS(2620), + [anon_sym_true] = ACTIONS(2622), + [anon_sym_false] = ACTIONS(2622), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2622), + [sym_super] = ACTIONS(2622), + [sym_crate] = ACTIONS(2622), + [sym_metavariable] = ACTIONS(2620), + [sym__raw_string_literal_start] = ACTIONS(2620), + [sym_float_literal] = ACTIONS(2620), }, - [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), - [anon_sym_macro_rules_BANG] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_u8] = ACTIONS(2628), - [anon_sym_i8] = ACTIONS(2628), - [anon_sym_u16] = ACTIONS(2628), - [anon_sym_i16] = ACTIONS(2628), - [anon_sym_u32] = ACTIONS(2628), - [anon_sym_i32] = ACTIONS(2628), - [anon_sym_u64] = ACTIONS(2628), - [anon_sym_i64] = ACTIONS(2628), - [anon_sym_u128] = ACTIONS(2628), - [anon_sym_i128] = ACTIONS(2628), - [anon_sym_isize] = ACTIONS(2628), - [anon_sym_usize] = ACTIONS(2628), - [anon_sym_f32] = ACTIONS(2628), - [anon_sym_f64] = ACTIONS(2628), - [anon_sym_bool] = ACTIONS(2628), - [anon_sym_str] = ACTIONS(2628), - [anon_sym_char] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2626), - [anon_sym_DOT_DOT] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(2626), - [anon_sym_POUND] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_async] = ACTIONS(2628), - [anon_sym_break] = ACTIONS(2628), - [anon_sym_const] = ACTIONS(2628), - [anon_sym_continue] = ACTIONS(2628), - [anon_sym_default] = ACTIONS(2628), - [anon_sym_enum] = ACTIONS(2628), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2628), - [anon_sym_gen] = ACTIONS(2628), - [anon_sym_if] = ACTIONS(2628), - [anon_sym_impl] = ACTIONS(2628), - [anon_sym_let] = ACTIONS(2628), - [anon_sym_loop] = ACTIONS(2628), - [anon_sym_match] = ACTIONS(2628), - [anon_sym_mod] = ACTIONS(2628), - [anon_sym_pub] = ACTIONS(2628), - [anon_sym_return] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2628), - [anon_sym_struct] = ACTIONS(2628), - [anon_sym_trait] = ACTIONS(2628), - [anon_sym_type] = ACTIONS(2628), - [anon_sym_union] = ACTIONS(2628), - [anon_sym_unsafe] = ACTIONS(2628), - [anon_sym_use] = ACTIONS(2628), - [anon_sym_while] = ACTIONS(2628), - [anon_sym_extern] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2628), - [anon_sym_move] = ACTIONS(2628), - [anon_sym_try] = ACTIONS(2628), - [sym_integer_literal] = ACTIONS(2626), - [aux_sym_string_literal_token1] = ACTIONS(2626), - [sym_char_literal] = ACTIONS(2626), - [anon_sym_true] = ACTIONS(2628), - [anon_sym_false] = ACTIONS(2628), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2628), - [sym_super] = ACTIONS(2628), - [sym_crate] = ACTIONS(2628), - [sym_metavariable] = ACTIONS(2626), - [sym__raw_string_literal_start] = ACTIONS(2626), - [sym_float_literal] = ACTIONS(2626), + [STATE(695)] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(2624), + [sym_identifier] = ACTIONS(2626), + [anon_sym_SEMI] = ACTIONS(2624), + [anon_sym_macro_rules_BANG] = ACTIONS(2624), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_LBRACE] = ACTIONS(2624), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_u8] = ACTIONS(2626), + [anon_sym_i8] = ACTIONS(2626), + [anon_sym_u16] = ACTIONS(2626), + [anon_sym_i16] = ACTIONS(2626), + [anon_sym_u32] = ACTIONS(2626), + [anon_sym_i32] = ACTIONS(2626), + [anon_sym_u64] = ACTIONS(2626), + [anon_sym_i64] = ACTIONS(2626), + [anon_sym_u128] = ACTIONS(2626), + [anon_sym_i128] = ACTIONS(2626), + [anon_sym_isize] = ACTIONS(2626), + [anon_sym_usize] = ACTIONS(2626), + [anon_sym_f32] = ACTIONS(2626), + [anon_sym_f64] = ACTIONS(2626), + [anon_sym_bool] = ACTIONS(2626), + [anon_sym_str] = ACTIONS(2626), + [anon_sym_char] = ACTIONS(2626), + [anon_sym_DASH] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2624), + [anon_sym_PIPE] = ACTIONS(2624), + [anon_sym_LT] = ACTIONS(2624), + [anon_sym_DOT_DOT] = ACTIONS(2624), + [anon_sym_COLON_COLON] = ACTIONS(2624), + [anon_sym_POUND] = ACTIONS(2624), + [anon_sym_SQUOTE] = ACTIONS(2626), + [anon_sym_async] = ACTIONS(2626), + [anon_sym_break] = ACTIONS(2626), + [anon_sym_const] = ACTIONS(2626), + [anon_sym_continue] = ACTIONS(2626), + [anon_sym_default] = ACTIONS(2626), + [anon_sym_enum] = ACTIONS(2626), + [anon_sym_fn] = ACTIONS(2626), + [anon_sym_for] = ACTIONS(2626), + [anon_sym_gen] = ACTIONS(2626), + [anon_sym_if] = ACTIONS(2626), + [anon_sym_impl] = ACTIONS(2626), + [anon_sym_let] = ACTIONS(2626), + [anon_sym_loop] = ACTIONS(2626), + [anon_sym_match] = ACTIONS(2626), + [anon_sym_mod] = ACTIONS(2626), + [anon_sym_pub] = ACTIONS(2626), + [anon_sym_return] = ACTIONS(2626), + [anon_sym_static] = ACTIONS(2626), + [anon_sym_struct] = ACTIONS(2626), + [anon_sym_trait] = ACTIONS(2626), + [anon_sym_type] = ACTIONS(2626), + [anon_sym_union] = ACTIONS(2626), + [anon_sym_unsafe] = ACTIONS(2626), + [anon_sym_use] = ACTIONS(2626), + [anon_sym_while] = ACTIONS(2626), + [anon_sym_extern] = ACTIONS(2626), + [anon_sym_yield] = ACTIONS(2626), + [anon_sym_move] = ACTIONS(2626), + [anon_sym_try] = ACTIONS(2626), + [sym_integer_literal] = ACTIONS(2624), + [aux_sym_string_literal_token1] = ACTIONS(2624), + [sym_char_literal] = ACTIONS(2624), + [anon_sym_true] = ACTIONS(2626), + [anon_sym_false] = ACTIONS(2626), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2626), + [sym_super] = ACTIONS(2626), + [sym_crate] = ACTIONS(2626), + [sym_metavariable] = ACTIONS(2624), + [sym__raw_string_literal_start] = ACTIONS(2624), + [sym_float_literal] = ACTIONS(2624), }, - [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), - [anon_sym_macro_rules_BANG] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2630), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_RBRACE] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2630), - [anon_sym_u8] = ACTIONS(2632), - [anon_sym_i8] = ACTIONS(2632), - [anon_sym_u16] = ACTIONS(2632), - [anon_sym_i16] = ACTIONS(2632), - [anon_sym_u32] = ACTIONS(2632), - [anon_sym_i32] = ACTIONS(2632), - [anon_sym_u64] = ACTIONS(2632), - [anon_sym_i64] = ACTIONS(2632), - [anon_sym_u128] = ACTIONS(2632), - [anon_sym_i128] = ACTIONS(2632), - [anon_sym_isize] = ACTIONS(2632), - [anon_sym_usize] = ACTIONS(2632), - [anon_sym_f32] = ACTIONS(2632), - [anon_sym_f64] = ACTIONS(2632), - [anon_sym_bool] = ACTIONS(2632), - [anon_sym_str] = ACTIONS(2632), - [anon_sym_char] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_BANG] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2630), - [anon_sym_PIPE] = ACTIONS(2630), - [anon_sym_LT] = ACTIONS(2630), - [anon_sym_DOT_DOT] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2630), - [anon_sym_POUND] = ACTIONS(2630), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_async] = ACTIONS(2632), - [anon_sym_break] = ACTIONS(2632), - [anon_sym_const] = ACTIONS(2632), - [anon_sym_continue] = ACTIONS(2632), - [anon_sym_default] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [anon_sym_fn] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2632), - [anon_sym_gen] = ACTIONS(2632), - [anon_sym_if] = ACTIONS(2632), - [anon_sym_impl] = ACTIONS(2632), - [anon_sym_let] = ACTIONS(2632), - [anon_sym_loop] = ACTIONS(2632), - [anon_sym_match] = ACTIONS(2632), - [anon_sym_mod] = ACTIONS(2632), - [anon_sym_pub] = ACTIONS(2632), - [anon_sym_return] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2632), - [anon_sym_trait] = ACTIONS(2632), - [anon_sym_type] = ACTIONS(2632), - [anon_sym_union] = ACTIONS(2632), - [anon_sym_unsafe] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2632), - [anon_sym_while] = ACTIONS(2632), - [anon_sym_extern] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2632), - [anon_sym_move] = ACTIONS(2632), - [anon_sym_try] = ACTIONS(2632), - [sym_integer_literal] = ACTIONS(2630), - [aux_sym_string_literal_token1] = ACTIONS(2630), - [sym_char_literal] = ACTIONS(2630), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2632), - [sym_super] = ACTIONS(2632), - [sym_crate] = ACTIONS(2632), - [sym_metavariable] = ACTIONS(2630), - [sym__raw_string_literal_start] = ACTIONS(2630), - [sym_float_literal] = ACTIONS(2630), + [STATE(696)] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), + [ts_builtin_sym_end] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2630), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_macro_rules_BANG] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_u8] = ACTIONS(2630), + [anon_sym_i8] = ACTIONS(2630), + [anon_sym_u16] = ACTIONS(2630), + [anon_sym_i16] = ACTIONS(2630), + [anon_sym_u32] = ACTIONS(2630), + [anon_sym_i32] = ACTIONS(2630), + [anon_sym_u64] = ACTIONS(2630), + [anon_sym_i64] = ACTIONS(2630), + [anon_sym_u128] = ACTIONS(2630), + [anon_sym_i128] = ACTIONS(2630), + [anon_sym_isize] = ACTIONS(2630), + [anon_sym_usize] = ACTIONS(2630), + [anon_sym_f32] = ACTIONS(2630), + [anon_sym_f64] = ACTIONS(2630), + [anon_sym_bool] = ACTIONS(2630), + [anon_sym_str] = ACTIONS(2630), + [anon_sym_char] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_BANG] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_PIPE] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2628), + [anon_sym_DOT_DOT] = ACTIONS(2628), + [anon_sym_COLON_COLON] = ACTIONS(2628), + [anon_sym_POUND] = ACTIONS(2628), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_async] = ACTIONS(2630), + [anon_sym_break] = ACTIONS(2630), + [anon_sym_const] = ACTIONS(2630), + [anon_sym_continue] = ACTIONS(2630), + [anon_sym_default] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2630), + [anon_sym_fn] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2630), + [anon_sym_gen] = ACTIONS(2630), + [anon_sym_if] = ACTIONS(2630), + [anon_sym_impl] = ACTIONS(2630), + [anon_sym_let] = ACTIONS(2630), + [anon_sym_loop] = ACTIONS(2630), + [anon_sym_match] = ACTIONS(2630), + [anon_sym_mod] = ACTIONS(2630), + [anon_sym_pub] = ACTIONS(2630), + [anon_sym_return] = ACTIONS(2630), + [anon_sym_static] = ACTIONS(2630), + [anon_sym_struct] = ACTIONS(2630), + [anon_sym_trait] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2630), + [anon_sym_union] = ACTIONS(2630), + [anon_sym_unsafe] = ACTIONS(2630), + [anon_sym_use] = ACTIONS(2630), + [anon_sym_while] = ACTIONS(2630), + [anon_sym_extern] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2630), + [anon_sym_move] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2630), + [sym_integer_literal] = ACTIONS(2628), + [aux_sym_string_literal_token1] = ACTIONS(2628), + [sym_char_literal] = ACTIONS(2628), + [anon_sym_true] = ACTIONS(2630), + [anon_sym_false] = ACTIONS(2630), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2630), + [sym_super] = ACTIONS(2630), + [sym_crate] = ACTIONS(2630), + [sym_metavariable] = ACTIONS(2628), + [sym__raw_string_literal_start] = ACTIONS(2628), + [sym_float_literal] = ACTIONS(2628), }, - [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), - [anon_sym_macro_rules_BANG] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_RBRACE] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2634), - [anon_sym_u8] = ACTIONS(2636), - [anon_sym_i8] = ACTIONS(2636), - [anon_sym_u16] = ACTIONS(2636), - [anon_sym_i16] = ACTIONS(2636), - [anon_sym_u32] = ACTIONS(2636), - [anon_sym_i32] = ACTIONS(2636), - [anon_sym_u64] = ACTIONS(2636), - [anon_sym_i64] = ACTIONS(2636), - [anon_sym_u128] = ACTIONS(2636), - [anon_sym_i128] = ACTIONS(2636), - [anon_sym_isize] = ACTIONS(2636), - [anon_sym_usize] = ACTIONS(2636), - [anon_sym_f32] = ACTIONS(2636), - [anon_sym_f64] = ACTIONS(2636), - [anon_sym_bool] = ACTIONS(2636), - [anon_sym_str] = ACTIONS(2636), - [anon_sym_char] = ACTIONS(2636), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_BANG] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2634), - [anon_sym_DOT_DOT] = ACTIONS(2634), - [anon_sym_COLON_COLON] = ACTIONS(2634), - [anon_sym_POUND] = ACTIONS(2634), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_async] = ACTIONS(2636), - [anon_sym_break] = ACTIONS(2636), - [anon_sym_const] = ACTIONS(2636), - [anon_sym_continue] = ACTIONS(2636), - [anon_sym_default] = ACTIONS(2636), - [anon_sym_enum] = ACTIONS(2636), - [anon_sym_fn] = ACTIONS(2636), - [anon_sym_for] = ACTIONS(2636), - [anon_sym_gen] = ACTIONS(2636), - [anon_sym_if] = ACTIONS(2636), - [anon_sym_impl] = ACTIONS(2636), - [anon_sym_let] = ACTIONS(2636), - [anon_sym_loop] = ACTIONS(2636), - [anon_sym_match] = ACTIONS(2636), - [anon_sym_mod] = ACTIONS(2636), - [anon_sym_pub] = ACTIONS(2636), - [anon_sym_return] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2636), - [anon_sym_struct] = ACTIONS(2636), - [anon_sym_trait] = ACTIONS(2636), - [anon_sym_type] = ACTIONS(2636), - [anon_sym_union] = ACTIONS(2636), - [anon_sym_unsafe] = ACTIONS(2636), - [anon_sym_use] = ACTIONS(2636), - [anon_sym_while] = ACTIONS(2636), - [anon_sym_extern] = ACTIONS(2636), - [anon_sym_yield] = ACTIONS(2636), - [anon_sym_move] = ACTIONS(2636), - [anon_sym_try] = ACTIONS(2636), - [sym_integer_literal] = ACTIONS(2634), - [aux_sym_string_literal_token1] = ACTIONS(2634), - [sym_char_literal] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2636), - [sym_super] = ACTIONS(2636), - [sym_crate] = ACTIONS(2636), - [sym_metavariable] = ACTIONS(2634), - [sym__raw_string_literal_start] = ACTIONS(2634), - [sym_float_literal] = ACTIONS(2634), + [STATE(697)] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [ts_builtin_sym_end] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2632), + [anon_sym_macro_rules_BANG] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_RBRACE] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_u8] = ACTIONS(2634), + [anon_sym_i8] = ACTIONS(2634), + [anon_sym_u16] = ACTIONS(2634), + [anon_sym_i16] = ACTIONS(2634), + [anon_sym_u32] = ACTIONS(2634), + [anon_sym_i32] = ACTIONS(2634), + [anon_sym_u64] = ACTIONS(2634), + [anon_sym_i64] = ACTIONS(2634), + [anon_sym_u128] = ACTIONS(2634), + [anon_sym_i128] = ACTIONS(2634), + [anon_sym_isize] = ACTIONS(2634), + [anon_sym_usize] = ACTIONS(2634), + [anon_sym_f32] = ACTIONS(2634), + [anon_sym_f64] = ACTIONS(2634), + [anon_sym_bool] = ACTIONS(2634), + [anon_sym_str] = ACTIONS(2634), + [anon_sym_char] = ACTIONS(2634), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_BANG] = ACTIONS(2632), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_PIPE] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2632), + [anon_sym_DOT_DOT] = ACTIONS(2632), + [anon_sym_COLON_COLON] = ACTIONS(2632), + [anon_sym_POUND] = ACTIONS(2632), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_async] = ACTIONS(2634), + [anon_sym_break] = ACTIONS(2634), + [anon_sym_const] = ACTIONS(2634), + [anon_sym_continue] = ACTIONS(2634), + [anon_sym_default] = ACTIONS(2634), + [anon_sym_enum] = ACTIONS(2634), + [anon_sym_fn] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2634), + [anon_sym_gen] = ACTIONS(2634), + [anon_sym_if] = ACTIONS(2634), + [anon_sym_impl] = ACTIONS(2634), + [anon_sym_let] = ACTIONS(2634), + [anon_sym_loop] = ACTIONS(2634), + [anon_sym_match] = ACTIONS(2634), + [anon_sym_mod] = ACTIONS(2634), + [anon_sym_pub] = ACTIONS(2634), + [anon_sym_return] = ACTIONS(2634), + [anon_sym_static] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_trait] = ACTIONS(2634), + [anon_sym_type] = ACTIONS(2634), + [anon_sym_union] = ACTIONS(2634), + [anon_sym_unsafe] = ACTIONS(2634), + [anon_sym_use] = ACTIONS(2634), + [anon_sym_while] = ACTIONS(2634), + [anon_sym_extern] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2634), + [anon_sym_move] = ACTIONS(2634), + [anon_sym_try] = ACTIONS(2634), + [sym_integer_literal] = ACTIONS(2632), + [aux_sym_string_literal_token1] = ACTIONS(2632), + [sym_char_literal] = ACTIONS(2632), + [anon_sym_true] = ACTIONS(2634), + [anon_sym_false] = ACTIONS(2634), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2634), + [sym_super] = ACTIONS(2634), + [sym_crate] = ACTIONS(2634), + [sym_metavariable] = ACTIONS(2632), + [sym__raw_string_literal_start] = ACTIONS(2632), + [sym_float_literal] = ACTIONS(2632), }, - [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), - [anon_sym_macro_rules_BANG] = ACTIONS(2638), - [anon_sym_LPAREN] = ACTIONS(2638), - [anon_sym_LBRACK] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2638), - [anon_sym_RBRACE] = ACTIONS(2638), - [anon_sym_STAR] = ACTIONS(2638), - [anon_sym_u8] = ACTIONS(2640), - [anon_sym_i8] = ACTIONS(2640), - [anon_sym_u16] = ACTIONS(2640), - [anon_sym_i16] = ACTIONS(2640), - [anon_sym_u32] = ACTIONS(2640), - [anon_sym_i32] = ACTIONS(2640), - [anon_sym_u64] = ACTIONS(2640), - [anon_sym_i64] = ACTIONS(2640), - [anon_sym_u128] = ACTIONS(2640), - [anon_sym_i128] = ACTIONS(2640), - [anon_sym_isize] = ACTIONS(2640), - [anon_sym_usize] = ACTIONS(2640), - [anon_sym_f32] = ACTIONS(2640), - [anon_sym_f64] = ACTIONS(2640), - [anon_sym_bool] = ACTIONS(2640), - [anon_sym_str] = ACTIONS(2640), - [anon_sym_char] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_BANG] = ACTIONS(2638), - [anon_sym_AMP] = ACTIONS(2638), - [anon_sym_PIPE] = ACTIONS(2638), - [anon_sym_LT] = ACTIONS(2638), - [anon_sym_DOT_DOT] = ACTIONS(2638), - [anon_sym_COLON_COLON] = ACTIONS(2638), - [anon_sym_POUND] = ACTIONS(2638), - [anon_sym_SQUOTE] = ACTIONS(2640), - [anon_sym_async] = ACTIONS(2640), - [anon_sym_break] = ACTIONS(2640), - [anon_sym_const] = ACTIONS(2640), - [anon_sym_continue] = ACTIONS(2640), - [anon_sym_default] = ACTIONS(2640), - [anon_sym_enum] = ACTIONS(2640), - [anon_sym_fn] = ACTIONS(2640), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_gen] = ACTIONS(2640), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_impl] = ACTIONS(2640), - [anon_sym_let] = ACTIONS(2640), - [anon_sym_loop] = ACTIONS(2640), - [anon_sym_match] = ACTIONS(2640), - [anon_sym_mod] = ACTIONS(2640), - [anon_sym_pub] = ACTIONS(2640), - [anon_sym_return] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_struct] = ACTIONS(2640), - [anon_sym_trait] = ACTIONS(2640), - [anon_sym_type] = ACTIONS(2640), - [anon_sym_union] = ACTIONS(2640), - [anon_sym_unsafe] = ACTIONS(2640), - [anon_sym_use] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_extern] = ACTIONS(2640), - [anon_sym_yield] = ACTIONS(2640), - [anon_sym_move] = ACTIONS(2640), - [anon_sym_try] = ACTIONS(2640), - [sym_integer_literal] = ACTIONS(2638), - [aux_sym_string_literal_token1] = ACTIONS(2638), - [sym_char_literal] = ACTIONS(2638), - [anon_sym_true] = ACTIONS(2640), - [anon_sym_false] = ACTIONS(2640), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2640), - [sym_super] = ACTIONS(2640), - [sym_crate] = ACTIONS(2640), - [sym_metavariable] = ACTIONS(2638), - [sym__raw_string_literal_start] = ACTIONS(2638), - [sym_float_literal] = ACTIONS(2638), + [STATE(698)] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), + [ts_builtin_sym_end] = ACTIONS(2636), + [sym_identifier] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2636), + [anon_sym_macro_rules_BANG] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_u8] = ACTIONS(2638), + [anon_sym_i8] = ACTIONS(2638), + [anon_sym_u16] = ACTIONS(2638), + [anon_sym_i16] = ACTIONS(2638), + [anon_sym_u32] = ACTIONS(2638), + [anon_sym_i32] = ACTIONS(2638), + [anon_sym_u64] = ACTIONS(2638), + [anon_sym_i64] = ACTIONS(2638), + [anon_sym_u128] = ACTIONS(2638), + [anon_sym_i128] = ACTIONS(2638), + [anon_sym_isize] = ACTIONS(2638), + [anon_sym_usize] = ACTIONS(2638), + [anon_sym_f32] = ACTIONS(2638), + [anon_sym_f64] = ACTIONS(2638), + [anon_sym_bool] = ACTIONS(2638), + [anon_sym_str] = ACTIONS(2638), + [anon_sym_char] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_PIPE] = ACTIONS(2636), + [anon_sym_LT] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(2636), + [anon_sym_COLON_COLON] = ACTIONS(2636), + [anon_sym_POUND] = ACTIONS(2636), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_async] = ACTIONS(2638), + [anon_sym_break] = ACTIONS(2638), + [anon_sym_const] = ACTIONS(2638), + [anon_sym_continue] = ACTIONS(2638), + [anon_sym_default] = ACTIONS(2638), + [anon_sym_enum] = ACTIONS(2638), + [anon_sym_fn] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2638), + [anon_sym_gen] = ACTIONS(2638), + [anon_sym_if] = ACTIONS(2638), + [anon_sym_impl] = ACTIONS(2638), + [anon_sym_let] = ACTIONS(2638), + [anon_sym_loop] = ACTIONS(2638), + [anon_sym_match] = ACTIONS(2638), + [anon_sym_mod] = ACTIONS(2638), + [anon_sym_pub] = ACTIONS(2638), + [anon_sym_return] = ACTIONS(2638), + [anon_sym_static] = ACTIONS(2638), + [anon_sym_struct] = ACTIONS(2638), + [anon_sym_trait] = ACTIONS(2638), + [anon_sym_type] = ACTIONS(2638), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_unsafe] = ACTIONS(2638), + [anon_sym_use] = ACTIONS(2638), + [anon_sym_while] = ACTIONS(2638), + [anon_sym_extern] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2638), + [anon_sym_move] = ACTIONS(2638), + [anon_sym_try] = ACTIONS(2638), + [sym_integer_literal] = ACTIONS(2636), + [aux_sym_string_literal_token1] = ACTIONS(2636), + [sym_char_literal] = ACTIONS(2636), + [anon_sym_true] = ACTIONS(2638), + [anon_sym_false] = ACTIONS(2638), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2638), + [sym_super] = ACTIONS(2638), + [sym_crate] = ACTIONS(2638), + [sym_metavariable] = ACTIONS(2636), + [sym__raw_string_literal_start] = ACTIONS(2636), + [sym_float_literal] = ACTIONS(2636), }, - [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), - [anon_sym_macro_rules_BANG] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_RBRACE] = ACTIONS(2642), - [anon_sym_STAR] = ACTIONS(2642), - [anon_sym_u8] = ACTIONS(2644), - [anon_sym_i8] = ACTIONS(2644), - [anon_sym_u16] = ACTIONS(2644), - [anon_sym_i16] = ACTIONS(2644), - [anon_sym_u32] = ACTIONS(2644), - [anon_sym_i32] = ACTIONS(2644), - [anon_sym_u64] = ACTIONS(2644), - [anon_sym_i64] = ACTIONS(2644), - [anon_sym_u128] = ACTIONS(2644), - [anon_sym_i128] = ACTIONS(2644), - [anon_sym_isize] = ACTIONS(2644), - [anon_sym_usize] = ACTIONS(2644), - [anon_sym_f32] = ACTIONS(2644), - [anon_sym_f64] = ACTIONS(2644), - [anon_sym_bool] = ACTIONS(2644), - [anon_sym_str] = ACTIONS(2644), - [anon_sym_char] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2642), - [anon_sym_AMP] = ACTIONS(2642), - [anon_sym_PIPE] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2642), - [anon_sym_DOT_DOT] = ACTIONS(2642), - [anon_sym_COLON_COLON] = ACTIONS(2642), - [anon_sym_POUND] = ACTIONS(2642), - [anon_sym_SQUOTE] = ACTIONS(2644), - [anon_sym_async] = ACTIONS(2644), - [anon_sym_break] = ACTIONS(2644), - [anon_sym_const] = ACTIONS(2644), - [anon_sym_continue] = ACTIONS(2644), - [anon_sym_default] = ACTIONS(2644), - [anon_sym_enum] = ACTIONS(2644), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_for] = ACTIONS(2644), - [anon_sym_gen] = ACTIONS(2644), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_impl] = ACTIONS(2644), - [anon_sym_let] = ACTIONS(2644), - [anon_sym_loop] = ACTIONS(2644), - [anon_sym_match] = ACTIONS(2644), - [anon_sym_mod] = ACTIONS(2644), - [anon_sym_pub] = ACTIONS(2644), - [anon_sym_return] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2644), - [anon_sym_struct] = ACTIONS(2644), - [anon_sym_trait] = ACTIONS(2644), - [anon_sym_type] = ACTIONS(2644), - [anon_sym_union] = ACTIONS(2644), - [anon_sym_unsafe] = ACTIONS(2644), - [anon_sym_use] = ACTIONS(2644), - [anon_sym_while] = ACTIONS(2644), - [anon_sym_extern] = ACTIONS(2644), - [anon_sym_yield] = ACTIONS(2644), - [anon_sym_move] = ACTIONS(2644), - [anon_sym_try] = ACTIONS(2644), - [sym_integer_literal] = ACTIONS(2642), - [aux_sym_string_literal_token1] = ACTIONS(2642), - [sym_char_literal] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2644), - [sym_super] = ACTIONS(2644), - [sym_crate] = ACTIONS(2644), - [sym_metavariable] = ACTIONS(2642), - [sym__raw_string_literal_start] = ACTIONS(2642), - [sym_float_literal] = ACTIONS(2642), + [STATE(699)] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(2640), + [sym_identifier] = ACTIONS(2642), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_macro_rules_BANG] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2640), + [anon_sym_u8] = ACTIONS(2642), + [anon_sym_i8] = ACTIONS(2642), + [anon_sym_u16] = ACTIONS(2642), + [anon_sym_i16] = ACTIONS(2642), + [anon_sym_u32] = ACTIONS(2642), + [anon_sym_i32] = ACTIONS(2642), + [anon_sym_u64] = ACTIONS(2642), + [anon_sym_i64] = ACTIONS(2642), + [anon_sym_u128] = ACTIONS(2642), + [anon_sym_i128] = ACTIONS(2642), + [anon_sym_isize] = ACTIONS(2642), + [anon_sym_usize] = ACTIONS(2642), + [anon_sym_f32] = ACTIONS(2642), + [anon_sym_f64] = ACTIONS(2642), + [anon_sym_bool] = ACTIONS(2642), + [anon_sym_str] = ACTIONS(2642), + [anon_sym_char] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_DOT_DOT] = ACTIONS(2640), + [anon_sym_COLON_COLON] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2640), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_async] = ACTIONS(2642), + [anon_sym_break] = ACTIONS(2642), + [anon_sym_const] = ACTIONS(2642), + [anon_sym_continue] = ACTIONS(2642), + [anon_sym_default] = ACTIONS(2642), + [anon_sym_enum] = ACTIONS(2642), + [anon_sym_fn] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2642), + [anon_sym_gen] = ACTIONS(2642), + [anon_sym_if] = ACTIONS(2642), + [anon_sym_impl] = ACTIONS(2642), + [anon_sym_let] = ACTIONS(2642), + [anon_sym_loop] = ACTIONS(2642), + [anon_sym_match] = ACTIONS(2642), + [anon_sym_mod] = ACTIONS(2642), + [anon_sym_pub] = ACTIONS(2642), + [anon_sym_return] = ACTIONS(2642), + [anon_sym_static] = ACTIONS(2642), + [anon_sym_struct] = ACTIONS(2642), + [anon_sym_trait] = ACTIONS(2642), + [anon_sym_type] = ACTIONS(2642), + [anon_sym_union] = ACTIONS(2642), + [anon_sym_unsafe] = ACTIONS(2642), + [anon_sym_use] = ACTIONS(2642), + [anon_sym_while] = ACTIONS(2642), + [anon_sym_extern] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2642), + [anon_sym_move] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2642), + [sym_integer_literal] = ACTIONS(2640), + [aux_sym_string_literal_token1] = ACTIONS(2640), + [sym_char_literal] = ACTIONS(2640), + [anon_sym_true] = ACTIONS(2642), + [anon_sym_false] = ACTIONS(2642), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2642), + [sym_super] = ACTIONS(2642), + [sym_crate] = ACTIONS(2642), + [sym_metavariable] = ACTIONS(2640), + [sym__raw_string_literal_start] = ACTIONS(2640), + [sym_float_literal] = ACTIONS(2640), }, - [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), - [anon_sym_macro_rules_BANG] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(2646), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2646), - [anon_sym_RBRACE] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2646), - [anon_sym_u8] = ACTIONS(2648), - [anon_sym_i8] = ACTIONS(2648), - [anon_sym_u16] = ACTIONS(2648), - [anon_sym_i16] = ACTIONS(2648), - [anon_sym_u32] = ACTIONS(2648), - [anon_sym_i32] = ACTIONS(2648), - [anon_sym_u64] = ACTIONS(2648), - [anon_sym_i64] = ACTIONS(2648), - [anon_sym_u128] = ACTIONS(2648), - [anon_sym_i128] = ACTIONS(2648), - [anon_sym_isize] = ACTIONS(2648), - [anon_sym_usize] = ACTIONS(2648), - [anon_sym_f32] = ACTIONS(2648), - [anon_sym_f64] = ACTIONS(2648), - [anon_sym_bool] = ACTIONS(2648), - [anon_sym_str] = ACTIONS(2648), - [anon_sym_char] = ACTIONS(2648), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_BANG] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_PIPE] = ACTIONS(2646), - [anon_sym_LT] = ACTIONS(2646), - [anon_sym_DOT_DOT] = ACTIONS(2646), - [anon_sym_COLON_COLON] = ACTIONS(2646), - [anon_sym_POUND] = ACTIONS(2646), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_async] = ACTIONS(2648), - [anon_sym_break] = ACTIONS(2648), - [anon_sym_const] = ACTIONS(2648), - [anon_sym_continue] = ACTIONS(2648), - [anon_sym_default] = ACTIONS(2648), - [anon_sym_enum] = ACTIONS(2648), - [anon_sym_fn] = ACTIONS(2648), - [anon_sym_for] = ACTIONS(2648), - [anon_sym_gen] = ACTIONS(2648), - [anon_sym_if] = ACTIONS(2648), - [anon_sym_impl] = ACTIONS(2648), - [anon_sym_let] = ACTIONS(2648), - [anon_sym_loop] = ACTIONS(2648), - [anon_sym_match] = ACTIONS(2648), - [anon_sym_mod] = ACTIONS(2648), - [anon_sym_pub] = ACTIONS(2648), - [anon_sym_return] = ACTIONS(2648), - [anon_sym_static] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2648), - [anon_sym_trait] = ACTIONS(2648), - [anon_sym_type] = ACTIONS(2648), - [anon_sym_union] = ACTIONS(2648), - [anon_sym_unsafe] = ACTIONS(2648), - [anon_sym_use] = ACTIONS(2648), - [anon_sym_while] = ACTIONS(2648), - [anon_sym_extern] = ACTIONS(2648), - [anon_sym_yield] = ACTIONS(2648), - [anon_sym_move] = ACTIONS(2648), - [anon_sym_try] = ACTIONS(2648), - [sym_integer_literal] = ACTIONS(2646), - [aux_sym_string_literal_token1] = ACTIONS(2646), - [sym_char_literal] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2648), - [sym_super] = ACTIONS(2648), - [sym_crate] = ACTIONS(2648), - [sym_metavariable] = ACTIONS(2646), - [sym__raw_string_literal_start] = ACTIONS(2646), - [sym_float_literal] = ACTIONS(2646), + [STATE(700)] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(2644), + [sym_identifier] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_macro_rules_BANG] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_RBRACE] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2644), + [anon_sym_u8] = ACTIONS(2646), + [anon_sym_i8] = ACTIONS(2646), + [anon_sym_u16] = ACTIONS(2646), + [anon_sym_i16] = ACTIONS(2646), + [anon_sym_u32] = ACTIONS(2646), + [anon_sym_i32] = ACTIONS(2646), + [anon_sym_u64] = ACTIONS(2646), + [anon_sym_i64] = ACTIONS(2646), + [anon_sym_u128] = ACTIONS(2646), + [anon_sym_i128] = ACTIONS(2646), + [anon_sym_isize] = ACTIONS(2646), + [anon_sym_usize] = ACTIONS(2646), + [anon_sym_f32] = ACTIONS(2646), + [anon_sym_f64] = ACTIONS(2646), + [anon_sym_bool] = ACTIONS(2646), + [anon_sym_str] = ACTIONS(2646), + [anon_sym_char] = ACTIONS(2646), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_BANG] = ACTIONS(2644), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_LT] = ACTIONS(2644), + [anon_sym_DOT_DOT] = ACTIONS(2644), + [anon_sym_COLON_COLON] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_async] = ACTIONS(2646), + [anon_sym_break] = ACTIONS(2646), + [anon_sym_const] = ACTIONS(2646), + [anon_sym_continue] = ACTIONS(2646), + [anon_sym_default] = ACTIONS(2646), + [anon_sym_enum] = ACTIONS(2646), + [anon_sym_fn] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2646), + [anon_sym_gen] = ACTIONS(2646), + [anon_sym_if] = ACTIONS(2646), + [anon_sym_impl] = ACTIONS(2646), + [anon_sym_let] = ACTIONS(2646), + [anon_sym_loop] = ACTIONS(2646), + [anon_sym_match] = ACTIONS(2646), + [anon_sym_mod] = ACTIONS(2646), + [anon_sym_pub] = ACTIONS(2646), + [anon_sym_return] = ACTIONS(2646), + [anon_sym_static] = ACTIONS(2646), + [anon_sym_struct] = ACTIONS(2646), + [anon_sym_trait] = ACTIONS(2646), + [anon_sym_type] = ACTIONS(2646), + [anon_sym_union] = ACTIONS(2646), + [anon_sym_unsafe] = ACTIONS(2646), + [anon_sym_use] = ACTIONS(2646), + [anon_sym_while] = ACTIONS(2646), + [anon_sym_extern] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2646), + [anon_sym_move] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2646), + [sym_integer_literal] = ACTIONS(2644), + [aux_sym_string_literal_token1] = ACTIONS(2644), + [sym_char_literal] = ACTIONS(2644), + [anon_sym_true] = ACTIONS(2646), + [anon_sym_false] = ACTIONS(2646), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2646), + [sym_super] = ACTIONS(2646), + [sym_crate] = ACTIONS(2646), + [sym_metavariable] = ACTIONS(2644), + [sym__raw_string_literal_start] = ACTIONS(2644), + [sym_float_literal] = ACTIONS(2644), }, - [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), - [anon_sym_macro_rules_BANG] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2650), - [anon_sym_RBRACE] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(2650), - [anon_sym_u8] = ACTIONS(2652), - [anon_sym_i8] = ACTIONS(2652), - [anon_sym_u16] = ACTIONS(2652), - [anon_sym_i16] = ACTIONS(2652), - [anon_sym_u32] = ACTIONS(2652), - [anon_sym_i32] = ACTIONS(2652), - [anon_sym_u64] = ACTIONS(2652), - [anon_sym_i64] = ACTIONS(2652), - [anon_sym_u128] = ACTIONS(2652), - [anon_sym_i128] = ACTIONS(2652), - [anon_sym_isize] = ACTIONS(2652), - [anon_sym_usize] = ACTIONS(2652), - [anon_sym_f32] = ACTIONS(2652), - [anon_sym_f64] = ACTIONS(2652), - [anon_sym_bool] = ACTIONS(2652), - [anon_sym_str] = ACTIONS(2652), - [anon_sym_char] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_BANG] = ACTIONS(2650), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_DOT_DOT] = ACTIONS(2650), - [anon_sym_COLON_COLON] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2650), - [anon_sym_SQUOTE] = ACTIONS(2652), - [anon_sym_async] = ACTIONS(2652), - [anon_sym_break] = ACTIONS(2652), - [anon_sym_const] = ACTIONS(2652), - [anon_sym_continue] = ACTIONS(2652), - [anon_sym_default] = ACTIONS(2652), - [anon_sym_enum] = ACTIONS(2652), - [anon_sym_fn] = ACTIONS(2652), - [anon_sym_for] = ACTIONS(2652), - [anon_sym_gen] = ACTIONS(2652), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_impl] = ACTIONS(2652), - [anon_sym_let] = ACTIONS(2652), - [anon_sym_loop] = ACTIONS(2652), - [anon_sym_match] = ACTIONS(2652), - [anon_sym_mod] = ACTIONS(2652), - [anon_sym_pub] = ACTIONS(2652), - [anon_sym_return] = ACTIONS(2652), - [anon_sym_static] = ACTIONS(2652), - [anon_sym_struct] = ACTIONS(2652), - [anon_sym_trait] = ACTIONS(2652), - [anon_sym_type] = ACTIONS(2652), - [anon_sym_union] = ACTIONS(2652), - [anon_sym_unsafe] = ACTIONS(2652), - [anon_sym_use] = ACTIONS(2652), - [anon_sym_while] = ACTIONS(2652), - [anon_sym_extern] = ACTIONS(2652), - [anon_sym_yield] = ACTIONS(2652), - [anon_sym_move] = ACTIONS(2652), - [anon_sym_try] = ACTIONS(2652), - [sym_integer_literal] = ACTIONS(2650), - [aux_sym_string_literal_token1] = ACTIONS(2650), - [sym_char_literal] = ACTIONS(2650), - [anon_sym_true] = ACTIONS(2652), - [anon_sym_false] = ACTIONS(2652), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2652), - [sym_super] = ACTIONS(2652), - [sym_crate] = ACTIONS(2652), - [sym_metavariable] = ACTIONS(2650), - [sym__raw_string_literal_start] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2650), + [STATE(701)] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), + [ts_builtin_sym_end] = ACTIONS(2648), + [sym_identifier] = ACTIONS(2650), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_macro_rules_BANG] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_u8] = ACTIONS(2650), + [anon_sym_i8] = ACTIONS(2650), + [anon_sym_u16] = ACTIONS(2650), + [anon_sym_i16] = ACTIONS(2650), + [anon_sym_u32] = ACTIONS(2650), + [anon_sym_i32] = ACTIONS(2650), + [anon_sym_u64] = ACTIONS(2650), + [anon_sym_i64] = ACTIONS(2650), + [anon_sym_u128] = ACTIONS(2650), + [anon_sym_i128] = ACTIONS(2650), + [anon_sym_isize] = ACTIONS(2650), + [anon_sym_usize] = ACTIONS(2650), + [anon_sym_f32] = ACTIONS(2650), + [anon_sym_f64] = ACTIONS(2650), + [anon_sym_bool] = ACTIONS(2650), + [anon_sym_str] = ACTIONS(2650), + [anon_sym_char] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_BANG] = ACTIONS(2648), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_DOT_DOT] = ACTIONS(2648), + [anon_sym_COLON_COLON] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(2648), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_async] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_const] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_default] = ACTIONS(2650), + [anon_sym_enum] = ACTIONS(2650), + [anon_sym_fn] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_gen] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_impl] = ACTIONS(2650), + [anon_sym_let] = ACTIONS(2650), + [anon_sym_loop] = ACTIONS(2650), + [anon_sym_match] = ACTIONS(2650), + [anon_sym_mod] = ACTIONS(2650), + [anon_sym_pub] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_struct] = ACTIONS(2650), + [anon_sym_trait] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_union] = ACTIONS(2650), + [anon_sym_unsafe] = ACTIONS(2650), + [anon_sym_use] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_extern] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2650), + [anon_sym_move] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2650), + [sym_integer_literal] = ACTIONS(2648), + [aux_sym_string_literal_token1] = ACTIONS(2648), + [sym_char_literal] = ACTIONS(2648), + [anon_sym_true] = ACTIONS(2650), + [anon_sym_false] = ACTIONS(2650), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2650), + [sym_super] = ACTIONS(2650), + [sym_crate] = ACTIONS(2650), + [sym_metavariable] = ACTIONS(2648), + [sym__raw_string_literal_start] = ACTIONS(2648), + [sym_float_literal] = ACTIONS(2648), }, - [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), - [anon_sym_macro_rules_BANG] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2654), - [anon_sym_RBRACE] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(2654), - [anon_sym_u8] = ACTIONS(2656), - [anon_sym_i8] = ACTIONS(2656), - [anon_sym_u16] = ACTIONS(2656), - [anon_sym_i16] = ACTIONS(2656), - [anon_sym_u32] = ACTIONS(2656), - [anon_sym_i32] = ACTIONS(2656), - [anon_sym_u64] = ACTIONS(2656), - [anon_sym_i64] = ACTIONS(2656), - [anon_sym_u128] = ACTIONS(2656), - [anon_sym_i128] = ACTIONS(2656), - [anon_sym_isize] = ACTIONS(2656), - [anon_sym_usize] = ACTIONS(2656), - [anon_sym_f32] = ACTIONS(2656), - [anon_sym_f64] = ACTIONS(2656), - [anon_sym_bool] = ACTIONS(2656), - [anon_sym_str] = ACTIONS(2656), - [anon_sym_char] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_BANG] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_LT] = ACTIONS(2654), - [anon_sym_DOT_DOT] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2654), - [anon_sym_POUND] = ACTIONS(2654), - [anon_sym_SQUOTE] = ACTIONS(2656), - [anon_sym_async] = ACTIONS(2656), - [anon_sym_break] = ACTIONS(2656), - [anon_sym_const] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2656), - [anon_sym_default] = ACTIONS(2656), - [anon_sym_enum] = ACTIONS(2656), - [anon_sym_fn] = ACTIONS(2656), - [anon_sym_for] = ACTIONS(2656), - [anon_sym_gen] = ACTIONS(2656), - [anon_sym_if] = ACTIONS(2656), - [anon_sym_impl] = ACTIONS(2656), - [anon_sym_let] = ACTIONS(2656), - [anon_sym_loop] = ACTIONS(2656), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_mod] = ACTIONS(2656), - [anon_sym_pub] = ACTIONS(2656), - [anon_sym_return] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2656), - [anon_sym_struct] = ACTIONS(2656), - [anon_sym_trait] = ACTIONS(2656), - [anon_sym_type] = ACTIONS(2656), - [anon_sym_union] = ACTIONS(2656), - [anon_sym_unsafe] = ACTIONS(2656), - [anon_sym_use] = ACTIONS(2656), - [anon_sym_while] = ACTIONS(2656), - [anon_sym_extern] = ACTIONS(2656), - [anon_sym_yield] = ACTIONS(2656), - [anon_sym_move] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2656), - [sym_integer_literal] = ACTIONS(2654), - [aux_sym_string_literal_token1] = ACTIONS(2654), - [sym_char_literal] = ACTIONS(2654), - [anon_sym_true] = ACTIONS(2656), - [anon_sym_false] = ACTIONS(2656), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2656), - [sym_super] = ACTIONS(2656), - [sym_crate] = ACTIONS(2656), - [sym_metavariable] = ACTIONS(2654), - [sym__raw_string_literal_start] = ACTIONS(2654), - [sym_float_literal] = ACTIONS(2654), + [STATE(702)] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_identifier] = ACTIONS(2654), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_macro_rules_BANG] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_RBRACE] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_u8] = ACTIONS(2654), + [anon_sym_i8] = ACTIONS(2654), + [anon_sym_u16] = ACTIONS(2654), + [anon_sym_i16] = ACTIONS(2654), + [anon_sym_u32] = ACTIONS(2654), + [anon_sym_i32] = ACTIONS(2654), + [anon_sym_u64] = ACTIONS(2654), + [anon_sym_i64] = ACTIONS(2654), + [anon_sym_u128] = ACTIONS(2654), + [anon_sym_i128] = ACTIONS(2654), + [anon_sym_isize] = ACTIONS(2654), + [anon_sym_usize] = ACTIONS(2654), + [anon_sym_f32] = ACTIONS(2654), + [anon_sym_f64] = ACTIONS(2654), + [anon_sym_bool] = ACTIONS(2654), + [anon_sym_str] = ACTIONS(2654), + [anon_sym_char] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2652), + [anon_sym_DOT_DOT] = ACTIONS(2652), + [anon_sym_COLON_COLON] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_async] = ACTIONS(2654), + [anon_sym_break] = ACTIONS(2654), + [anon_sym_const] = ACTIONS(2654), + [anon_sym_continue] = ACTIONS(2654), + [anon_sym_default] = ACTIONS(2654), + [anon_sym_enum] = ACTIONS(2654), + [anon_sym_fn] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2654), + [anon_sym_gen] = ACTIONS(2654), + [anon_sym_if] = ACTIONS(2654), + [anon_sym_impl] = ACTIONS(2654), + [anon_sym_let] = ACTIONS(2654), + [anon_sym_loop] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2654), + [anon_sym_mod] = ACTIONS(2654), + [anon_sym_pub] = ACTIONS(2654), + [anon_sym_return] = ACTIONS(2654), + [anon_sym_static] = ACTIONS(2654), + [anon_sym_struct] = ACTIONS(2654), + [anon_sym_trait] = ACTIONS(2654), + [anon_sym_type] = ACTIONS(2654), + [anon_sym_union] = ACTIONS(2654), + [anon_sym_unsafe] = ACTIONS(2654), + [anon_sym_use] = ACTIONS(2654), + [anon_sym_while] = ACTIONS(2654), + [anon_sym_extern] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2654), + [anon_sym_move] = ACTIONS(2654), + [anon_sym_try] = ACTIONS(2654), + [sym_integer_literal] = ACTIONS(2652), + [aux_sym_string_literal_token1] = ACTIONS(2652), + [sym_char_literal] = ACTIONS(2652), + [anon_sym_true] = ACTIONS(2654), + [anon_sym_false] = ACTIONS(2654), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2654), + [sym_super] = ACTIONS(2654), + [sym_crate] = ACTIONS(2654), + [sym_metavariable] = ACTIONS(2652), + [sym__raw_string_literal_start] = ACTIONS(2652), + [sym_float_literal] = ACTIONS(2652), }, - [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), - [anon_sym_macro_rules_BANG] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_RBRACE] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(2658), - [anon_sym_u8] = ACTIONS(2660), - [anon_sym_i8] = ACTIONS(2660), - [anon_sym_u16] = ACTIONS(2660), - [anon_sym_i16] = ACTIONS(2660), - [anon_sym_u32] = ACTIONS(2660), - [anon_sym_i32] = ACTIONS(2660), - [anon_sym_u64] = ACTIONS(2660), - [anon_sym_i64] = ACTIONS(2660), - [anon_sym_u128] = ACTIONS(2660), - [anon_sym_i128] = ACTIONS(2660), - [anon_sym_isize] = ACTIONS(2660), - [anon_sym_usize] = ACTIONS(2660), - [anon_sym_f32] = ACTIONS(2660), - [anon_sym_f64] = ACTIONS(2660), - [anon_sym_bool] = ACTIONS(2660), - [anon_sym_str] = ACTIONS(2660), - [anon_sym_char] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_DOT_DOT] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(2658), - [anon_sym_SQUOTE] = ACTIONS(2660), - [anon_sym_async] = ACTIONS(2660), - [anon_sym_break] = ACTIONS(2660), - [anon_sym_const] = ACTIONS(2660), - [anon_sym_continue] = ACTIONS(2660), - [anon_sym_default] = ACTIONS(2660), - [anon_sym_enum] = ACTIONS(2660), - [anon_sym_fn] = ACTIONS(2660), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_gen] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_impl] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_loop] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_mod] = ACTIONS(2660), - [anon_sym_pub] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_static] = ACTIONS(2660), - [anon_sym_struct] = ACTIONS(2660), - [anon_sym_trait] = ACTIONS(2660), - [anon_sym_type] = ACTIONS(2660), - [anon_sym_union] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2660), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_extern] = ACTIONS(2660), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_move] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [sym_integer_literal] = ACTIONS(2658), - [aux_sym_string_literal_token1] = ACTIONS(2658), - [sym_char_literal] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2660), - [anon_sym_false] = ACTIONS(2660), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2660), - [sym_super] = ACTIONS(2660), - [sym_crate] = ACTIONS(2660), - [sym_metavariable] = ACTIONS(2658), - [sym__raw_string_literal_start] = ACTIONS(2658), - [sym_float_literal] = ACTIONS(2658), + [STATE(703)] = { + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), + [ts_builtin_sym_end] = ACTIONS(2656), + [sym_identifier] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_macro_rules_BANG] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_STAR] = ACTIONS(2656), + [anon_sym_u8] = ACTIONS(2658), + [anon_sym_i8] = ACTIONS(2658), + [anon_sym_u16] = ACTIONS(2658), + [anon_sym_i16] = ACTIONS(2658), + [anon_sym_u32] = ACTIONS(2658), + [anon_sym_i32] = ACTIONS(2658), + [anon_sym_u64] = ACTIONS(2658), + [anon_sym_i64] = ACTIONS(2658), + [anon_sym_u128] = ACTIONS(2658), + [anon_sym_i128] = ACTIONS(2658), + [anon_sym_isize] = ACTIONS(2658), + [anon_sym_usize] = ACTIONS(2658), + [anon_sym_f32] = ACTIONS(2658), + [anon_sym_f64] = ACTIONS(2658), + [anon_sym_bool] = ACTIONS(2658), + [anon_sym_str] = ACTIONS(2658), + [anon_sym_char] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2656), + [anon_sym_DOT_DOT] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(2656), + [anon_sym_SQUOTE] = ACTIONS(2658), + [anon_sym_async] = ACTIONS(2658), + [anon_sym_break] = ACTIONS(2658), + [anon_sym_const] = ACTIONS(2658), + [anon_sym_continue] = ACTIONS(2658), + [anon_sym_default] = ACTIONS(2658), + [anon_sym_enum] = ACTIONS(2658), + [anon_sym_fn] = ACTIONS(2658), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_gen] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_impl] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_loop] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_mod] = ACTIONS(2658), + [anon_sym_pub] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_static] = ACTIONS(2658), + [anon_sym_struct] = ACTIONS(2658), + [anon_sym_trait] = ACTIONS(2658), + [anon_sym_type] = ACTIONS(2658), + [anon_sym_union] = ACTIONS(2658), + [anon_sym_unsafe] = ACTIONS(2658), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_extern] = ACTIONS(2658), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_move] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [sym_integer_literal] = ACTIONS(2656), + [aux_sym_string_literal_token1] = ACTIONS(2656), + [sym_char_literal] = ACTIONS(2656), + [anon_sym_true] = ACTIONS(2658), + [anon_sym_false] = ACTIONS(2658), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2658), + [sym_super] = ACTIONS(2658), + [sym_crate] = ACTIONS(2658), + [sym_metavariable] = ACTIONS(2656), + [sym__raw_string_literal_start] = ACTIONS(2656), + [sym_float_literal] = ACTIONS(2656), }, - [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), - [anon_sym_macro_rules_BANG] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2662), - [anon_sym_RBRACE] = ACTIONS(2662), - [anon_sym_STAR] = ACTIONS(2662), - [anon_sym_u8] = ACTIONS(2664), - [anon_sym_i8] = ACTIONS(2664), - [anon_sym_u16] = ACTIONS(2664), - [anon_sym_i16] = ACTIONS(2664), - [anon_sym_u32] = ACTIONS(2664), - [anon_sym_i32] = ACTIONS(2664), - [anon_sym_u64] = ACTIONS(2664), - [anon_sym_i64] = ACTIONS(2664), - [anon_sym_u128] = ACTIONS(2664), - [anon_sym_i128] = ACTIONS(2664), - [anon_sym_isize] = ACTIONS(2664), - [anon_sym_usize] = ACTIONS(2664), - [anon_sym_f32] = ACTIONS(2664), - [anon_sym_f64] = ACTIONS(2664), - [anon_sym_bool] = ACTIONS(2664), - [anon_sym_str] = ACTIONS(2664), - [anon_sym_char] = ACTIONS(2664), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_BANG] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_DOT_DOT] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_POUND] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_async] = ACTIONS(2664), - [anon_sym_break] = ACTIONS(2664), - [anon_sym_const] = ACTIONS(2664), - [anon_sym_continue] = ACTIONS(2664), - [anon_sym_default] = ACTIONS(2664), - [anon_sym_enum] = ACTIONS(2664), - [anon_sym_fn] = ACTIONS(2664), - [anon_sym_for] = ACTIONS(2664), - [anon_sym_gen] = ACTIONS(2664), - [anon_sym_if] = ACTIONS(2664), - [anon_sym_impl] = ACTIONS(2664), - [anon_sym_let] = ACTIONS(2664), - [anon_sym_loop] = ACTIONS(2664), - [anon_sym_match] = ACTIONS(2664), - [anon_sym_mod] = ACTIONS(2664), - [anon_sym_pub] = ACTIONS(2664), - [anon_sym_return] = ACTIONS(2664), - [anon_sym_static] = ACTIONS(2664), - [anon_sym_struct] = ACTIONS(2664), - [anon_sym_trait] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2664), - [anon_sym_union] = ACTIONS(2664), - [anon_sym_unsafe] = ACTIONS(2664), - [anon_sym_use] = ACTIONS(2664), - [anon_sym_while] = ACTIONS(2664), - [anon_sym_extern] = ACTIONS(2664), - [anon_sym_yield] = ACTIONS(2664), - [anon_sym_move] = ACTIONS(2664), - [anon_sym_try] = ACTIONS(2664), - [sym_integer_literal] = ACTIONS(2662), - [aux_sym_string_literal_token1] = ACTIONS(2662), - [sym_char_literal] = ACTIONS(2662), - [anon_sym_true] = ACTIONS(2664), - [anon_sym_false] = ACTIONS(2664), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2664), - [sym_super] = ACTIONS(2664), - [sym_crate] = ACTIONS(2664), - [sym_metavariable] = ACTIONS(2662), - [sym__raw_string_literal_start] = ACTIONS(2662), - [sym_float_literal] = ACTIONS(2662), + [STATE(704)] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), + [ts_builtin_sym_end] = ACTIONS(2660), + [sym_identifier] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2660), + [anon_sym_macro_rules_BANG] = ACTIONS(2660), + [anon_sym_LPAREN] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2660), + [anon_sym_RBRACE] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_u8] = ACTIONS(2662), + [anon_sym_i8] = ACTIONS(2662), + [anon_sym_u16] = ACTIONS(2662), + [anon_sym_i16] = ACTIONS(2662), + [anon_sym_u32] = ACTIONS(2662), + [anon_sym_i32] = ACTIONS(2662), + [anon_sym_u64] = ACTIONS(2662), + [anon_sym_i64] = ACTIONS(2662), + [anon_sym_u128] = ACTIONS(2662), + [anon_sym_i128] = ACTIONS(2662), + [anon_sym_isize] = ACTIONS(2662), + [anon_sym_usize] = ACTIONS(2662), + [anon_sym_f32] = ACTIONS(2662), + [anon_sym_f64] = ACTIONS(2662), + [anon_sym_bool] = ACTIONS(2662), + [anon_sym_str] = ACTIONS(2662), + [anon_sym_char] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2660), + [anon_sym_BANG] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2660), + [anon_sym_PIPE] = ACTIONS(2660), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_DOT_DOT] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2662), + [anon_sym_async] = ACTIONS(2662), + [anon_sym_break] = ACTIONS(2662), + [anon_sym_const] = ACTIONS(2662), + [anon_sym_continue] = ACTIONS(2662), + [anon_sym_default] = ACTIONS(2662), + [anon_sym_enum] = ACTIONS(2662), + [anon_sym_fn] = ACTIONS(2662), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_gen] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_impl] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_loop] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_mod] = ACTIONS(2662), + [anon_sym_pub] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_static] = ACTIONS(2662), + [anon_sym_struct] = ACTIONS(2662), + [anon_sym_trait] = ACTIONS(2662), + [anon_sym_type] = ACTIONS(2662), + [anon_sym_union] = ACTIONS(2662), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_extern] = ACTIONS(2662), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_move] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2662), + [sym_integer_literal] = ACTIONS(2660), + [aux_sym_string_literal_token1] = ACTIONS(2660), + [sym_char_literal] = ACTIONS(2660), + [anon_sym_true] = ACTIONS(2662), + [anon_sym_false] = ACTIONS(2662), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2662), + [sym_super] = ACTIONS(2662), + [sym_crate] = ACTIONS(2662), + [sym_metavariable] = ACTIONS(2660), + [sym__raw_string_literal_start] = ACTIONS(2660), + [sym_float_literal] = ACTIONS(2660), }, - [STATE(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), - [anon_sym_macro_rules_BANG] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_RBRACE] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_u8] = ACTIONS(2668), - [anon_sym_i8] = ACTIONS(2668), - [anon_sym_u16] = ACTIONS(2668), - [anon_sym_i16] = ACTIONS(2668), - [anon_sym_u32] = ACTIONS(2668), - [anon_sym_i32] = ACTIONS(2668), - [anon_sym_u64] = ACTIONS(2668), - [anon_sym_i64] = ACTIONS(2668), - [anon_sym_u128] = ACTIONS(2668), - [anon_sym_i128] = ACTIONS(2668), - [anon_sym_isize] = ACTIONS(2668), - [anon_sym_usize] = ACTIONS(2668), - [anon_sym_f32] = ACTIONS(2668), - [anon_sym_f64] = ACTIONS(2668), - [anon_sym_bool] = ACTIONS(2668), - [anon_sym_str] = ACTIONS(2668), - [anon_sym_char] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_DOT_DOT] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2668), - [anon_sym_async] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_const] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_default] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), - [anon_sym_fn] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_gen] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_impl] = ACTIONS(2668), - [anon_sym_let] = ACTIONS(2668), - [anon_sym_loop] = ACTIONS(2668), - [anon_sym_match] = ACTIONS(2668), - [anon_sym_mod] = ACTIONS(2668), - [anon_sym_pub] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_struct] = ACTIONS(2668), - [anon_sym_trait] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_union] = ACTIONS(2668), - [anon_sym_unsafe] = ACTIONS(2668), - [anon_sym_use] = ACTIONS(2668), - [anon_sym_while] = ACTIONS(2668), - [anon_sym_extern] = ACTIONS(2668), - [anon_sym_yield] = ACTIONS(2668), - [anon_sym_move] = ACTIONS(2668), - [anon_sym_try] = ACTIONS(2668), - [sym_integer_literal] = ACTIONS(2666), - [aux_sym_string_literal_token1] = ACTIONS(2666), - [sym_char_literal] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2668), - [anon_sym_false] = ACTIONS(2668), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2668), - [sym_super] = ACTIONS(2668), - [sym_crate] = ACTIONS(2668), - [sym_metavariable] = ACTIONS(2666), - [sym__raw_string_literal_start] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2666), + [STATE(705)] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_macro_rules_BANG] = ACTIONS(2664), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u128] = ACTIONS(2666), + [anon_sym_i128] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_str] = ACTIONS(2666), + [anon_sym_char] = ACTIONS(2666), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_DOT_DOT] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_POUND] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2666), + [anon_sym_async] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_const] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_default] = ACTIONS(2666), + [anon_sym_enum] = ACTIONS(2666), + [anon_sym_fn] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_gen] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_impl] = ACTIONS(2666), + [anon_sym_let] = ACTIONS(2666), + [anon_sym_loop] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_mod] = ACTIONS(2666), + [anon_sym_pub] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_static] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_trait] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_union] = ACTIONS(2666), + [anon_sym_unsafe] = ACTIONS(2666), + [anon_sym_use] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_extern] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_move] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [sym_integer_literal] = ACTIONS(2664), + [aux_sym_string_literal_token1] = ACTIONS(2664), + [sym_char_literal] = ACTIONS(2664), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2666), + [sym_super] = ACTIONS(2666), + [sym_crate] = ACTIONS(2666), + [sym_metavariable] = ACTIONS(2664), + [sym__raw_string_literal_start] = ACTIONS(2664), + [sym_float_literal] = ACTIONS(2664), }, - [STATE(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(2229), - [sym_visibility_modifier] = STATE(1997), - [sym_bracketed_type] = STATE(3441), - [sym_generic_type_with_turbofish] = STATE(3467), - [sym_macro_invocation] = STATE(1090), - [sym_scoped_identifier] = STATE(3306), - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), - [aux_sym_declaration_list_repeat1] = STATE(641), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(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(706)] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), + [ts_builtin_sym_end] = ACTIONS(2668), + [sym_identifier] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2668), + [anon_sym_macro_rules_BANG] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(2668), + [anon_sym_RBRACE] = ACTIONS(2668), + [anon_sym_STAR] = ACTIONS(2668), + [anon_sym_u8] = ACTIONS(2670), + [anon_sym_i8] = ACTIONS(2670), + [anon_sym_u16] = ACTIONS(2670), + [anon_sym_i16] = ACTIONS(2670), + [anon_sym_u32] = ACTIONS(2670), + [anon_sym_i32] = ACTIONS(2670), + [anon_sym_u64] = ACTIONS(2670), + [anon_sym_i64] = ACTIONS(2670), + [anon_sym_u128] = ACTIONS(2670), + [anon_sym_i128] = ACTIONS(2670), + [anon_sym_isize] = ACTIONS(2670), + [anon_sym_usize] = ACTIONS(2670), + [anon_sym_f32] = ACTIONS(2670), + [anon_sym_f64] = ACTIONS(2670), + [anon_sym_bool] = ACTIONS(2670), + [anon_sym_str] = ACTIONS(2670), + [anon_sym_char] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2668), + [anon_sym_PIPE] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2668), + [anon_sym_DOT_DOT] = ACTIONS(2668), + [anon_sym_COLON_COLON] = ACTIONS(2668), + [anon_sym_POUND] = ACTIONS(2668), + [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_async] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2670), + [anon_sym_const] = ACTIONS(2670), + [anon_sym_continue] = ACTIONS(2670), + [anon_sym_default] = ACTIONS(2670), + [anon_sym_enum] = ACTIONS(2670), + [anon_sym_fn] = ACTIONS(2670), + [anon_sym_for] = ACTIONS(2670), + [anon_sym_gen] = ACTIONS(2670), + [anon_sym_if] = ACTIONS(2670), + [anon_sym_impl] = ACTIONS(2670), + [anon_sym_let] = ACTIONS(2670), + [anon_sym_loop] = ACTIONS(2670), + [anon_sym_match] = ACTIONS(2670), + [anon_sym_mod] = ACTIONS(2670), + [anon_sym_pub] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2670), + [anon_sym_static] = ACTIONS(2670), + [anon_sym_struct] = ACTIONS(2670), + [anon_sym_trait] = ACTIONS(2670), + [anon_sym_type] = ACTIONS(2670), + [anon_sym_union] = ACTIONS(2670), + [anon_sym_unsafe] = ACTIONS(2670), + [anon_sym_use] = ACTIONS(2670), + [anon_sym_while] = ACTIONS(2670), + [anon_sym_extern] = ACTIONS(2670), + [anon_sym_yield] = ACTIONS(2670), + [anon_sym_move] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2670), + [sym_integer_literal] = ACTIONS(2668), + [aux_sym_string_literal_token1] = ACTIONS(2668), + [sym_char_literal] = ACTIONS(2668), + [anon_sym_true] = ACTIONS(2670), + [anon_sym_false] = ACTIONS(2670), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2670), + [sym_super] = ACTIONS(2670), + [sym_crate] = ACTIONS(2670), + [sym_metavariable] = ACTIONS(2668), + [sym__raw_string_literal_start] = ACTIONS(2668), + [sym_float_literal] = ACTIONS(2668), }, - [STATE(686)] = { - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), + [STATE(707)] = { + [sym_line_comment] = STATE(707), + [sym_block_comment] = STATE(707), [ts_builtin_sym_end] = ACTIONS(2672), [sym_identifier] = ACTIONS(2674), [anon_sym_SEMI] = ACTIONS(2672), @@ -86854,9 +88733,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2672), [sym_float_literal] = ACTIONS(2672), }, - [STATE(687)] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), + [STATE(708)] = { + [sym_line_comment] = STATE(708), + [sym_block_comment] = STATE(708), [ts_builtin_sym_end] = ACTIONS(2676), [sym_identifier] = ACTIONS(2678), [anon_sym_SEMI] = ACTIONS(2676), @@ -86935,495 +88814,414 @@ 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(2229), - [sym_visibility_modifier] = STATE(1997), - [sym_bracketed_type] = STATE(3441), - [sym_generic_type_with_turbofish] = STATE(3467), - [sym_macro_invocation] = STATE(1090), - [sym_scoped_identifier] = STATE(3306), - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), - [aux_sym_declaration_list_repeat1] = STATE(693), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_macro_rules_BANG] = ACTIONS(2548), + [STATE(709)] = { + [sym_line_comment] = STATE(709), + [sym_block_comment] = STATE(709), + [ts_builtin_sym_end] = ACTIONS(2680), + [sym_identifier] = ACTIONS(2682), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_macro_rules_BANG] = ACTIONS(2680), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_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), + [anon_sym_STAR] = ACTIONS(2680), + [anon_sym_u8] = ACTIONS(2682), + [anon_sym_i8] = ACTIONS(2682), + [anon_sym_u16] = ACTIONS(2682), + [anon_sym_i16] = ACTIONS(2682), + [anon_sym_u32] = ACTIONS(2682), + [anon_sym_i32] = ACTIONS(2682), + [anon_sym_u64] = ACTIONS(2682), + [anon_sym_i64] = ACTIONS(2682), + [anon_sym_u128] = ACTIONS(2682), + [anon_sym_i128] = ACTIONS(2682), + [anon_sym_isize] = ACTIONS(2682), + [anon_sym_usize] = ACTIONS(2682), + [anon_sym_f32] = ACTIONS(2682), + [anon_sym_f64] = ACTIONS(2682), + [anon_sym_bool] = ACTIONS(2682), + [anon_sym_str] = ACTIONS(2682), + [anon_sym_char] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_BANG] = ACTIONS(2680), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_LT] = ACTIONS(2680), + [anon_sym_DOT_DOT] = ACTIONS(2680), + [anon_sym_COLON_COLON] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(2680), + [anon_sym_SQUOTE] = ACTIONS(2682), + [anon_sym_async] = ACTIONS(2682), + [anon_sym_break] = ACTIONS(2682), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_continue] = ACTIONS(2682), + [anon_sym_default] = ACTIONS(2682), + [anon_sym_enum] = ACTIONS(2682), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_for] = ACTIONS(2682), + [anon_sym_gen] = ACTIONS(2682), + [anon_sym_if] = ACTIONS(2682), + [anon_sym_impl] = ACTIONS(2682), + [anon_sym_let] = ACTIONS(2682), + [anon_sym_loop] = ACTIONS(2682), + [anon_sym_match] = ACTIONS(2682), + [anon_sym_mod] = ACTIONS(2682), + [anon_sym_pub] = ACTIONS(2682), + [anon_sym_return] = ACTIONS(2682), + [anon_sym_static] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(2682), + [anon_sym_trait] = ACTIONS(2682), + [anon_sym_type] = ACTIONS(2682), + [anon_sym_union] = ACTIONS(2682), + [anon_sym_unsafe] = ACTIONS(2682), + [anon_sym_use] = ACTIONS(2682), + [anon_sym_while] = ACTIONS(2682), + [anon_sym_extern] = ACTIONS(2682), + [anon_sym_yield] = ACTIONS(2682), + [anon_sym_move] = ACTIONS(2682), + [anon_sym_try] = ACTIONS(2682), + [sym_integer_literal] = ACTIONS(2680), + [aux_sym_string_literal_token1] = ACTIONS(2680), + [sym_char_literal] = ACTIONS(2680), + [anon_sym_true] = ACTIONS(2682), + [anon_sym_false] = ACTIONS(2682), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2682), + [sym_super] = ACTIONS(2682), + [sym_crate] = ACTIONS(2682), + [sym_metavariable] = ACTIONS(2680), + [sym__raw_string_literal_start] = ACTIONS(2680), + [sym_float_literal] = ACTIONS(2680), }, - [STATE(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(710)] = { + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), + [ts_builtin_sym_end] = ACTIONS(2684), + [sym_identifier] = ACTIONS(2686), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_macro_rules_BANG] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2684), + [anon_sym_RBRACE] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2684), + [anon_sym_u8] = ACTIONS(2686), + [anon_sym_i8] = ACTIONS(2686), + [anon_sym_u16] = ACTIONS(2686), + [anon_sym_i16] = ACTIONS(2686), + [anon_sym_u32] = ACTIONS(2686), + [anon_sym_i32] = ACTIONS(2686), + [anon_sym_u64] = ACTIONS(2686), + [anon_sym_i64] = ACTIONS(2686), + [anon_sym_u128] = ACTIONS(2686), + [anon_sym_i128] = ACTIONS(2686), + [anon_sym_isize] = ACTIONS(2686), + [anon_sym_usize] = ACTIONS(2686), + [anon_sym_f32] = ACTIONS(2686), + [anon_sym_f64] = ACTIONS(2686), + [anon_sym_bool] = ACTIONS(2686), + [anon_sym_str] = ACTIONS(2686), + [anon_sym_char] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_LT] = ACTIONS(2684), + [anon_sym_DOT_DOT] = ACTIONS(2684), + [anon_sym_COLON_COLON] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_SQUOTE] = ACTIONS(2686), + [anon_sym_async] = ACTIONS(2686), + [anon_sym_break] = ACTIONS(2686), + [anon_sym_const] = ACTIONS(2686), + [anon_sym_continue] = ACTIONS(2686), + [anon_sym_default] = ACTIONS(2686), + [anon_sym_enum] = ACTIONS(2686), + [anon_sym_fn] = ACTIONS(2686), + [anon_sym_for] = ACTIONS(2686), + [anon_sym_gen] = ACTIONS(2686), + [anon_sym_if] = ACTIONS(2686), + [anon_sym_impl] = ACTIONS(2686), + [anon_sym_let] = ACTIONS(2686), + [anon_sym_loop] = ACTIONS(2686), + [anon_sym_match] = ACTIONS(2686), + [anon_sym_mod] = ACTIONS(2686), + [anon_sym_pub] = ACTIONS(2686), + [anon_sym_return] = ACTIONS(2686), + [anon_sym_static] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2686), + [anon_sym_trait] = ACTIONS(2686), + [anon_sym_type] = ACTIONS(2686), + [anon_sym_union] = ACTIONS(2686), + [anon_sym_unsafe] = ACTIONS(2686), + [anon_sym_use] = ACTIONS(2686), + [anon_sym_while] = ACTIONS(2686), + [anon_sym_extern] = ACTIONS(2686), + [anon_sym_yield] = ACTIONS(2686), + [anon_sym_move] = ACTIONS(2686), + [anon_sym_try] = ACTIONS(2686), + [sym_integer_literal] = ACTIONS(2684), + [aux_sym_string_literal_token1] = ACTIONS(2684), + [sym_char_literal] = ACTIONS(2684), + [anon_sym_true] = ACTIONS(2686), + [anon_sym_false] = ACTIONS(2686), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2686), + [sym_super] = ACTIONS(2686), + [sym_crate] = ACTIONS(2686), + [sym_metavariable] = ACTIONS(2684), + [sym__raw_string_literal_start] = ACTIONS(2684), + [sym_float_literal] = ACTIONS(2684), }, - [STATE(691)] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(2690), - [sym_identifier] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_macro_rules_BANG] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_STAR] = ACTIONS(2690), - [anon_sym_u8] = ACTIONS(2692), - [anon_sym_i8] = ACTIONS(2692), - [anon_sym_u16] = ACTIONS(2692), - [anon_sym_i16] = ACTIONS(2692), - [anon_sym_u32] = ACTIONS(2692), - [anon_sym_i32] = ACTIONS(2692), - [anon_sym_u64] = ACTIONS(2692), - [anon_sym_i64] = ACTIONS(2692), - [anon_sym_u128] = ACTIONS(2692), - [anon_sym_i128] = ACTIONS(2692), - [anon_sym_isize] = ACTIONS(2692), - [anon_sym_usize] = ACTIONS(2692), - [anon_sym_f32] = ACTIONS(2692), - [anon_sym_f64] = ACTIONS(2692), - [anon_sym_bool] = ACTIONS(2692), - [anon_sym_str] = ACTIONS(2692), - [anon_sym_char] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_BANG] = ACTIONS(2690), - [anon_sym_AMP] = ACTIONS(2690), - [anon_sym_PIPE] = ACTIONS(2690), - [anon_sym_LT] = ACTIONS(2690), - [anon_sym_DOT_DOT] = ACTIONS(2690), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_POUND] = ACTIONS(2690), - [anon_sym_SQUOTE] = ACTIONS(2692), - [anon_sym_async] = ACTIONS(2692), - [anon_sym_break] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2692), - [anon_sym_continue] = ACTIONS(2692), - [anon_sym_default] = ACTIONS(2692), - [anon_sym_enum] = ACTIONS(2692), - [anon_sym_fn] = ACTIONS(2692), - [anon_sym_for] = ACTIONS(2692), - [anon_sym_gen] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2692), - [anon_sym_impl] = ACTIONS(2692), - [anon_sym_let] = ACTIONS(2692), - [anon_sym_loop] = ACTIONS(2692), - [anon_sym_match] = ACTIONS(2692), - [anon_sym_mod] = ACTIONS(2692), - [anon_sym_pub] = ACTIONS(2692), - [anon_sym_return] = ACTIONS(2692), - [anon_sym_static] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2692), - [anon_sym_trait] = ACTIONS(2692), - [anon_sym_type] = ACTIONS(2692), - [anon_sym_union] = ACTIONS(2692), - [anon_sym_unsafe] = ACTIONS(2692), - [anon_sym_use] = ACTIONS(2692), - [anon_sym_while] = ACTIONS(2692), - [anon_sym_extern] = ACTIONS(2692), - [anon_sym_yield] = ACTIONS(2692), - [anon_sym_move] = ACTIONS(2692), - [anon_sym_try] = ACTIONS(2692), - [sym_integer_literal] = ACTIONS(2690), - [aux_sym_string_literal_token1] = ACTIONS(2690), - [sym_char_literal] = ACTIONS(2690), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2692), - [sym_super] = ACTIONS(2692), - [sym_crate] = ACTIONS(2692), - [sym_metavariable] = ACTIONS(2690), - [sym__raw_string_literal_start] = ACTIONS(2690), - [sym_float_literal] = ACTIONS(2690), + [STATE(711)] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), + [ts_builtin_sym_end] = ACTIONS(2688), + [sym_identifier] = ACTIONS(2690), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_macro_rules_BANG] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2688), + [anon_sym_RBRACE] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2688), + [anon_sym_u8] = ACTIONS(2690), + [anon_sym_i8] = ACTIONS(2690), + [anon_sym_u16] = ACTIONS(2690), + [anon_sym_i16] = ACTIONS(2690), + [anon_sym_u32] = ACTIONS(2690), + [anon_sym_i32] = ACTIONS(2690), + [anon_sym_u64] = ACTIONS(2690), + [anon_sym_i64] = ACTIONS(2690), + [anon_sym_u128] = ACTIONS(2690), + [anon_sym_i128] = ACTIONS(2690), + [anon_sym_isize] = ACTIONS(2690), + [anon_sym_usize] = ACTIONS(2690), + [anon_sym_f32] = ACTIONS(2690), + [anon_sym_f64] = ACTIONS(2690), + [anon_sym_bool] = ACTIONS(2690), + [anon_sym_str] = ACTIONS(2690), + [anon_sym_char] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_BANG] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_DOT_DOT] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(2688), + [anon_sym_SQUOTE] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_const] = ACTIONS(2690), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_default] = ACTIONS(2690), + [anon_sym_enum] = ACTIONS(2690), + [anon_sym_fn] = ACTIONS(2690), + [anon_sym_for] = ACTIONS(2690), + [anon_sym_gen] = ACTIONS(2690), + [anon_sym_if] = ACTIONS(2690), + [anon_sym_impl] = ACTIONS(2690), + [anon_sym_let] = ACTIONS(2690), + [anon_sym_loop] = ACTIONS(2690), + [anon_sym_match] = ACTIONS(2690), + [anon_sym_mod] = ACTIONS(2690), + [anon_sym_pub] = ACTIONS(2690), + [anon_sym_return] = ACTIONS(2690), + [anon_sym_static] = ACTIONS(2690), + [anon_sym_struct] = ACTIONS(2690), + [anon_sym_trait] = ACTIONS(2690), + [anon_sym_type] = ACTIONS(2690), + [anon_sym_union] = ACTIONS(2690), + [anon_sym_unsafe] = ACTIONS(2690), + [anon_sym_use] = ACTIONS(2690), + [anon_sym_while] = ACTIONS(2690), + [anon_sym_extern] = ACTIONS(2690), + [anon_sym_yield] = ACTIONS(2690), + [anon_sym_move] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2690), + [sym_integer_literal] = ACTIONS(2688), + [aux_sym_string_literal_token1] = ACTIONS(2688), + [sym_char_literal] = ACTIONS(2688), + [anon_sym_true] = ACTIONS(2690), + [anon_sym_false] = ACTIONS(2690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2690), + [sym_super] = ACTIONS(2690), + [sym_crate] = ACTIONS(2690), + [sym_metavariable] = ACTIONS(2688), + [sym__raw_string_literal_start] = ACTIONS(2688), + [sym_float_literal] = ACTIONS(2688), }, - [STATE(692)] = { - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), - [ts_builtin_sym_end] = ACTIONS(2694), - [sym_identifier] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2694), - [anon_sym_macro_rules_BANG] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_u8] = ACTIONS(2696), - [anon_sym_i8] = ACTIONS(2696), - [anon_sym_u16] = ACTIONS(2696), - [anon_sym_i16] = ACTIONS(2696), - [anon_sym_u32] = ACTIONS(2696), - [anon_sym_i32] = ACTIONS(2696), - [anon_sym_u64] = ACTIONS(2696), - [anon_sym_i64] = ACTIONS(2696), - [anon_sym_u128] = ACTIONS(2696), - [anon_sym_i128] = ACTIONS(2696), - [anon_sym_isize] = ACTIONS(2696), - [anon_sym_usize] = ACTIONS(2696), - [anon_sym_f32] = ACTIONS(2696), - [anon_sym_f64] = ACTIONS(2696), - [anon_sym_bool] = ACTIONS(2696), - [anon_sym_str] = ACTIONS(2696), - [anon_sym_char] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_COLON_COLON] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_SQUOTE] = ACTIONS(2696), - [anon_sym_async] = ACTIONS(2696), - [anon_sym_break] = ACTIONS(2696), - [anon_sym_const] = ACTIONS(2696), - [anon_sym_continue] = ACTIONS(2696), - [anon_sym_default] = ACTIONS(2696), - [anon_sym_enum] = ACTIONS(2696), - [anon_sym_fn] = ACTIONS(2696), - [anon_sym_for] = ACTIONS(2696), - [anon_sym_gen] = ACTIONS(2696), - [anon_sym_if] = ACTIONS(2696), - [anon_sym_impl] = ACTIONS(2696), - [anon_sym_let] = ACTIONS(2696), - [anon_sym_loop] = ACTIONS(2696), - [anon_sym_match] = ACTIONS(2696), - [anon_sym_mod] = ACTIONS(2696), - [anon_sym_pub] = ACTIONS(2696), - [anon_sym_return] = ACTIONS(2696), - [anon_sym_static] = ACTIONS(2696), - [anon_sym_struct] = ACTIONS(2696), - [anon_sym_trait] = ACTIONS(2696), - [anon_sym_type] = ACTIONS(2696), - [anon_sym_union] = ACTIONS(2696), - [anon_sym_unsafe] = ACTIONS(2696), - [anon_sym_use] = ACTIONS(2696), - [anon_sym_while] = ACTIONS(2696), - [anon_sym_extern] = ACTIONS(2696), - [anon_sym_yield] = ACTIONS(2696), - [anon_sym_move] = ACTIONS(2696), - [anon_sym_try] = ACTIONS(2696), - [sym_integer_literal] = ACTIONS(2694), - [aux_sym_string_literal_token1] = ACTIONS(2694), - [sym_char_literal] = ACTIONS(2694), - [anon_sym_true] = ACTIONS(2696), - [anon_sym_false] = ACTIONS(2696), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2696), - [sym_super] = ACTIONS(2696), - [sym_crate] = ACTIONS(2696), - [sym_metavariable] = ACTIONS(2694), - [sym__raw_string_literal_start] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), + [STATE(712)] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_macro_rules_BANG] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2694), + [anon_sym_i8] = ACTIONS(2694), + [anon_sym_u16] = ACTIONS(2694), + [anon_sym_i16] = ACTIONS(2694), + [anon_sym_u32] = ACTIONS(2694), + [anon_sym_i32] = ACTIONS(2694), + [anon_sym_u64] = ACTIONS(2694), + [anon_sym_i64] = ACTIONS(2694), + [anon_sym_u128] = ACTIONS(2694), + [anon_sym_i128] = ACTIONS(2694), + [anon_sym_isize] = ACTIONS(2694), + [anon_sym_usize] = ACTIONS(2694), + [anon_sym_f32] = ACTIONS(2694), + [anon_sym_f64] = ACTIONS(2694), + [anon_sym_bool] = ACTIONS(2694), + [anon_sym_str] = ACTIONS(2694), + [anon_sym_char] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_LT] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2694), + [anon_sym_async] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_const] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_default] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_gen] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_impl] = ACTIONS(2694), + [anon_sym_let] = ACTIONS(2694), + [anon_sym_loop] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_mod] = ACTIONS(2694), + [anon_sym_pub] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_static] = ACTIONS(2694), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_trait] = ACTIONS(2694), + [anon_sym_type] = ACTIONS(2694), + [anon_sym_union] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_use] = ACTIONS(2694), + [anon_sym_while] = ACTIONS(2694), + [anon_sym_extern] = ACTIONS(2694), + [anon_sym_yield] = ACTIONS(2694), + [anon_sym_move] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2694), + [sym_integer_literal] = ACTIONS(2692), + [aux_sym_string_literal_token1] = ACTIONS(2692), + [sym_char_literal] = ACTIONS(2692), + [anon_sym_true] = ACTIONS(2694), + [anon_sym_false] = ACTIONS(2694), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2694), + [sym_super] = ACTIONS(2694), + [sym_crate] = ACTIONS(2694), + [sym_metavariable] = ACTIONS(2692), + [sym__raw_string_literal_start] = ACTIONS(2692), + [sym_float_literal] = ACTIONS(2692), }, - [STATE(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(2229), - [sym_visibility_modifier] = STATE(1997), - [sym_bracketed_type] = STATE(3441), - [sym_generic_type_with_turbofish] = STATE(3467), - [sym_macro_invocation] = STATE(1090), - [sym_scoped_identifier] = STATE(3306), - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), - [aux_sym_declaration_list_repeat1] = STATE(641), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(713)] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), + [ts_builtin_sym_end] = ACTIONS(2696), + [sym_identifier] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_macro_rules_BANG] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_RBRACE] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2698), + [anon_sym_i8] = ACTIONS(2698), + [anon_sym_u16] = ACTIONS(2698), + [anon_sym_i16] = ACTIONS(2698), + [anon_sym_u32] = ACTIONS(2698), + [anon_sym_i32] = ACTIONS(2698), + [anon_sym_u64] = ACTIONS(2698), + [anon_sym_i64] = ACTIONS(2698), + [anon_sym_u128] = ACTIONS(2698), + [anon_sym_i128] = ACTIONS(2698), + [anon_sym_isize] = ACTIONS(2698), + [anon_sym_usize] = ACTIONS(2698), + [anon_sym_f32] = ACTIONS(2698), + [anon_sym_f64] = ACTIONS(2698), + [anon_sym_bool] = ACTIONS(2698), + [anon_sym_str] = ACTIONS(2698), + [anon_sym_char] = ACTIONS(2698), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_COLON_COLON] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_async] = ACTIONS(2698), + [anon_sym_break] = ACTIONS(2698), + [anon_sym_const] = ACTIONS(2698), + [anon_sym_continue] = ACTIONS(2698), + [anon_sym_default] = ACTIONS(2698), + [anon_sym_enum] = ACTIONS(2698), + [anon_sym_fn] = ACTIONS(2698), + [anon_sym_for] = ACTIONS(2698), + [anon_sym_gen] = ACTIONS(2698), + [anon_sym_if] = ACTIONS(2698), + [anon_sym_impl] = ACTIONS(2698), + [anon_sym_let] = ACTIONS(2698), + [anon_sym_loop] = ACTIONS(2698), + [anon_sym_match] = ACTIONS(2698), + [anon_sym_mod] = ACTIONS(2698), + [anon_sym_pub] = ACTIONS(2698), + [anon_sym_return] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(2698), + [anon_sym_trait] = ACTIONS(2698), + [anon_sym_type] = ACTIONS(2698), + [anon_sym_union] = ACTIONS(2698), + [anon_sym_unsafe] = ACTIONS(2698), + [anon_sym_use] = ACTIONS(2698), + [anon_sym_while] = ACTIONS(2698), + [anon_sym_extern] = ACTIONS(2698), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_move] = ACTIONS(2698), + [anon_sym_try] = ACTIONS(2698), + [sym_integer_literal] = ACTIONS(2696), + [aux_sym_string_literal_token1] = ACTIONS(2696), + [sym_char_literal] = ACTIONS(2696), + [anon_sym_true] = ACTIONS(2698), + [anon_sym_false] = ACTIONS(2698), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2698), + [sym_super] = ACTIONS(2698), + [sym_crate] = ACTIONS(2698), + [sym_metavariable] = ACTIONS(2696), + [sym__raw_string_literal_start] = ACTIONS(2696), + [sym_float_literal] = ACTIONS(2696), }, - [STATE(694)] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), + [STATE(714)] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), [ts_builtin_sym_end] = ACTIONS(2700), [sym_identifier] = ACTIONS(2702), [anon_sym_SEMI] = ACTIONS(2700), @@ -87502,9 +89300,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(695)] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [STATE(715)] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), [ts_builtin_sym_end] = ACTIONS(2704), [sym_identifier] = ACTIONS(2706), [anon_sym_SEMI] = ACTIONS(2704), @@ -87583,414 +89381,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2704), [sym_float_literal] = ACTIONS(2704), }, - [STATE(696)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3252), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [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(716)] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(2708), + [sym_identifier] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2708), + [anon_sym_macro_rules_BANG] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_RBRACE] = ACTIONS(2708), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2710), + [anon_sym_i8] = ACTIONS(2710), + [anon_sym_u16] = ACTIONS(2710), + [anon_sym_i16] = ACTIONS(2710), + [anon_sym_u32] = ACTIONS(2710), + [anon_sym_i32] = ACTIONS(2710), + [anon_sym_u64] = ACTIONS(2710), + [anon_sym_i64] = ACTIONS(2710), + [anon_sym_u128] = ACTIONS(2710), + [anon_sym_i128] = ACTIONS(2710), + [anon_sym_isize] = ACTIONS(2710), + [anon_sym_usize] = ACTIONS(2710), + [anon_sym_f32] = ACTIONS(2710), + [anon_sym_f64] = ACTIONS(2710), + [anon_sym_bool] = ACTIONS(2710), + [anon_sym_str] = ACTIONS(2710), + [anon_sym_char] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2708), + [anon_sym_POUND] = ACTIONS(2708), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_async] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2710), + [anon_sym_const] = ACTIONS(2710), + [anon_sym_continue] = ACTIONS(2710), + [anon_sym_default] = ACTIONS(2710), + [anon_sym_enum] = ACTIONS(2710), + [anon_sym_fn] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_gen] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(2710), + [anon_sym_impl] = ACTIONS(2710), + [anon_sym_let] = ACTIONS(2710), + [anon_sym_loop] = ACTIONS(2710), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_mod] = ACTIONS(2710), + [anon_sym_pub] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2710), + [anon_sym_static] = ACTIONS(2710), + [anon_sym_struct] = ACTIONS(2710), + [anon_sym_trait] = ACTIONS(2710), + [anon_sym_type] = ACTIONS(2710), + [anon_sym_union] = ACTIONS(2710), + [anon_sym_unsafe] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2710), + [anon_sym_while] = ACTIONS(2710), + [anon_sym_extern] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2710), + [anon_sym_move] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2710), + [sym_integer_literal] = ACTIONS(2708), + [aux_sym_string_literal_token1] = ACTIONS(2708), + [sym_char_literal] = ACTIONS(2708), + [anon_sym_true] = ACTIONS(2710), + [anon_sym_false] = ACTIONS(2710), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2710), + [sym_super] = ACTIONS(2710), + [sym_crate] = ACTIONS(2710), + [sym_metavariable] = ACTIONS(2708), + [sym__raw_string_literal_start] = ACTIONS(2708), + [sym_float_literal] = ACTIONS(2708), }, - [STATE(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(717)] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), + [ts_builtin_sym_end] = ACTIONS(2712), + [sym_identifier] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_macro_rules_BANG] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2712), + [anon_sym_RBRACE] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2712), + [anon_sym_u8] = ACTIONS(2714), + [anon_sym_i8] = ACTIONS(2714), + [anon_sym_u16] = ACTIONS(2714), + [anon_sym_i16] = ACTIONS(2714), + [anon_sym_u32] = ACTIONS(2714), + [anon_sym_i32] = ACTIONS(2714), + [anon_sym_u64] = ACTIONS(2714), + [anon_sym_i64] = ACTIONS(2714), + [anon_sym_u128] = ACTIONS(2714), + [anon_sym_i128] = ACTIONS(2714), + [anon_sym_isize] = ACTIONS(2714), + [anon_sym_usize] = ACTIONS(2714), + [anon_sym_f32] = ACTIONS(2714), + [anon_sym_f64] = ACTIONS(2714), + [anon_sym_bool] = ACTIONS(2714), + [anon_sym_str] = ACTIONS(2714), + [anon_sym_char] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_AMP] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2712), + [anon_sym_COLON_COLON] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_async] = ACTIONS(2714), + [anon_sym_break] = ACTIONS(2714), + [anon_sym_const] = ACTIONS(2714), + [anon_sym_continue] = ACTIONS(2714), + [anon_sym_default] = ACTIONS(2714), + [anon_sym_enum] = ACTIONS(2714), + [anon_sym_fn] = ACTIONS(2714), + [anon_sym_for] = ACTIONS(2714), + [anon_sym_gen] = ACTIONS(2714), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_impl] = ACTIONS(2714), + [anon_sym_let] = ACTIONS(2714), + [anon_sym_loop] = ACTIONS(2714), + [anon_sym_match] = ACTIONS(2714), + [anon_sym_mod] = ACTIONS(2714), + [anon_sym_pub] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2714), + [anon_sym_static] = ACTIONS(2714), + [anon_sym_struct] = ACTIONS(2714), + [anon_sym_trait] = ACTIONS(2714), + [anon_sym_type] = ACTIONS(2714), + [anon_sym_union] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2714), + [anon_sym_use] = ACTIONS(2714), + [anon_sym_while] = ACTIONS(2714), + [anon_sym_extern] = ACTIONS(2714), + [anon_sym_yield] = ACTIONS(2714), + [anon_sym_move] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2714), + [sym_integer_literal] = ACTIONS(2712), + [aux_sym_string_literal_token1] = ACTIONS(2712), + [sym_char_literal] = ACTIONS(2712), + [anon_sym_true] = ACTIONS(2714), + [anon_sym_false] = ACTIONS(2714), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2714), + [sym_super] = ACTIONS(2714), + [sym_crate] = ACTIONS(2714), + [sym_metavariable] = ACTIONS(2712), + [sym__raw_string_literal_start] = ACTIONS(2712), + [sym_float_literal] = ACTIONS(2712), }, - [STATE(698)] = { - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), - [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(718)] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), + [ts_builtin_sym_end] = ACTIONS(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_macro_rules_BANG] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_STAR] = ACTIONS(2716), + [anon_sym_u8] = ACTIONS(2718), + [anon_sym_i8] = ACTIONS(2718), + [anon_sym_u16] = ACTIONS(2718), + [anon_sym_i16] = ACTIONS(2718), + [anon_sym_u32] = ACTIONS(2718), + [anon_sym_i32] = ACTIONS(2718), + [anon_sym_u64] = ACTIONS(2718), + [anon_sym_i64] = ACTIONS(2718), + [anon_sym_u128] = ACTIONS(2718), + [anon_sym_i128] = ACTIONS(2718), + [anon_sym_isize] = ACTIONS(2718), + [anon_sym_usize] = ACTIONS(2718), + [anon_sym_f32] = ACTIONS(2718), + [anon_sym_f64] = ACTIONS(2718), + [anon_sym_bool] = ACTIONS(2718), + [anon_sym_str] = ACTIONS(2718), + [anon_sym_char] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_AMP] = ACTIONS(2716), + [anon_sym_PIPE] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_COLON_COLON] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [anon_sym_fn] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_gen] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_impl] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_loop] = ACTIONS(2718), + [anon_sym_match] = ACTIONS(2718), + [anon_sym_mod] = ACTIONS(2718), + [anon_sym_pub] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_trait] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_union] = ACTIONS(2718), + [anon_sym_unsafe] = ACTIONS(2718), + [anon_sym_use] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_extern] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_move] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [sym_integer_literal] = ACTIONS(2716), + [aux_sym_string_literal_token1] = ACTIONS(2716), + [sym_char_literal] = ACTIONS(2716), + [anon_sym_true] = ACTIONS(2718), + [anon_sym_false] = ACTIONS(2718), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_crate] = ACTIONS(2718), + [sym_metavariable] = ACTIONS(2716), + [sym__raw_string_literal_start] = ACTIONS(2716), + [sym_float_literal] = ACTIONS(2716), }, - [STATE(699)] = { - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), - [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(719)] = { + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), + [ts_builtin_sym_end] = ACTIONS(2720), + [sym_identifier] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_macro_rules_BANG] = ACTIONS(2720), + [anon_sym_LPAREN] = ACTIONS(2720), + [anon_sym_LBRACK] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2720), + [anon_sym_RBRACE] = ACTIONS(2720), + [anon_sym_STAR] = ACTIONS(2720), + [anon_sym_u8] = ACTIONS(2722), + [anon_sym_i8] = ACTIONS(2722), + [anon_sym_u16] = ACTIONS(2722), + [anon_sym_i16] = ACTIONS(2722), + [anon_sym_u32] = ACTIONS(2722), + [anon_sym_i32] = ACTIONS(2722), + [anon_sym_u64] = ACTIONS(2722), + [anon_sym_i64] = ACTIONS(2722), + [anon_sym_u128] = ACTIONS(2722), + [anon_sym_i128] = ACTIONS(2722), + [anon_sym_isize] = ACTIONS(2722), + [anon_sym_usize] = ACTIONS(2722), + [anon_sym_f32] = ACTIONS(2722), + [anon_sym_f64] = ACTIONS(2722), + [anon_sym_bool] = ACTIONS(2722), + [anon_sym_str] = ACTIONS(2722), + [anon_sym_char] = ACTIONS(2722), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym_BANG] = ACTIONS(2720), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_LT] = ACTIONS(2720), + [anon_sym_DOT_DOT] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(2720), + [anon_sym_SQUOTE] = ACTIONS(2722), + [anon_sym_async] = ACTIONS(2722), + [anon_sym_break] = ACTIONS(2722), + [anon_sym_const] = ACTIONS(2722), + [anon_sym_continue] = ACTIONS(2722), + [anon_sym_default] = ACTIONS(2722), + [anon_sym_enum] = ACTIONS(2722), + [anon_sym_fn] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2722), + [anon_sym_gen] = ACTIONS(2722), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_impl] = ACTIONS(2722), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_loop] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2722), + [anon_sym_mod] = ACTIONS(2722), + [anon_sym_pub] = ACTIONS(2722), + [anon_sym_return] = ACTIONS(2722), + [anon_sym_static] = ACTIONS(2722), + [anon_sym_struct] = ACTIONS(2722), + [anon_sym_trait] = ACTIONS(2722), + [anon_sym_type] = ACTIONS(2722), + [anon_sym_union] = ACTIONS(2722), + [anon_sym_unsafe] = ACTIONS(2722), + [anon_sym_use] = ACTIONS(2722), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_extern] = ACTIONS(2722), + [anon_sym_yield] = ACTIONS(2722), + [anon_sym_move] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2722), + [sym_integer_literal] = ACTIONS(2720), + [aux_sym_string_literal_token1] = ACTIONS(2720), + [sym_char_literal] = ACTIONS(2720), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2722), + [sym_super] = ACTIONS(2722), + [sym_crate] = ACTIONS(2722), + [sym_metavariable] = ACTIONS(2720), + [sym__raw_string_literal_start] = ACTIONS(2720), + [sym_float_literal] = ACTIONS(2720), }, - [STATE(700)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3252), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), - [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(720)] = { + [sym_attribute_item] = STATE(1412), + [sym_inner_attribute_item] = STATE(1412), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_match_pattern] = STATE(3748), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3115), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), + [aux_sym_match_arm_repeat1] = STATE(1064), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_POUND] = ACTIONS(1681), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, - [STATE(701)] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), + [STATE(721)] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), [ts_builtin_sym_end] = ACTIONS(2724), [sym_identifier] = ACTIONS(2726), [anon_sym_SEMI] = ACTIONS(2724), @@ -88069,3978 +89867,2115 @@ 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(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3252), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [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(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(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(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(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(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(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(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(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(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(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(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_pattern] = STATE(3446), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), - [sym_line_comment] = STATE(713), - [sym_block_comment] = STATE(713), - [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(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(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(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(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(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(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(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(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(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), + [ts_builtin_sym_end] = ACTIONS(2728), + [sym_identifier] = ACTIONS(2730), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_macro_rules_BANG] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_RBRACE] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_u8] = ACTIONS(2730), + [anon_sym_i8] = ACTIONS(2730), + [anon_sym_u16] = ACTIONS(2730), + [anon_sym_i16] = ACTIONS(2730), + [anon_sym_u32] = ACTIONS(2730), + [anon_sym_i32] = ACTIONS(2730), + [anon_sym_u64] = ACTIONS(2730), + [anon_sym_i64] = ACTIONS(2730), + [anon_sym_u128] = ACTIONS(2730), + [anon_sym_i128] = ACTIONS(2730), + [anon_sym_isize] = ACTIONS(2730), + [anon_sym_usize] = ACTIONS(2730), + [anon_sym_f32] = ACTIONS(2730), + [anon_sym_f64] = ACTIONS(2730), + [anon_sym_bool] = ACTIONS(2730), + [anon_sym_str] = ACTIONS(2730), + [anon_sym_char] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2728), + [anon_sym_DOT_DOT] = ACTIONS(2728), + [anon_sym_COLON_COLON] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_SQUOTE] = ACTIONS(2730), + [anon_sym_async] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_const] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_default] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), + [anon_sym_fn] = ACTIONS(2730), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_gen] = ACTIONS(2730), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_impl] = ACTIONS(2730), + [anon_sym_let] = ACTIONS(2730), + [anon_sym_loop] = ACTIONS(2730), + [anon_sym_match] = ACTIONS(2730), + [anon_sym_mod] = ACTIONS(2730), + [anon_sym_pub] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_struct] = ACTIONS(2730), + [anon_sym_trait] = ACTIONS(2730), + [anon_sym_type] = ACTIONS(2730), + [anon_sym_union] = ACTIONS(2730), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_use] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_extern] = ACTIONS(2730), + [anon_sym_yield] = ACTIONS(2730), + [anon_sym_move] = ACTIONS(2730), + [anon_sym_try] = ACTIONS(2730), + [sym_integer_literal] = ACTIONS(2728), + [aux_sym_string_literal_token1] = ACTIONS(2728), + [sym_char_literal] = ACTIONS(2728), + [anon_sym_true] = ACTIONS(2730), + [anon_sym_false] = ACTIONS(2730), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2730), + [sym_super] = ACTIONS(2730), + [sym_crate] = ACTIONS(2730), + [sym_metavariable] = ACTIONS(2728), + [sym__raw_string_literal_start] = ACTIONS(2728), + [sym_float_literal] = ACTIONS(2728), }, [STATE(723)] = { [sym_line_comment] = STATE(723), [sym_block_comment] = STATE(723), - [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), + [ts_builtin_sym_end] = ACTIONS(2732), + [sym_identifier] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_macro_rules_BANG] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_RBRACE] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2732), + [anon_sym_u8] = ACTIONS(2734), + [anon_sym_i8] = ACTIONS(2734), + [anon_sym_u16] = ACTIONS(2734), + [anon_sym_i16] = ACTIONS(2734), + [anon_sym_u32] = ACTIONS(2734), + [anon_sym_i32] = ACTIONS(2734), + [anon_sym_u64] = ACTIONS(2734), + [anon_sym_i64] = ACTIONS(2734), + [anon_sym_u128] = ACTIONS(2734), + [anon_sym_i128] = ACTIONS(2734), + [anon_sym_isize] = ACTIONS(2734), + [anon_sym_usize] = ACTIONS(2734), + [anon_sym_f32] = ACTIONS(2734), + [anon_sym_f64] = ACTIONS(2734), + [anon_sym_bool] = ACTIONS(2734), + [anon_sym_str] = ACTIONS(2734), + [anon_sym_char] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2732), + [anon_sym_BANG] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2732), + [anon_sym_DOT_DOT] = ACTIONS(2732), + [anon_sym_COLON_COLON] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(2732), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_async] = ACTIONS(2734), + [anon_sym_break] = ACTIONS(2734), + [anon_sym_const] = ACTIONS(2734), + [anon_sym_continue] = ACTIONS(2734), + [anon_sym_default] = ACTIONS(2734), + [anon_sym_enum] = ACTIONS(2734), + [anon_sym_fn] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2734), + [anon_sym_gen] = ACTIONS(2734), + [anon_sym_if] = ACTIONS(2734), + [anon_sym_impl] = ACTIONS(2734), + [anon_sym_let] = ACTIONS(2734), + [anon_sym_loop] = ACTIONS(2734), + [anon_sym_match] = ACTIONS(2734), + [anon_sym_mod] = ACTIONS(2734), + [anon_sym_pub] = ACTIONS(2734), + [anon_sym_return] = ACTIONS(2734), + [anon_sym_static] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2734), + [anon_sym_trait] = ACTIONS(2734), + [anon_sym_type] = ACTIONS(2734), + [anon_sym_union] = ACTIONS(2734), + [anon_sym_unsafe] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2734), + [anon_sym_while] = ACTIONS(2734), + [anon_sym_extern] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2734), + [anon_sym_move] = ACTIONS(2734), + [anon_sym_try] = ACTIONS(2734), + [sym_integer_literal] = ACTIONS(2732), + [aux_sym_string_literal_token1] = ACTIONS(2732), + [sym_char_literal] = ACTIONS(2732), + [anon_sym_true] = ACTIONS(2734), + [anon_sym_false] = ACTIONS(2734), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2734), + [sym_super] = ACTIONS(2734), + [sym_crate] = ACTIONS(2734), + [sym_metavariable] = ACTIONS(2732), + [sym__raw_string_literal_start] = ACTIONS(2732), + [sym_float_literal] = ACTIONS(2732), }, [STATE(724)] = { [sym_line_comment] = STATE(724), [sym_block_comment] = STATE(724), - [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), + [ts_builtin_sym_end] = ACTIONS(2736), + [sym_identifier] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2736), + [anon_sym_macro_rules_BANG] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_RBRACE] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_u8] = ACTIONS(2738), + [anon_sym_i8] = ACTIONS(2738), + [anon_sym_u16] = ACTIONS(2738), + [anon_sym_i16] = ACTIONS(2738), + [anon_sym_u32] = ACTIONS(2738), + [anon_sym_i32] = ACTIONS(2738), + [anon_sym_u64] = ACTIONS(2738), + [anon_sym_i64] = ACTIONS(2738), + [anon_sym_u128] = ACTIONS(2738), + [anon_sym_i128] = ACTIONS(2738), + [anon_sym_isize] = ACTIONS(2738), + [anon_sym_usize] = ACTIONS(2738), + [anon_sym_f32] = ACTIONS(2738), + [anon_sym_f64] = ACTIONS(2738), + [anon_sym_bool] = ACTIONS(2738), + [anon_sym_str] = ACTIONS(2738), + [anon_sym_char] = ACTIONS(2738), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_DOT_DOT] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_SQUOTE] = ACTIONS(2738), + [anon_sym_async] = ACTIONS(2738), + [anon_sym_break] = ACTIONS(2738), + [anon_sym_const] = ACTIONS(2738), + [anon_sym_continue] = ACTIONS(2738), + [anon_sym_default] = ACTIONS(2738), + [anon_sym_enum] = ACTIONS(2738), + [anon_sym_fn] = ACTIONS(2738), + [anon_sym_for] = ACTIONS(2738), + [anon_sym_gen] = ACTIONS(2738), + [anon_sym_if] = ACTIONS(2738), + [anon_sym_impl] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2738), + [anon_sym_loop] = ACTIONS(2738), + [anon_sym_match] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_pub] = ACTIONS(2738), + [anon_sym_return] = ACTIONS(2738), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_struct] = ACTIONS(2738), + [anon_sym_trait] = ACTIONS(2738), + [anon_sym_type] = ACTIONS(2738), + [anon_sym_union] = ACTIONS(2738), + [anon_sym_unsafe] = ACTIONS(2738), + [anon_sym_use] = ACTIONS(2738), + [anon_sym_while] = ACTIONS(2738), + [anon_sym_extern] = ACTIONS(2738), + [anon_sym_yield] = ACTIONS(2738), + [anon_sym_move] = ACTIONS(2738), + [anon_sym_try] = ACTIONS(2738), + [sym_integer_literal] = ACTIONS(2736), + [aux_sym_string_literal_token1] = ACTIONS(2736), + [sym_char_literal] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2738), + [anon_sym_false] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2738), + [sym_super] = ACTIONS(2738), + [sym_crate] = ACTIONS(2738), + [sym_metavariable] = ACTIONS(2736), + [sym__raw_string_literal_start] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2736), }, [STATE(725)] = { [sym_line_comment] = STATE(725), [sym_block_comment] = STATE(725), - [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), + [ts_builtin_sym_end] = ACTIONS(2740), + [sym_identifier] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_macro_rules_BANG] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_u8] = ACTIONS(2742), + [anon_sym_i8] = ACTIONS(2742), + [anon_sym_u16] = ACTIONS(2742), + [anon_sym_i16] = ACTIONS(2742), + [anon_sym_u32] = ACTIONS(2742), + [anon_sym_i32] = ACTIONS(2742), + [anon_sym_u64] = ACTIONS(2742), + [anon_sym_i64] = ACTIONS(2742), + [anon_sym_u128] = ACTIONS(2742), + [anon_sym_i128] = ACTIONS(2742), + [anon_sym_isize] = ACTIONS(2742), + [anon_sym_usize] = ACTIONS(2742), + [anon_sym_f32] = ACTIONS(2742), + [anon_sym_f64] = ACTIONS(2742), + [anon_sym_bool] = ACTIONS(2742), + [anon_sym_str] = ACTIONS(2742), + [anon_sym_char] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_DOT_DOT] = ACTIONS(2740), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_break] = ACTIONS(2742), + [anon_sym_const] = ACTIONS(2742), + [anon_sym_continue] = ACTIONS(2742), + [anon_sym_default] = ACTIONS(2742), + [anon_sym_enum] = ACTIONS(2742), + [anon_sym_fn] = ACTIONS(2742), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_gen] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_impl] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_loop] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_mod] = ACTIONS(2742), + [anon_sym_pub] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_static] = ACTIONS(2742), + [anon_sym_struct] = ACTIONS(2742), + [anon_sym_trait] = ACTIONS(2742), + [anon_sym_type] = ACTIONS(2742), + [anon_sym_union] = ACTIONS(2742), + [anon_sym_unsafe] = ACTIONS(2742), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_extern] = ACTIONS(2742), + [anon_sym_yield] = ACTIONS(2742), + [anon_sym_move] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [sym_integer_literal] = ACTIONS(2740), + [aux_sym_string_literal_token1] = ACTIONS(2740), + [sym_char_literal] = ACTIONS(2740), + [anon_sym_true] = ACTIONS(2742), + [anon_sym_false] = ACTIONS(2742), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2742), + [sym_super] = ACTIONS(2742), + [sym_crate] = ACTIONS(2742), + [sym_metavariable] = ACTIONS(2740), + [sym__raw_string_literal_start] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2740), }, [STATE(726)] = { [sym_line_comment] = STATE(726), [sym_block_comment] = STATE(726), - [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), + [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), }, [STATE(727)] = { [sym_line_comment] = STATE(727), [sym_block_comment] = STATE(727), - [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), + [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), }, [STATE(728)] = { [sym_line_comment] = STATE(728), [sym_block_comment] = STATE(728), - [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), + [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), }, [STATE(729)] = { [sym_line_comment] = STATE(729), [sym_block_comment] = STATE(729), - [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), + [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), }, [STATE(730)] = { [sym_line_comment] = STATE(730), [sym_block_comment] = STATE(730), - [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), + [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), }, [STATE(731)] = { [sym_line_comment] = STATE(731), [sym_block_comment] = STATE(731), - [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), + [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), }, [STATE(732)] = { [sym_line_comment] = STATE(732), [sym_block_comment] = STATE(732), - [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), + [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), }, [STATE(733)] = { [sym_line_comment] = STATE(733), [sym_block_comment] = STATE(733), - [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), + [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), }, [STATE(734)] = { [sym_line_comment] = STATE(734), [sym_block_comment] = STATE(734), - [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), + [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), }, [STATE(735)] = { [sym_line_comment] = STATE(735), [sym_block_comment] = STATE(735), - [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), + [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), }, [STATE(736)] = { [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [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), + [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), }, [STATE(737)] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [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), + [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), }, [STATE(738)] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [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), + [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), }, [STATE(739)] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [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), + [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), }, [STATE(740)] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [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), + [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), }, [STATE(741)] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [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), + [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), }, [STATE(742)] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [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), + [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), }, [STATE(743)] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [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), + [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), }, [STATE(744)] = { - [sym_attribute_item] = STATE(1395), - [sym_inner_attribute_item] = STATE(1395), - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_match_pattern] = STATE(3483), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2998), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [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), + [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), }, [STATE(745)] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [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), + [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), }, [STATE(746)] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [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), + [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), }, [STATE(747)] = { + [sym_empty_statement] = STATE(1106), + [sym_macro_definition] = STATE(1106), + [sym_attribute_item] = STATE(1106), + [sym_inner_attribute_item] = STATE(1106), + [sym_mod_item] = STATE(1106), + [sym_foreign_mod_item] = STATE(1106), + [sym_struct_item] = STATE(1106), + [sym_union_item] = STATE(1106), + [sym_enum_item] = STATE(1106), + [sym_extern_crate_declaration] = STATE(1106), + [sym_const_item] = STATE(1106), + [sym_static_item] = STATE(1106), + [sym_type_item] = STATE(1106), + [sym_function_item] = STATE(1106), + [sym_function_signature_item] = STATE(1106), + [sym_function_modifiers] = STATE(3743), + [sym_impl_item] = STATE(1106), + [sym_trait_item] = STATE(1106), + [sym_associated_type] = STATE(1106), + [sym_let_declaration] = STATE(1106), + [sym_use_declaration] = STATE(1106), + [sym_extern_modifier] = STATE(2246), + [sym_visibility_modifier] = STATE(2005), + [sym_bracketed_type] = STATE(3695), + [sym_generic_type_with_turbofish] = STATE(3765), + [sym_macro_invocation] = STATE(1106), + [sym_scoped_identifier] = STATE(3406), [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [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), + [aux_sym_declaration_list_repeat1] = STATE(747), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(2828), + [anon_sym_SEMI] = ACTIONS(2831), + [anon_sym_macro_rules_BANG] = ACTIONS(2834), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_u8] = ACTIONS(2839), + [anon_sym_i8] = ACTIONS(2839), + [anon_sym_u16] = ACTIONS(2839), + [anon_sym_i16] = ACTIONS(2839), + [anon_sym_u32] = ACTIONS(2839), + [anon_sym_i32] = ACTIONS(2839), + [anon_sym_u64] = ACTIONS(2839), + [anon_sym_i64] = ACTIONS(2839), + [anon_sym_u128] = ACTIONS(2839), + [anon_sym_i128] = ACTIONS(2839), + [anon_sym_isize] = ACTIONS(2839), + [anon_sym_usize] = ACTIONS(2839), + [anon_sym_f32] = ACTIONS(2839), + [anon_sym_f64] = ACTIONS(2839), + [anon_sym_bool] = ACTIONS(2839), + [anon_sym_str] = ACTIONS(2839), + [anon_sym_char] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_COLON_COLON] = ACTIONS(2845), + [anon_sym_POUND] = ACTIONS(2848), + [anon_sym_async] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2854), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2860), + [anon_sym_fn] = ACTIONS(2863), + [anon_sym_gen] = ACTIONS(2866), + [anon_sym_impl] = ACTIONS(2869), + [anon_sym_let] = ACTIONS(2872), + [anon_sym_mod] = ACTIONS(2875), + [anon_sym_pub] = ACTIONS(2878), + [anon_sym_static] = ACTIONS(2881), + [anon_sym_struct] = ACTIONS(2884), + [anon_sym_trait] = ACTIONS(2887), + [anon_sym_type] = ACTIONS(2890), + [anon_sym_union] = ACTIONS(2893), + [anon_sym_unsafe] = ACTIONS(2896), + [anon_sym_use] = ACTIONS(2899), + [anon_sym_extern] = ACTIONS(2902), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2905), + [sym_super] = ACTIONS(2905), + [sym_crate] = ACTIONS(2908), + [sym_metavariable] = ACTIONS(2911), }, [STATE(748)] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [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(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(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(2914), [sym_identifier] = ACTIONS(2916), [anon_sym_SEMI] = ACTIONS(2914), @@ -92119,9 +92054,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2914), [sym_float_literal] = ACTIONS(2914), }, - [STATE(752)] = { - [sym_line_comment] = STATE(752), - [sym_block_comment] = STATE(752), + [STATE(749)] = { + [sym_line_comment] = STATE(749), + [sym_block_comment] = STATE(749), [ts_builtin_sym_end] = ACTIONS(2918), [sym_identifier] = ACTIONS(2920), [anon_sym_SEMI] = ACTIONS(2918), @@ -92200,9 +92135,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2918), [sym_float_literal] = ACTIONS(2918), }, - [STATE(753)] = { - [sym_line_comment] = STATE(753), - [sym_block_comment] = STATE(753), + [STATE(750)] = { + [sym_line_comment] = STATE(750), + [sym_block_comment] = STATE(750), [ts_builtin_sym_end] = ACTIONS(2922), [sym_identifier] = ACTIONS(2924), [anon_sym_SEMI] = ACTIONS(2922), @@ -92281,9 +92216,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2922), [sym_float_literal] = ACTIONS(2922), }, - [STATE(754)] = { - [sym_line_comment] = STATE(754), - [sym_block_comment] = STATE(754), + [STATE(751)] = { + [sym_line_comment] = STATE(751), + [sym_block_comment] = STATE(751), [ts_builtin_sym_end] = ACTIONS(2926), [sym_identifier] = ACTIONS(2928), [anon_sym_SEMI] = ACTIONS(2926), @@ -92362,9 +92297,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2926), [sym_float_literal] = ACTIONS(2926), }, - [STATE(755)] = { - [sym_line_comment] = STATE(755), - [sym_block_comment] = STATE(755), + [STATE(752)] = { + [sym_line_comment] = STATE(752), + [sym_block_comment] = STATE(752), [ts_builtin_sym_end] = ACTIONS(2930), [sym_identifier] = ACTIONS(2932), [anon_sym_SEMI] = ACTIONS(2930), @@ -92443,9 +92378,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2930), [sym_float_literal] = ACTIONS(2930), }, - [STATE(756)] = { - [sym_line_comment] = STATE(756), - [sym_block_comment] = STATE(756), + [STATE(753)] = { + [sym_line_comment] = STATE(753), + [sym_block_comment] = STATE(753), [ts_builtin_sym_end] = ACTIONS(2934), [sym_identifier] = ACTIONS(2936), [anon_sym_SEMI] = ACTIONS(2934), @@ -92524,9 +92459,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2934), [sym_float_literal] = ACTIONS(2934), }, - [STATE(757)] = { - [sym_line_comment] = STATE(757), - [sym_block_comment] = STATE(757), + [STATE(754)] = { + [sym_line_comment] = STATE(754), + [sym_block_comment] = STATE(754), [ts_builtin_sym_end] = ACTIONS(2938), [sym_identifier] = ACTIONS(2940), [anon_sym_SEMI] = ACTIONS(2938), @@ -92605,9 +92540,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2938), [sym_float_literal] = ACTIONS(2938), }, - [STATE(758)] = { - [sym_line_comment] = STATE(758), - [sym_block_comment] = STATE(758), + [STATE(755)] = { + [sym_line_comment] = STATE(755), + [sym_block_comment] = STATE(755), [ts_builtin_sym_end] = ACTIONS(2942), [sym_identifier] = ACTIONS(2944), [anon_sym_SEMI] = ACTIONS(2942), @@ -92686,9 +92621,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2942), [sym_float_literal] = ACTIONS(2942), }, - [STATE(759)] = { - [sym_line_comment] = STATE(759), - [sym_block_comment] = STATE(759), + [STATE(756)] = { + [sym_line_comment] = STATE(756), + [sym_block_comment] = STATE(756), [ts_builtin_sym_end] = ACTIONS(2946), [sym_identifier] = ACTIONS(2948), [anon_sym_SEMI] = ACTIONS(2946), @@ -92767,9 +92702,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2946), [sym_float_literal] = ACTIONS(2946), }, - [STATE(760)] = { - [sym_line_comment] = STATE(760), - [sym_block_comment] = STATE(760), + [STATE(757)] = { + [sym_line_comment] = STATE(757), + [sym_block_comment] = STATE(757), [ts_builtin_sym_end] = ACTIONS(2950), [sym_identifier] = ACTIONS(2952), [anon_sym_SEMI] = ACTIONS(2950), @@ -92848,9 +92783,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2950), [sym_float_literal] = ACTIONS(2950), }, - [STATE(761)] = { - [sym_line_comment] = STATE(761), - [sym_block_comment] = STATE(761), + [STATE(758)] = { + [sym_line_comment] = STATE(758), + [sym_block_comment] = STATE(758), [ts_builtin_sym_end] = ACTIONS(2954), [sym_identifier] = ACTIONS(2956), [anon_sym_SEMI] = ACTIONS(2954), @@ -92929,9 +92864,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2954), [sym_float_literal] = ACTIONS(2954), }, - [STATE(762)] = { - [sym_line_comment] = STATE(762), - [sym_block_comment] = STATE(762), + [STATE(759)] = { + [sym_line_comment] = STATE(759), + [sym_block_comment] = STATE(759), [ts_builtin_sym_end] = ACTIONS(2958), [sym_identifier] = ACTIONS(2960), [anon_sym_SEMI] = ACTIONS(2958), @@ -93010,9 +92945,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2958), [sym_float_literal] = ACTIONS(2958), }, - [STATE(763)] = { - [sym_line_comment] = STATE(763), - [sym_block_comment] = STATE(763), + [STATE(760)] = { + [sym_line_comment] = STATE(760), + [sym_block_comment] = STATE(760), [ts_builtin_sym_end] = ACTIONS(2962), [sym_identifier] = ACTIONS(2964), [anon_sym_SEMI] = ACTIONS(2962), @@ -93091,9 +93026,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2962), [sym_float_literal] = ACTIONS(2962), }, - [STATE(764)] = { - [sym_line_comment] = STATE(764), - [sym_block_comment] = STATE(764), + [STATE(761)] = { + [sym_line_comment] = STATE(761), + [sym_block_comment] = STATE(761), [ts_builtin_sym_end] = ACTIONS(2966), [sym_identifier] = ACTIONS(2968), [anon_sym_SEMI] = ACTIONS(2966), @@ -93172,9 +93107,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2966), [sym_float_literal] = ACTIONS(2966), }, - [STATE(765)] = { - [sym_line_comment] = STATE(765), - [sym_block_comment] = STATE(765), + [STATE(762)] = { + [sym_line_comment] = STATE(762), + [sym_block_comment] = STATE(762), [ts_builtin_sym_end] = ACTIONS(2970), [sym_identifier] = ACTIONS(2972), [anon_sym_SEMI] = ACTIONS(2970), @@ -93253,9 +93188,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2970), [sym_float_literal] = ACTIONS(2970), }, - [STATE(766)] = { - [sym_line_comment] = STATE(766), - [sym_block_comment] = STATE(766), + [STATE(763)] = { + [sym_line_comment] = STATE(763), + [sym_block_comment] = STATE(763), [ts_builtin_sym_end] = ACTIONS(2974), [sym_identifier] = ACTIONS(2976), [anon_sym_SEMI] = ACTIONS(2974), @@ -93334,9 +93269,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2974), [sym_float_literal] = ACTIONS(2974), }, - [STATE(767)] = { - [sym_line_comment] = STATE(767), - [sym_block_comment] = STATE(767), + [STATE(764)] = { + [sym_line_comment] = STATE(764), + [sym_block_comment] = STATE(764), [ts_builtin_sym_end] = ACTIONS(2978), [sym_identifier] = ACTIONS(2980), [anon_sym_SEMI] = ACTIONS(2978), @@ -93415,9 +93350,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2978), [sym_float_literal] = ACTIONS(2978), }, - [STATE(768)] = { - [sym_line_comment] = STATE(768), - [sym_block_comment] = STATE(768), + [STATE(765)] = { + [sym_line_comment] = STATE(765), + [sym_block_comment] = STATE(765), [ts_builtin_sym_end] = ACTIONS(2982), [sym_identifier] = ACTIONS(2984), [anon_sym_SEMI] = ACTIONS(2982), @@ -93496,9 +93431,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2982), [sym_float_literal] = ACTIONS(2982), }, - [STATE(769)] = { - [sym_line_comment] = STATE(769), - [sym_block_comment] = STATE(769), + [STATE(766)] = { + [sym_line_comment] = STATE(766), + [sym_block_comment] = STATE(766), [ts_builtin_sym_end] = ACTIONS(2986), [sym_identifier] = ACTIONS(2988), [anon_sym_SEMI] = ACTIONS(2986), @@ -93577,9 +93512,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2986), [sym_float_literal] = ACTIONS(2986), }, - [STATE(770)] = { - [sym_line_comment] = STATE(770), - [sym_block_comment] = STATE(770), + [STATE(767)] = { + [sym_line_comment] = STATE(767), + [sym_block_comment] = STATE(767), [ts_builtin_sym_end] = ACTIONS(2990), [sym_identifier] = ACTIONS(2992), [anon_sym_SEMI] = ACTIONS(2990), @@ -93658,9 +93593,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2990), [sym_float_literal] = ACTIONS(2990), }, - [STATE(771)] = { - [sym_line_comment] = STATE(771), - [sym_block_comment] = STATE(771), + [STATE(768)] = { + [sym_line_comment] = STATE(768), + [sym_block_comment] = STATE(768), [ts_builtin_sym_end] = ACTIONS(2994), [sym_identifier] = ACTIONS(2996), [anon_sym_SEMI] = ACTIONS(2994), @@ -93739,9 +93674,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2994), [sym_float_literal] = ACTIONS(2994), }, - [STATE(772)] = { - [sym_line_comment] = STATE(772), - [sym_block_comment] = STATE(772), + [STATE(769)] = { + [sym_line_comment] = STATE(769), + [sym_block_comment] = STATE(769), [ts_builtin_sym_end] = ACTIONS(2998), [sym_identifier] = ACTIONS(3000), [anon_sym_SEMI] = ACTIONS(2998), @@ -93820,9 +93755,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2998), [sym_float_literal] = ACTIONS(2998), }, - [STATE(773)] = { - [sym_line_comment] = STATE(773), - [sym_block_comment] = STATE(773), + [STATE(770)] = { + [sym_line_comment] = STATE(770), + [sym_block_comment] = STATE(770), [ts_builtin_sym_end] = ACTIONS(3002), [sym_identifier] = ACTIONS(3004), [anon_sym_SEMI] = ACTIONS(3002), @@ -93901,9 +93836,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3002), [sym_float_literal] = ACTIONS(3002), }, - [STATE(774)] = { - [sym_line_comment] = STATE(774), - [sym_block_comment] = STATE(774), + [STATE(771)] = { + [sym_line_comment] = STATE(771), + [sym_block_comment] = STATE(771), [ts_builtin_sym_end] = ACTIONS(3006), [sym_identifier] = ACTIONS(3008), [anon_sym_SEMI] = ACTIONS(3006), @@ -93982,9 +93917,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3006), [sym_float_literal] = ACTIONS(3006), }, - [STATE(775)] = { - [sym_line_comment] = STATE(775), - [sym_block_comment] = STATE(775), + [STATE(772)] = { + [sym_line_comment] = STATE(772), + [sym_block_comment] = STATE(772), [ts_builtin_sym_end] = ACTIONS(3010), [sym_identifier] = ACTIONS(3012), [anon_sym_SEMI] = ACTIONS(3010), @@ -94063,9 +93998,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3010), [sym_float_literal] = ACTIONS(3010), }, - [STATE(776)] = { - [sym_line_comment] = STATE(776), - [sym_block_comment] = STATE(776), + [STATE(773)] = { + [sym_line_comment] = STATE(773), + [sym_block_comment] = STATE(773), [ts_builtin_sym_end] = ACTIONS(3014), [sym_identifier] = ACTIONS(3016), [anon_sym_SEMI] = ACTIONS(3014), @@ -94144,9 +94079,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3014), [sym_float_literal] = ACTIONS(3014), }, - [STATE(777)] = { - [sym_line_comment] = STATE(777), - [sym_block_comment] = STATE(777), + [STATE(774)] = { + [sym_line_comment] = STATE(774), + [sym_block_comment] = STATE(774), [ts_builtin_sym_end] = ACTIONS(3018), [sym_identifier] = ACTIONS(3020), [anon_sym_SEMI] = ACTIONS(3018), @@ -94225,9 +94160,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3018), [sym_float_literal] = ACTIONS(3018), }, - [STATE(778)] = { - [sym_line_comment] = STATE(778), - [sym_block_comment] = STATE(778), + [STATE(775)] = { + [sym_line_comment] = STATE(775), + [sym_block_comment] = STATE(775), [ts_builtin_sym_end] = ACTIONS(3022), [sym_identifier] = ACTIONS(3024), [anon_sym_SEMI] = ACTIONS(3022), @@ -94306,9 +94241,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3022), [sym_float_literal] = ACTIONS(3022), }, - [STATE(779)] = { - [sym_line_comment] = STATE(779), - [sym_block_comment] = STATE(779), + [STATE(776)] = { + [sym_line_comment] = STATE(776), + [sym_block_comment] = STATE(776), [ts_builtin_sym_end] = ACTIONS(3026), [sym_identifier] = ACTIONS(3028), [anon_sym_SEMI] = ACTIONS(3026), @@ -94387,9 +94322,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3026), [sym_float_literal] = ACTIONS(3026), }, - [STATE(780)] = { - [sym_line_comment] = STATE(780), - [sym_block_comment] = STATE(780), + [STATE(777)] = { + [sym_line_comment] = STATE(777), + [sym_block_comment] = STATE(777), [ts_builtin_sym_end] = ACTIONS(3030), [sym_identifier] = ACTIONS(3032), [anon_sym_SEMI] = ACTIONS(3030), @@ -94468,9 +94403,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3030), [sym_float_literal] = ACTIONS(3030), }, - [STATE(781)] = { - [sym_line_comment] = STATE(781), - [sym_block_comment] = STATE(781), + [STATE(778)] = { + [sym_line_comment] = STATE(778), + [sym_block_comment] = STATE(778), [ts_builtin_sym_end] = ACTIONS(3034), [sym_identifier] = ACTIONS(3036), [anon_sym_SEMI] = ACTIONS(3034), @@ -94549,17988 +94484,20071 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3034), [sym_float_literal] = ACTIONS(3034), }, + [STATE(779)] = { + [sym_line_comment] = STATE(779), + [sym_block_comment] = STATE(779), + [ts_builtin_sym_end] = ACTIONS(3038), + [sym_identifier] = ACTIONS(3040), + [anon_sym_SEMI] = ACTIONS(3038), + [anon_sym_macro_rules_BANG] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_RBRACE] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_u8] = ACTIONS(3040), + [anon_sym_i8] = ACTIONS(3040), + [anon_sym_u16] = ACTIONS(3040), + [anon_sym_i16] = ACTIONS(3040), + [anon_sym_u32] = ACTIONS(3040), + [anon_sym_i32] = ACTIONS(3040), + [anon_sym_u64] = ACTIONS(3040), + [anon_sym_i64] = ACTIONS(3040), + [anon_sym_u128] = ACTIONS(3040), + [anon_sym_i128] = ACTIONS(3040), + [anon_sym_isize] = ACTIONS(3040), + [anon_sym_usize] = ACTIONS(3040), + [anon_sym_f32] = ACTIONS(3040), + [anon_sym_f64] = ACTIONS(3040), + [anon_sym_bool] = ACTIONS(3040), + [anon_sym_str] = ACTIONS(3040), + [anon_sym_char] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3038), + [anon_sym_BANG] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_DOT_DOT] = ACTIONS(3038), + [anon_sym_COLON_COLON] = ACTIONS(3038), + [anon_sym_POUND] = ACTIONS(3038), + [anon_sym_SQUOTE] = ACTIONS(3040), + [anon_sym_async] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_default] = ACTIONS(3040), + [anon_sym_enum] = ACTIONS(3040), + [anon_sym_fn] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_gen] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_impl] = ACTIONS(3040), + [anon_sym_let] = ACTIONS(3040), + [anon_sym_loop] = ACTIONS(3040), + [anon_sym_match] = ACTIONS(3040), + [anon_sym_mod] = ACTIONS(3040), + [anon_sym_pub] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_static] = ACTIONS(3040), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_trait] = ACTIONS(3040), + [anon_sym_type] = ACTIONS(3040), + [anon_sym_union] = ACTIONS(3040), + [anon_sym_unsafe] = ACTIONS(3040), + [anon_sym_use] = ACTIONS(3040), + [anon_sym_while] = ACTIONS(3040), + [anon_sym_extern] = ACTIONS(3040), + [anon_sym_yield] = ACTIONS(3040), + [anon_sym_move] = ACTIONS(3040), + [anon_sym_try] = ACTIONS(3040), + [sym_integer_literal] = ACTIONS(3038), + [aux_sym_string_literal_token1] = ACTIONS(3038), + [sym_char_literal] = ACTIONS(3038), + [anon_sym_true] = ACTIONS(3040), + [anon_sym_false] = ACTIONS(3040), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(3040), + [sym_crate] = ACTIONS(3040), + [sym_metavariable] = ACTIONS(3038), + [sym__raw_string_literal_start] = ACTIONS(3038), + [sym_float_literal] = ACTIONS(3038), + }, + [STATE(780)] = { + [sym_line_comment] = STATE(780), + [sym_block_comment] = STATE(780), + [ts_builtin_sym_end] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3042), + [anon_sym_macro_rules_BANG] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3042), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_STAR] = ACTIONS(3042), + [anon_sym_u8] = ACTIONS(3044), + [anon_sym_i8] = ACTIONS(3044), + [anon_sym_u16] = ACTIONS(3044), + [anon_sym_i16] = ACTIONS(3044), + [anon_sym_u32] = ACTIONS(3044), + [anon_sym_i32] = ACTIONS(3044), + [anon_sym_u64] = ACTIONS(3044), + [anon_sym_i64] = ACTIONS(3044), + [anon_sym_u128] = ACTIONS(3044), + [anon_sym_i128] = ACTIONS(3044), + [anon_sym_isize] = ACTIONS(3044), + [anon_sym_usize] = ACTIONS(3044), + [anon_sym_f32] = ACTIONS(3044), + [anon_sym_f64] = ACTIONS(3044), + [anon_sym_bool] = ACTIONS(3044), + [anon_sym_str] = ACTIONS(3044), + [anon_sym_char] = ACTIONS(3044), + [anon_sym_DASH] = ACTIONS(3042), + [anon_sym_BANG] = ACTIONS(3042), + [anon_sym_AMP] = ACTIONS(3042), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(3042), + [anon_sym_DOT_DOT] = ACTIONS(3042), + [anon_sym_COLON_COLON] = ACTIONS(3042), + [anon_sym_POUND] = ACTIONS(3042), + [anon_sym_SQUOTE] = ACTIONS(3044), + [anon_sym_async] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_default] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_gen] = ACTIONS(3044), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_impl] = ACTIONS(3044), + [anon_sym_let] = ACTIONS(3044), + [anon_sym_loop] = ACTIONS(3044), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_mod] = ACTIONS(3044), + [anon_sym_pub] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_static] = ACTIONS(3044), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_trait] = ACTIONS(3044), + [anon_sym_type] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_use] = ACTIONS(3044), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_extern] = ACTIONS(3044), + [anon_sym_yield] = ACTIONS(3044), + [anon_sym_move] = ACTIONS(3044), + [anon_sym_try] = ACTIONS(3044), + [sym_integer_literal] = ACTIONS(3042), + [aux_sym_string_literal_token1] = ACTIONS(3042), + [sym_char_literal] = ACTIONS(3042), + [anon_sym_true] = ACTIONS(3044), + [anon_sym_false] = ACTIONS(3044), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3044), + [sym_super] = ACTIONS(3044), + [sym_crate] = ACTIONS(3044), + [sym_metavariable] = ACTIONS(3042), + [sym__raw_string_literal_start] = ACTIONS(3042), + [sym_float_literal] = ACTIONS(3042), + }, + [STATE(781)] = { + [sym_line_comment] = STATE(781), + [sym_block_comment] = STATE(781), + [ts_builtin_sym_end] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_macro_rules_BANG] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_u8] = ACTIONS(3048), + [anon_sym_i8] = ACTIONS(3048), + [anon_sym_u16] = ACTIONS(3048), + [anon_sym_i16] = ACTIONS(3048), + [anon_sym_u32] = ACTIONS(3048), + [anon_sym_i32] = ACTIONS(3048), + [anon_sym_u64] = ACTIONS(3048), + [anon_sym_i64] = ACTIONS(3048), + [anon_sym_u128] = ACTIONS(3048), + [anon_sym_i128] = ACTIONS(3048), + [anon_sym_isize] = ACTIONS(3048), + [anon_sym_usize] = ACTIONS(3048), + [anon_sym_f32] = ACTIONS(3048), + [anon_sym_f64] = ACTIONS(3048), + [anon_sym_bool] = ACTIONS(3048), + [anon_sym_str] = ACTIONS(3048), + [anon_sym_char] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3046), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_AMP] = ACTIONS(3046), + [anon_sym_PIPE] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3046), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_POUND] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3048), + [anon_sym_async] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + [anon_sym_fn] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_gen] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_impl] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_loop] = ACTIONS(3048), + [anon_sym_match] = ACTIONS(3048), + [anon_sym_mod] = ACTIONS(3048), + [anon_sym_pub] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_struct] = ACTIONS(3048), + [anon_sym_trait] = ACTIONS(3048), + [anon_sym_type] = ACTIONS(3048), + [anon_sym_union] = ACTIONS(3048), + [anon_sym_unsafe] = ACTIONS(3048), + [anon_sym_use] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_extern] = ACTIONS(3048), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_move] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [sym_integer_literal] = ACTIONS(3046), + [aux_sym_string_literal_token1] = ACTIONS(3046), + [sym_char_literal] = ACTIONS(3046), + [anon_sym_true] = ACTIONS(3048), + [anon_sym_false] = ACTIONS(3048), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3048), + [sym_super] = ACTIONS(3048), + [sym_crate] = ACTIONS(3048), + [sym_metavariable] = ACTIONS(3046), + [sym__raw_string_literal_start] = ACTIONS(3046), + [sym_float_literal] = ACTIONS(3046), + }, [STATE(782)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym_closure_expression] = STATE(3252), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(3040), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1115), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym_visibility_modifier] = STATE(934), + [sym__type] = STATE(2591), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [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), + [aux_sym_enum_variant_list_repeat1] = STATE(794), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = 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), + [anon_sym_COMMA] = ACTIONS(3056), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(3064), + [sym_metavariable] = ACTIONS(1633), }, [STATE(783)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2624), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1115), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_const_parameter] = STATE(3034), + [sym_type_parameter] = STATE(3034), + [sym_lifetime_parameter] = STATE(3034), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3022), + [sym_bracketed_type] = STATE(3712), + [sym_qualified_type] = STATE(3744), + [sym_lifetime] = STATE(2505), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [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), + [aux_sym_enum_variant_list_repeat1] = STATE(2117), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3066), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(3070), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(3072), }, [STATE(784)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_const_parameter] = STATE(2872), - [sym_type_parameter] = STATE(2872), - [sym_lifetime_parameter] = STATE(2872), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2954), - [sym_bracketed_type] = STATE(3449), - [sym_qualified_type] = STATE(3737), - [sym_lifetime] = STATE(2555), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym_closure_expression] = STATE(3258), + [sym_closure_parameters] = STATE(245), + [sym__pattern] = STATE(3040), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [aux_sym_enum_variant_list_repeat1] = STATE(2120), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_static] = ACTIONS(1409), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [anon_sym_move] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(785)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(938), - [sym__type] = STATE(2750), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_attribute_item] = STATE(1115), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym_visibility_modifier] = STATE(927), + [sym__type] = STATE(3053), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [aux_sym_enum_variant_list_repeat1] = STATE(831), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(3064), + [sym_metavariable] = ACTIONS(1633), }, [STATE(786)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2621), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1115), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym_visibility_modifier] = STATE(927), + [sym__type] = STATE(3053), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [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), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3076), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(3064), + [sym_metavariable] = ACTIONS(1633), }, [STATE(787)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2787), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1115), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym_visibility_modifier] = STATE(927), + [sym__type] = STATE(3053), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [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(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), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(3064), + [sym_metavariable] = ACTIONS(1633), }, [STATE(788)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2724), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1115), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym_visibility_modifier] = STATE(927), + [sym__type] = STATE(3053), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(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), - [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(3070), - [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), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3080), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(3064), + [sym_metavariable] = ACTIONS(1633), }, [STATE(789)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2730), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1115), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym_visibility_modifier] = STATE(927), + [sym__type] = STATE(3053), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(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_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(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(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), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(3064), + [sym_metavariable] = ACTIONS(1633), }, [STATE(790)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2795), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1115), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym_visibility_modifier] = STATE(927), + [sym__type] = STATE(3053), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(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_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(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(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), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3084), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(3064), + [sym_metavariable] = ACTIONS(1633), }, [STATE(791)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1115), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym_visibility_modifier] = STATE(927), + [sym__type] = STATE(3053), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [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), - [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), + [aux_sym_enum_variant_list_repeat1] = STATE(797), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(3064), + [sym_metavariable] = ACTIONS(1633), }, [STATE(792)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2697), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3082), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(3088), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(793)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3084), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(3092), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(794)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_attribute_item] = STATE(1115), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym_visibility_modifier] = STATE(1025), + [sym__type] = STATE(2786), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3086), - [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), + [aux_sym_enum_variant_list_repeat1] = STATE(1079), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(3064), + [sym_metavariable] = ACTIONS(1633), }, [STATE(795)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2708), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [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), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_RBRACK] = ACTIONS(1547), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1553), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(796)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2642), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [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), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(797)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_attribute_item] = STATE(1115), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym_visibility_modifier] = STATE(1036), + [sym__type] = STATE(3101), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_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), - [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), + [aux_sym_enum_variant_list_repeat1] = STATE(1079), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_POUND] = ACTIONS(3058), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_pub] = ACTIONS(3062), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(3064), + [sym_metavariable] = ACTIONS(1633), }, [STATE(798)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2648), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(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__] = 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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(799)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2625), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_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__] = 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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_RBRACK] = ACTIONS(3102), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(800)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2769), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_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_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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(801)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2769), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3100), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(802)] = { - [sym_parameter] = STATE(2974), - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2490), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2769), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_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__] = 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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_RBRACK] = ACTIONS(3110), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(803)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2719), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2769), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [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(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(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(3110), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(804)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2798), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3116), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(805)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2769), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(3114), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(806)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2769), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_RBRACK] = ACTIONS(3120), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(807)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2769), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_RBRACK] = ACTIONS(3122), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(808)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_parameter] = STATE(3181), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2928), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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_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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(809)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2769), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(810)] = { - [sym_parameter] = STATE(2974), - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2681), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_parameter] = STATE(3066), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2647), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [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__] = 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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(811)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2769), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3124), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(812)] = { - [sym_parameter] = STATE(3192), - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2930), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_parameter] = STATE(3066), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2504), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_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(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(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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(813)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2971), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2769), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(814)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2802), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2769), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_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_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(3126), - [sym_super] = ACTIONS(1796), - [sym_crate] = ACTIONS(1796), - [sym_metavariable] = ACTIONS(1798), - [sym__raw_string_literal_start] = ACTIONS(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_RBRACK] = ACTIONS(3136), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(815)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2500), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2769), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [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(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(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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_RPAREN] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(816)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(3025), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2512), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_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__] = 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_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(817)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3071), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2559), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(3140), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(818)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2908), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2173), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(3142), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(819)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3389), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3182), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(820)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2161), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2171), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [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(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(821)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2183), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), - [sym_line_comment] = STATE(821), - [sym_block_comment] = STATE(821), - [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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), + }, + [STATE(821)] = { + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2838), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), + [sym_line_comment] = STATE(821), + [sym_block_comment] = STATE(821), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3144), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(822)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(929), - [sym__type] = STATE(2869), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2184), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [aux_sym_enum_variant_list_repeat1] = STATE(1074), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(823)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2152), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3260), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [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(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(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(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(824)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2905), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2180), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_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(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(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_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(825)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2153), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2167), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(826)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2926), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3319), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [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_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(827)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2148), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2769), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(828)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2151), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3138), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(829)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2907), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3108), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_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(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_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(830)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(2953), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2972), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [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_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(831)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(891), - [sym__type] = STATE(2667), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2191), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [aux_sym_enum_variant_list_repeat1] = STATE(1074), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(832)] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym_visibility_modifier] = STATE(906), - [sym__type] = STATE(2871), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2923), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [aux_sym_enum_variant_list_repeat1] = STATE(822), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(833)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3179), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3444), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(834)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2486), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2509), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [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(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(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(1299), - [sym_float_literal] = ACTIONS(1287), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(3146), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(835)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3401), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(2944), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(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(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), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(3148), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(836)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2512), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3317), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(837)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2535), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2517), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(838)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3193), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(2955), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_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(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), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(839)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(3014), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(2946), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [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_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(840)] = { - [sym_bracketed_type] = STATE(3648), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3370), - [sym_macro_invocation] = STATE(3108), - [sym_scoped_identifier] = STATE(2218), - [sym_scoped_type_identifier] = STATE(3059), - [sym_const_block] = STATE(3108), - [sym__pattern] = STATE(3019), - [sym_generic_pattern] = STATE(3108), - [sym_tuple_pattern] = STATE(3108), - [sym_slice_pattern] = STATE(3108), - [sym_tuple_struct_pattern] = STATE(3108), - [sym_struct_pattern] = STATE(3108), - [sym_remaining_field_pattern] = STATE(3108), - [sym_mut_pattern] = STATE(3108), - [sym_range_pattern] = STATE(3108), - [sym_ref_pattern] = STATE(3108), - [sym_captured_pattern] = STATE(3108), - [sym_reference_pattern] = STATE(3108), - [sym_or_pattern] = STATE(3108), - [sym__literal_pattern] = STATE(2401), - [sym_negative_literal] = STATE(2389), - [sym_string_literal] = STATE(2389), - [sym_raw_string_literal] = STATE(2389), - [sym_boolean_literal] = STATE(2389), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(2990), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_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), - [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_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(841)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2649), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3089), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [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(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), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(842)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3393), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3657), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3380), + [sym_macro_invocation] = STATE(3065), + [sym_scoped_identifier] = STATE(2239), + [sym_scoped_type_identifier] = STATE(3064), + [sym_const_block] = STATE(3065), + [sym__pattern] = STATE(3094), + [sym_generic_pattern] = STATE(3065), + [sym_tuple_pattern] = STATE(3065), + [sym_slice_pattern] = STATE(3065), + [sym_tuple_struct_pattern] = STATE(3065), + [sym_struct_pattern] = STATE(3065), + [sym_remaining_field_pattern] = STATE(3065), + [sym_mut_pattern] = STATE(3065), + [sym_range_pattern] = STATE(3065), + [sym_ref_pattern] = STATE(3065), + [sym_captured_pattern] = STATE(3065), + [sym_reference_pattern] = STATE(3065), + [sym_or_pattern] = STATE(3065), + [sym__literal_pattern] = STATE(2394), + [sym_negative_literal] = STATE(2465), + [sym_string_literal] = STATE(2465), + [sym_raw_string_literal] = STATE(2465), + [sym_boolean_literal] = STATE(2465), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [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(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), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_u8] = ACTIONS(1665), + [anon_sym_i8] = ACTIONS(1665), + [anon_sym_u16] = ACTIONS(1665), + [anon_sym_i16] = ACTIONS(1665), + [anon_sym_u32] = ACTIONS(1665), + [anon_sym_i32] = ACTIONS(1665), + [anon_sym_u64] = ACTIONS(1665), + [anon_sym_i64] = ACTIONS(1665), + [anon_sym_u128] = ACTIONS(1665), + [anon_sym_i128] = ACTIONS(1665), + [anon_sym_isize] = ACTIONS(1665), + [anon_sym_usize] = ACTIONS(1665), + [anon_sym_f32] = ACTIONS(1665), + [anon_sym_f64] = ACTIONS(1665), + [anon_sym_bool] = ACTIONS(1665), + [anon_sym_str] = ACTIONS(1665), + [anon_sym_char] = ACTIONS(1665), + [anon_sym_DASH] = ACTIONS(1667), + [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_PIPE] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1673), + [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1677), + [anon_sym_COLON_COLON] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(1683), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_gen] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1687), + [sym_mutable_specifier] = ACTIONS(1689), + [sym_integer_literal] = ACTIONS(1691), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1691), + [anon_sym_true] = ACTIONS(1695), + [anon_sym_false] = ACTIONS(1695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1701), + [sym_float_literal] = ACTIONS(1691), }, [STATE(843)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3408), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3413), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(844)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3412), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3436), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(845)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3413), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(846)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3414), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3442), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(847)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(3415), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(3443), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(848)] = { - [sym_bracketed_type] = STATE(3448), - [sym_generic_type] = STATE(3450), - [sym_generic_type_with_turbofish] = STATE(3159), - [sym_macro_invocation] = STATE(2150), - [sym_scoped_identifier] = STATE(2016), - [sym_scoped_type_identifier] = STATE(2988), - [sym_const_block] = STATE(2150), - [sym__pattern] = STATE(2145), - [sym_generic_pattern] = STATE(2150), - [sym_tuple_pattern] = STATE(2150), - [sym_slice_pattern] = STATE(2150), - [sym_tuple_struct_pattern] = STATE(2150), - [sym_struct_pattern] = STATE(2150), - [sym_remaining_field_pattern] = STATE(2150), - [sym_mut_pattern] = STATE(2150), - [sym_range_pattern] = STATE(2150), - [sym_ref_pattern] = STATE(2150), - [sym_captured_pattern] = STATE(2150), - [sym_reference_pattern] = STATE(2150), - [sym_or_pattern] = STATE(2150), - [sym__literal_pattern] = STATE(2076), - [sym_negative_literal] = STATE(2074), - [sym_string_literal] = STATE(2074), - [sym_raw_string_literal] = STATE(2074), - [sym_boolean_literal] = STATE(2074), + [sym_bracketed_type] = STATE(3757), + [sym_generic_type] = STATE(3513), + [sym_generic_type_with_turbofish] = STATE(3368), + [sym_macro_invocation] = STATE(2170), + [sym_scoped_identifier] = STATE(2032), + [sym_scoped_type_identifier] = STATE(3123), + [sym_const_block] = STATE(2170), + [sym__pattern] = STATE(2178), + [sym_generic_pattern] = STATE(2170), + [sym_tuple_pattern] = STATE(2170), + [sym_slice_pattern] = STATE(2170), + [sym_tuple_struct_pattern] = STATE(2170), + [sym_struct_pattern] = STATE(2170), + [sym_remaining_field_pattern] = STATE(2170), + [sym_mut_pattern] = STATE(2170), + [sym_range_pattern] = STATE(2170), + [sym_ref_pattern] = STATE(2170), + [sym_captured_pattern] = STATE(2170), + [sym_reference_pattern] = STATE(2170), + [sym_or_pattern] = STATE(2170), + [sym__literal_pattern] = STATE(2087), + [sym_negative_literal] = STATE(2096), + [sym_string_literal] = STATE(2096), + [sym_raw_string_literal] = STATE(2096), + [sym_boolean_literal] = STATE(2096), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [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(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), + [sym_identifier] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1209), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1802), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_gen] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_ref] = ACTIONS(1251), + [sym_mutable_specifier] = ACTIONS(1411), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1261), + [anon_sym_false] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1808), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1257), }, [STATE(849)] = { - [sym_function_modifiers] = STATE(3477), - [sym_higher_ranked_trait_bound] = STATE(2264), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2288), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2291), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1421), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(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(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [sym_mutable_specifier] = ACTIONS(3180), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), }, [STATE(850)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3162), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3402), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(3142), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_mutable_specifier] = ACTIONS(3190), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(851)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1762), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1806), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [sym_mutable_specifier] = ACTIONS(3222), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(852)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2028), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2053), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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_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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_mutable_specifier] = ACTIONS(3228), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(853)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(3232), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3234), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(854)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1457), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(3214), - [sym_super] = ACTIONS(3214), - [sym_crate] = ACTIONS(3214), - [sym_metavariable] = ACTIONS(3216), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(3236), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(855)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_type_parameters] = STATE(959), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2445), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2439), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2251), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(3218), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3220), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(856)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2028), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2053), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_use_bounds] = STATE(2054), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3070), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(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(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(857)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1427), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_type_parameters] = STATE(1042), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2402), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2425), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2262), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(858)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2056), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(853), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2669), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), - [sym_mutable_specifier] = ACTIONS(3224), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(859)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2664), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2628), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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_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(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(860)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2790), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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_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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(861)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_higher_ranked_trait_bound] = STATE(2313), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2287), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2287), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3230), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(862)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2817), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_type_parameters] = STATE(975), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2453), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2450), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2254), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3232), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(863)] = { - [sym_function_modifiers] = STATE(3477), - [sym_higher_ranked_trait_bound] = STATE(2264), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2265), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2270), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2053), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(852), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(3136), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_mutable_specifier] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(864)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_type_parameters] = STATE(968), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2427), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2430), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2222), + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1476), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(849), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [sym_mutable_specifier] = ACTIONS(3262), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), }, [STATE(865)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_type_parameters] = STATE(951), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2452), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2442), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2238), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2722), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3240), - [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(3242), - [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(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(866)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_type_parameters] = STATE(941), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2431), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2448), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2236), [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3244), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(867)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_type_parameters] = STATE(890), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2380), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2392), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2232), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3070), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3246), - [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(3248), - [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(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(868)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2632), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2777), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3250), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3272), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(869)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_type_parameters] = STATE(967), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2423), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2449), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2241), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3070), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3252), - [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(3254), - [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(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(870)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2706), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2722), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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_DOT_DOT_DOT] = ACTIONS(3256), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(871)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_higher_ranked_trait_bound] = STATE(2240), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2242), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2242), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3258), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(872)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2816), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3070), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3260), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3276), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(873)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3135), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(850), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3070), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), - [sym_mutable_specifier] = ACTIONS(3262), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(874)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_higher_ranked_trait_bound] = STATE(2313), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2276), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2276), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(2054), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3264), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(875)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2954), - [sym_bracketed_type] = STATE(3449), - [sym_qualified_type] = STATE(3737), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2053), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(854), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(3280), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(876)] = { - [sym_function_modifiers] = STATE(3477), - [sym_higher_ranked_trait_bound] = STATE(2264), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2288), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2270), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2628), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(3136), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(877)] = { - [sym_function_modifiers] = STATE(3477), - [sym_higher_ranked_trait_bound] = STATE(2226), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2227), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(2228), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3022), + [sym_bracketed_type] = STATE(3712), + [sym_qualified_type] = STATE(3744), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(3136), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(878)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3345), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(850), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3052), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3266), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [sym_mutable_specifier] = ACTIONS(3284), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(879)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1740), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(851), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3070), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(880)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2706), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1786), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(851), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [sym_mutable_specifier] = ACTIONS(3288), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(881)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3073), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2428), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(882)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3398), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3434), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(883)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3118), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1459), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3696), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1459), + [sym_tuple_type] = STATE(1459), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(1194), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1459), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3386), + [sym_scoped_type_identifier] = STATE(1087), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3294), + [anon_sym_i8] = ACTIONS(3294), + [anon_sym_u16] = ACTIONS(3294), + [anon_sym_i16] = ACTIONS(3294), + [anon_sym_u32] = ACTIONS(3294), + [anon_sym_i32] = ACTIONS(3294), + [anon_sym_u64] = ACTIONS(3294), + [anon_sym_i64] = ACTIONS(3294), + [anon_sym_u128] = ACTIONS(3294), + [anon_sym_i128] = ACTIONS(3294), + [anon_sym_isize] = ACTIONS(3294), + [anon_sym_usize] = ACTIONS(3294), + [anon_sym_f32] = ACTIONS(3294), + [anon_sym_f64] = ACTIONS(3294), + [anon_sym_bool] = ACTIONS(3294), + [anon_sym_str] = ACTIONS(3294), + [anon_sym_char] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3296), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3298), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(3298), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3300), }, [STATE(884)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2060), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3376), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(885)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2664), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2062), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(886)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2648), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2421), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(887)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2042), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2063), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(888)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1426), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(1426), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(1426), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(3304), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), }, [STATE(889)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2029), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2066), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(890)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2394), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2398), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2201), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2841), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3270), - [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(3272), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(891)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2814), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1465), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), }, [STATE(892)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2411), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3303), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(893)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2784), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2652), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(894)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2685), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(895)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3030), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2068), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(896)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2525), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2269), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(897)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2045), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2622), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(898)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2050), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2401), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(899)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2051), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1427), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), }, [STATE(900)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2428), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2472), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(901)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2052), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2487), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(902)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2410), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2406), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(903)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2364), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2375), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(904)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2889), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(905)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1806), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2790), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(906)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2869), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1714), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(907)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2816), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1717), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3548), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1717), + [sym_tuple_type] = STATE(1717), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(1666), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1717), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3404), + [sym_scoped_type_identifier] = STATE(1600), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3310), + [anon_sym_i8] = ACTIONS(3310), + [anon_sym_u16] = ACTIONS(3310), + [anon_sym_i16] = ACTIONS(3310), + [anon_sym_u32] = ACTIONS(3310), + [anon_sym_i32] = ACTIONS(3310), + [anon_sym_u64] = ACTIONS(3310), + [anon_sym_i64] = ACTIONS(3310), + [anon_sym_u128] = ACTIONS(3310), + [anon_sym_i128] = ACTIONS(3310), + [anon_sym_isize] = ACTIONS(3310), + [anon_sym_usize] = ACTIONS(3310), + [anon_sym_f32] = ACTIONS(3310), + [anon_sym_f64] = ACTIONS(3310), + [anon_sym_bool] = ACTIONS(3310), + [anon_sym_str] = ACTIONS(3310), + [anon_sym_char] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_gen] = ACTIONS(3316), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3318), }, [STATE(908)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2369), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2046), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(909)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1420), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2409), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(910)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2886), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2282), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(911)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1422), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2047), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(912)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1423), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2396), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(913)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2376), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2054), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2054), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(2054), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3068), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(914)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2058), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1753), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3548), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1753), + [sym_tuple_type] = STATE(1753), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(1660), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1753), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3404), + [sym_scoped_type_identifier] = STATE(1597), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3310), + [anon_sym_i8] = ACTIONS(3310), + [anon_sym_u16] = ACTIONS(3310), + [anon_sym_i16] = ACTIONS(3310), + [anon_sym_u32] = ACTIONS(3310), + [anon_sym_i32] = ACTIONS(3310), + [anon_sym_u64] = ACTIONS(3310), + [anon_sym_i64] = ACTIONS(3310), + [anon_sym_u128] = ACTIONS(3310), + [anon_sym_i128] = ACTIONS(3310), + [anon_sym_isize] = ACTIONS(3310), + [anon_sym_usize] = ACTIONS(3310), + [anon_sym_f32] = ACTIONS(3310), + [anon_sym_f64] = ACTIONS(3310), + [anon_sym_bool] = ACTIONS(3310), + [anon_sym_str] = ACTIONS(3310), + [anon_sym_char] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3316), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(3316), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3318), }, [STATE(915)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1426), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2695), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(916)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1484), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2281), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(917)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2400), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2413), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(918)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2424), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2414), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(919)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1761), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1456), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), }, [STATE(920)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1762), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3121), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(921)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2244), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2432), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(922)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1903), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1805), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(923)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1851), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1806), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(924)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2263), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1475), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), }, [STATE(925)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2433), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2437), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(926)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2434), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1745), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(1745), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(1745), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(3324), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(927)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3110), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3101), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(928)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2381), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2070), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(929)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2992), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2840), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(930)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2393), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1481), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3696), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1481), + [sym_tuple_type] = STATE(1481), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(1129), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1481), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3386), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3294), + [anon_sym_i8] = ACTIONS(3294), + [anon_sym_u16] = ACTIONS(3294), + [anon_sym_i16] = ACTIONS(3294), + [anon_sym_u32] = ACTIONS(3294), + [anon_sym_i32] = ACTIONS(3294), + [anon_sym_u64] = ACTIONS(3294), + [anon_sym_i64] = ACTIONS(3294), + [anon_sym_u128] = ACTIONS(3294), + [anon_sym_i128] = ACTIONS(3294), + [anon_sym_isize] = ACTIONS(3294), + [anon_sym_usize] = ACTIONS(3294), + [anon_sym_f32] = ACTIONS(3294), + [anon_sym_f64] = ACTIONS(3294), + [anon_sym_bool] = ACTIONS(3294), + [anon_sym_str] = ACTIONS(3294), + [anon_sym_char] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3296), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_gen] = ACTIONS(3298), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(3298), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3300), }, [STATE(931)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2631), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2660), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(932)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2702), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3036), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(933)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2251), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2514), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(934)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1768), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2786), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(935)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1698), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(936)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3080), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1751), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(937)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2460), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1812), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(938)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2667), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1758), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(939)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2299), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1761), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(940)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1769), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3118), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(941)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1704), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2385), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2388), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2226), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(942)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1706), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1769), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(943)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2258), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1770), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(944)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1451), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2671), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(945)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3158), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1771), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(946)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3162), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2831), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(947)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1485), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2669), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(948)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1713), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3070), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(949)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1715), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1775), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(950)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3235), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2961), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(951)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2402), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2446), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2240), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2062), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3274), - [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(3276), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3334), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(952)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2632), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2693), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(953)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1497), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3602), + [sym_removed_trait_bound] = STATE(1704), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1752), + [sym_bracketed_type] = STATE(3663), + [sym_lifetime] = STATE(3548), + [sym_array_type] = STATE(1704), + [sym_for_lifetimes] = STATE(1638), + [sym_function_type] = STATE(1704), + [sym_tuple_type] = STATE(1704), + [sym_unit_type] = STATE(1704), + [sym_generic_type] = STATE(1679), + [sym_generic_type_with_turbofish] = STATE(3654), + [sym_bounded_type] = STATE(1704), + [sym_use_bounds] = STATE(3548), + [sym_reference_type] = STATE(1704), + [sym_pointer_type] = STATE(1704), + [sym_never_type] = STATE(1704), + [sym_abstract_type] = STATE(1704), + [sym_dynamic_type] = STATE(1704), + [sym_macro_invocation] = STATE(1704), + [sym_scoped_identifier] = STATE(3400), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_u8] = ACTIONS(3204), + [anon_sym_i8] = ACTIONS(3204), + [anon_sym_u16] = ACTIONS(3204), + [anon_sym_i16] = ACTIONS(3204), + [anon_sym_u32] = ACTIONS(3204), + [anon_sym_i32] = ACTIONS(3204), + [anon_sym_u64] = ACTIONS(3204), + [anon_sym_i64] = ACTIONS(3204), + [anon_sym_u128] = ACTIONS(3204), + [anon_sym_i128] = ACTIONS(3204), + [anon_sym_isize] = ACTIONS(3204), + [anon_sym_usize] = ACTIONS(3204), + [anon_sym_f32] = ACTIONS(3204), + [anon_sym_f64] = ACTIONS(3204), + [anon_sym_bool] = ACTIONS(3204), + [anon_sym_str] = ACTIONS(3204), + [anon_sym_char] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3216), + [anon_sym_impl] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3216), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3220), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_crate] = ACTIONS(3224), + [sym_metavariable] = ACTIONS(3226), }, [STATE(954)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1717), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1458), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), }, [STATE(955)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2519), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2824), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(956)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1487), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1504), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), }, [STATE(957)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2729), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3043), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(958)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2846), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1505), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), }, [STATE(959)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2944), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2377), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2447), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2253), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(960)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2379), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3401), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(961)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2382), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3402), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(962)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2749), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2519), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(963)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2731), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3087), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(964)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2857), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2058), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(965)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2540), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(966)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2753), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2054), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(2054), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(2054), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(967)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2358), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2451), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2242), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2865), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3278), - [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(3280), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(968)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2362), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2390), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(2200), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2419), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [sym_identifier] = ACTIONS(3282), - [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(3284), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(969)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2673), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2420), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(970)] = { - [sym_function_modifiers] = STATE(3595), - [sym_removed_trait_bound] = STATE(1787), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1722), - [sym_bracketed_type] = STATE(3654), - [sym_lifetime] = STATE(3732), - [sym_array_type] = STATE(1787), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1787), - [sym_tuple_type] = STATE(1787), - [sym_unit_type] = STATE(1787), - [sym_generic_type] = STATE(1646), - [sym_generic_type_with_turbofish] = STATE(3645), - [sym_bounded_type] = STATE(1787), - [sym_reference_type] = STATE(1787), - [sym_pointer_type] = STATE(1787), - [sym_never_type] = STATE(1787), - [sym_abstract_type] = STATE(1787), - [sym_dynamic_type] = STATE(1787), - [sym_macro_invocation] = STATE(1787), - [sym_scoped_identifier] = STATE(3373), - [sym_scoped_type_identifier] = STATE(1590), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(971)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2817), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2991), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(972)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3076), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2877), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(973)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2254), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2523), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(974)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2435), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2656), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(975)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2436), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2422), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2456), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2256), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(976)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2440), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3119), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(977)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2441), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2058), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(978)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2711), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2499), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(979)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2640), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(980)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2906), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2062), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(981)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2458), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1507), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), }, [STATE(982)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2063), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(983)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2585), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2064), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3734), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2064), + [sym_tuple_type] = STATE(2064), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2019), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2064), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2009), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(984)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2916), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2066), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(985)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2746), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(986)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2892), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2068), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(987)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2269), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2284), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(988)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2361), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2410), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(989)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2363), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2411), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(990)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2396), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2416), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(991)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2939), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2417), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(992)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2569), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2670), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(993)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2412), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(994)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2414), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2434), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(995)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2418), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2918), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(996)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2360), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2529), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(997)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2283), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2672), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(998)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2589), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2673), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(999)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2591), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2925), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1000)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2255), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2675), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1001)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2384), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2046), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1002)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2377), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2047), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1003)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2386), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2070), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1004)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2293), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2436), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1004), [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1005)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2036), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2314), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1005), [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1006)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2959), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2461), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1006), [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1007)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2693), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2466), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1007), [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1008)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2294), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2056), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3473), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2056), + [sym_tuple_type] = STATE(2056), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2026), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2056), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2229), [sym_line_comment] = STATE(1008), [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1009)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2043), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2945), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1009), [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1010)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2297), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2036), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2216), [sym_line_comment] = STATE(1010), [sym_block_comment] = STATE(1010), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(1611), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1627), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1011)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2062), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2683), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1011), [sym_block_comment] = STATE(1011), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1012)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2835), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2471), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1012), [sym_block_comment] = STATE(1012), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1013)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2983), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2473), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1013), [sym_block_comment] = STATE(1013), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1014)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2705), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2427), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1014), [sym_block_comment] = STATE(1014), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1015)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2744), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2376), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1015), [sym_block_comment] = STATE(1015), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1016)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2690), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1016), [sym_block_comment] = STATE(1016), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1017)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1527), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2687), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1017), [sym_block_comment] = STATE(1017), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1018)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2513), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2688), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1018), [sym_block_comment] = STATE(1018), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1019)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2042), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2036), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1019), [sym_block_comment] = STATE(1019), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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(3286), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1020)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1460), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2973), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1020), [sym_block_comment] = STATE(1020), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1021)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1456), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2307), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1021), [sym_block_comment] = STATE(1021), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1022)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1457), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2399), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1022), [sym_block_comment] = STATE(1022), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1023)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3381), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1023), [sym_block_comment] = STATE(1023), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1024)] = { - [sym_function_modifiers] = STATE(3455), - [sym_removed_trait_bound] = STATE(1526), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(1490), - [sym_bracketed_type] = STATE(3638), - [sym_lifetime] = STATE(3517), - [sym_array_type] = STATE(1526), - [sym_for_lifetimes] = STATE(1623), - [sym_function_type] = STATE(1526), - [sym_tuple_type] = STATE(1526), - [sym_unit_type] = STATE(1526), - [sym_generic_type] = STATE(1102), - [sym_generic_type_with_turbofish] = STATE(3627), - [sym_bounded_type] = STATE(1526), - [sym_reference_type] = STATE(1526), - [sym_pointer_type] = STATE(1526), - [sym_never_type] = STATE(1526), - [sym_abstract_type] = STATE(1526), - [sym_dynamic_type] = STATE(1526), - [sym_macro_invocation] = STATE(1526), - [sym_scoped_identifier] = STATE(3304), - [sym_scoped_type_identifier] = STATE(1058), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2264), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1024), [sym_block_comment] = STATE(1024), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1025)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2856), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2596), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1025), [sym_block_comment] = STATE(1025), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1026)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2037), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2965), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1026), [sym_block_comment] = STATE(1026), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1027)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(2028), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2696), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1027), [sym_block_comment] = STATE(1027), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1028)] = { - [sym_function_modifiers] = STATE(3477), - [sym_removed_trait_bound] = STATE(2030), - [sym_extern_modifier] = STATE(2447), - [sym__type] = STATE(3111), - [sym_bracketed_type] = STATE(3449), - [sym_lifetime] = STATE(3671), - [sym_array_type] = STATE(2030), - [sym_for_lifetimes] = STATE(1594), - [sym_function_type] = STATE(2030), - [sym_tuple_type] = STATE(2030), - [sym_unit_type] = STATE(2030), - [sym_generic_type] = STATE(2001), - [sym_generic_type_with_turbofish] = STATE(3552), - [sym_bounded_type] = STATE(2030), - [sym_reference_type] = STATE(2030), - [sym_pointer_type] = STATE(2030), - [sym_never_type] = STATE(2030), - [sym_abstract_type] = STATE(2030), - [sym_dynamic_type] = STATE(2030), - [sym_macro_invocation] = STATE(2030), - [sym_scoped_identifier] = STATE(3197), - [sym_scoped_type_identifier] = STATE(1975), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2271), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1028), [sym_block_comment] = STATE(1028), - [aux_sym_function_modifiers_repeat1] = STATE(2252), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), }, [STATE(1029)] = { - [sym_attribute_item] = STATE(1031), + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2277), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), [sym_line_comment] = STATE(1029), [sym_block_comment] = STATE(1029), - [aux_sym_enum_variant_list_repeat1] = STATE(1029), - [sym_identifier] = ACTIONS(3288), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1030)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2285), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1030), + [sym_block_comment] = STATE(1030), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1031)] = { + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1506), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), + [sym_line_comment] = STATE(1031), + [sym_block_comment] = STATE(1031), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), + }, + [STATE(1032)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2887), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1032), + [sym_block_comment] = STATE(1032), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1033)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3074), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1033), + [sym_block_comment] = STATE(1033), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1034)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2987), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1034), + [sym_block_comment] = STATE(1034), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1035)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3149), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1035), + [sym_block_comment] = STATE(1035), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1036)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2994), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1036), + [sym_block_comment] = STATE(1036), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1037)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2606), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1037), + [sym_block_comment] = STATE(1037), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1038)] = { + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1526), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), + [sym_line_comment] = STATE(1038), + [sym_block_comment] = STATE(1038), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), + }, + [STATE(1039)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2845), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1039), + [sym_block_comment] = STATE(1039), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1040)] = { + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1421), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), + [sym_line_comment] = STATE(1040), + [sym_block_comment] = STATE(1040), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), + }, + [STATE(1041)] = { + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1444), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), + [sym_line_comment] = STATE(1041), + [sym_block_comment] = STATE(1041), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), + }, + [STATE(1042)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2460), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2395), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2232), + [sym_line_comment] = STATE(1042), + [sym_block_comment] = STATE(1042), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1043)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2052), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1043), + [sym_block_comment] = STATE(1043), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1044)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2777), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1044), + [sym_block_comment] = STATE(1044), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1045)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2056), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3734), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2056), + [sym_tuple_type] = STATE(2056), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2026), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2056), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2010), + [sym_line_comment] = STATE(1045), + [sym_block_comment] = STATE(1045), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1046)] = { + [sym_function_modifiers] = STATE(3733), + [sym_removed_trait_bound] = STATE(1449), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(1463), + [sym_bracketed_type] = STATE(3646), + [sym_lifetime] = STATE(3696), + [sym_array_type] = STATE(1449), + [sym_for_lifetimes] = STATE(1605), + [sym_function_type] = STATE(1449), + [sym_tuple_type] = STATE(1449), + [sym_unit_type] = STATE(1449), + [sym_generic_type] = STATE(1119), + [sym_generic_type_with_turbofish] = STATE(3634), + [sym_bounded_type] = STATE(1449), + [sym_use_bounds] = STATE(3696), + [sym_reference_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_never_type] = STATE(1449), + [sym_abstract_type] = STATE(1449), + [sym_dynamic_type] = STATE(1449), + [sym_macro_invocation] = STATE(1449), + [sym_scoped_identifier] = STATE(3308), + [sym_scoped_type_identifier] = STATE(1085), + [sym_line_comment] = STATE(1046), + [sym_block_comment] = STATE(1046), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3160), + [anon_sym_u8] = ACTIONS(3162), + [anon_sym_i8] = ACTIONS(3162), + [anon_sym_u16] = ACTIONS(3162), + [anon_sym_i16] = ACTIONS(3162), + [anon_sym_u32] = ACTIONS(3162), + [anon_sym_i32] = ACTIONS(3162), + [anon_sym_u64] = ACTIONS(3162), + [anon_sym_i64] = ACTIONS(3162), + [anon_sym_u128] = ACTIONS(3162), + [anon_sym_i128] = ACTIONS(3162), + [anon_sym_isize] = ACTIONS(3162), + [anon_sym_usize] = ACTIONS(3162), + [anon_sym_f32] = ACTIONS(3162), + [anon_sym_f64] = ACTIONS(3162), + [anon_sym_bool] = ACTIONS(3162), + [anon_sym_str] = ACTIONS(3162), + [anon_sym_char] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(3174), + [anon_sym_impl] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_crate] = ACTIONS(3182), + [sym_metavariable] = ACTIONS(3184), + }, + [STATE(1047)] = { + [sym_function_modifiers] = STATE(3774), + [sym_removed_trait_bound] = STATE(2048), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(2662), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3734), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1634), + [sym_function_type] = STATE(2048), + [sym_tuple_type] = STATE(2048), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2024), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2048), + [sym_use_bounds] = STATE(3734), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2007), + [sym_line_comment] = STATE(1047), + [sym_block_comment] = STATE(1047), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3050), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1239), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1048)] = { + [sym_function_modifiers] = STATE(3766), + [sym_removed_trait_bound] = STATE(2064), + [sym_extern_modifier] = STATE(2459), + [sym__type] = STATE(3473), + [sym_bracketed_type] = STATE(3712), + [sym_lifetime] = STATE(3473), + [sym_array_type] = STATE(2048), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(2064), + [sym_tuple_type] = STATE(2064), + [sym_unit_type] = STATE(2048), + [sym_generic_type] = STATE(2019), + [sym_generic_type_with_turbofish] = STATE(3557), + [sym_bounded_type] = STATE(2064), + [sym_use_bounds] = STATE(3473), + [sym_reference_type] = STATE(2048), + [sym_pointer_type] = STATE(2048), + [sym_never_type] = STATE(2048), + [sym_abstract_type] = STATE(2048), + [sym_dynamic_type] = STATE(2048), + [sym_macro_invocation] = STATE(2048), + [sym_scoped_identifier] = STATE(3378), + [sym_scoped_type_identifier] = STATE(2237), + [sym_line_comment] = STATE(1048), + [sym_block_comment] = STATE(1048), + [aux_sym_function_modifiers_repeat1] = STATE(2278), + [sym_identifier] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_LBRACK] = ACTIONS(1601), + [anon_sym_STAR] = ACTIONS(1203), + [anon_sym_QMARK] = ACTIONS(1607), + [anon_sym_u8] = ACTIONS(1609), + [anon_sym_i8] = ACTIONS(1609), + [anon_sym_u16] = ACTIONS(1609), + [anon_sym_i16] = ACTIONS(1609), + [anon_sym_u32] = ACTIONS(1609), + [anon_sym_i32] = ACTIONS(1609), + [anon_sym_u64] = ACTIONS(1609), + [anon_sym_i64] = ACTIONS(1609), + [anon_sym_u128] = ACTIONS(1609), + [anon_sym_i128] = ACTIONS(1609), + [anon_sym_isize] = ACTIONS(1609), + [anon_sym_usize] = ACTIONS(1609), + [anon_sym_f32] = ACTIONS(1609), + [anon_sym_f64] = ACTIONS(1609), + [anon_sym_bool] = ACTIONS(1609), + [anon_sym_str] = ACTIONS(1609), + [anon_sym_char] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1211), + [anon_sym_AMP] = ACTIONS(3054), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1615), + [anon_sym_SQUOTE] = ACTIONS(3060), + [anon_sym_async] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_default] = ACTIONS(1619), + [anon_sym_fn] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1241), + [anon_sym_gen] = ACTIONS(1623), + [anon_sym_impl] = ACTIONS(1245), + [anon_sym_union] = ACTIONS(1623), + [anon_sym_unsafe] = ACTIONS(1233), + [anon_sym_use] = ACTIONS(1247), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_dyn] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1631), + [sym_super] = ACTIONS(1631), + [sym_crate] = ACTIONS(1631), + [sym_metavariable] = ACTIONS(1633), + }, + [STATE(1049)] = { + [sym_attribute_item] = STATE(1050), + [sym_line_comment] = STATE(1049), + [sym_block_comment] = STATE(1049), + [aux_sym_enum_variant_list_repeat1] = STATE(1049), + [sym_identifier] = ACTIONS(3360), [anon_sym_LPAREN] = ACTIONS(759), [anon_sym_LBRACK] = ACTIONS(759), [anon_sym_RBRACK] = ACTIONS(759), [anon_sym_LBRACE] = ACTIONS(759), [anon_sym_STAR] = ACTIONS(759), - [anon_sym_u8] = ACTIONS(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_u8] = ACTIONS(3360), + [anon_sym_i8] = ACTIONS(3360), + [anon_sym_u16] = ACTIONS(3360), + [anon_sym_i16] = ACTIONS(3360), + [anon_sym_u32] = ACTIONS(3360), + [anon_sym_i32] = ACTIONS(3360), + [anon_sym_u64] = ACTIONS(3360), + [anon_sym_i64] = ACTIONS(3360), + [anon_sym_u128] = ACTIONS(3360), + [anon_sym_i128] = ACTIONS(3360), + [anon_sym_isize] = ACTIONS(3360), + [anon_sym_usize] = ACTIONS(3360), + [anon_sym_f32] = ACTIONS(3360), + [anon_sym_f64] = ACTIONS(3360), + [anon_sym_bool] = ACTIONS(3360), + [anon_sym_str] = ACTIONS(3360), + [anon_sym_char] = ACTIONS(3360), [anon_sym_DASH] = ACTIONS(759), [anon_sym_BANG] = ACTIONS(759), [anon_sym_AMP] = ACTIONS(759), @@ -112540,308 +114558,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(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), + [anon_sym_SQUOTE] = ACTIONS(3360), + [anon_sym_async] = ACTIONS(3360), + [anon_sym_break] = ACTIONS(3360), + [anon_sym_const] = ACTIONS(3360), + [anon_sym_continue] = ACTIONS(3360), + [anon_sym_default] = ACTIONS(3360), + [anon_sym_for] = ACTIONS(3360), + [anon_sym_gen] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3360), + [anon_sym_loop] = ACTIONS(3360), + [anon_sym_match] = ACTIONS(3360), + [anon_sym_return] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3360), + [anon_sym_union] = ACTIONS(3360), + [anon_sym_unsafe] = ACTIONS(3360), + [anon_sym_while] = ACTIONS(3360), + [anon_sym_yield] = ACTIONS(3360), + [anon_sym_move] = ACTIONS(3360), + [anon_sym_try] = ACTIONS(3360), [sym_integer_literal] = ACTIONS(759), [aux_sym_string_literal_token1] = ACTIONS(759), [sym_char_literal] = ACTIONS(759), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), + [anon_sym_true] = ACTIONS(3360), + [anon_sym_false] = ACTIONS(3360), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_crate] = ACTIONS(3288), + [sym_self] = ACTIONS(3360), + [sym_super] = ACTIONS(3360), + [sym_crate] = ACTIONS(3360), [sym_metavariable] = ACTIONS(759), [sym__raw_string_literal_start] = ACTIONS(759), [sym_float_literal] = ACTIONS(759), }, - [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(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), + [STATE(1050)] = { + [sym_line_comment] = STATE(1050), + [sym_block_comment] = STATE(1050), + [sym_identifier] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_RBRACK] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_STAR] = ACTIONS(3364), + [anon_sym_u8] = ACTIONS(3362), + [anon_sym_i8] = ACTIONS(3362), + [anon_sym_u16] = ACTIONS(3362), + [anon_sym_i16] = ACTIONS(3362), + [anon_sym_u32] = ACTIONS(3362), + [anon_sym_i32] = ACTIONS(3362), + [anon_sym_u64] = ACTIONS(3362), + [anon_sym_i64] = ACTIONS(3362), + [anon_sym_u128] = ACTIONS(3362), + [anon_sym_i128] = ACTIONS(3362), + [anon_sym_isize] = ACTIONS(3362), + [anon_sym_usize] = ACTIONS(3362), + [anon_sym_f32] = ACTIONS(3362), + [anon_sym_f64] = ACTIONS(3362), + [anon_sym_bool] = ACTIONS(3362), + [anon_sym_str] = ACTIONS(3362), + [anon_sym_char] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_DOT_DOT] = ACTIONS(3364), + [anon_sym_COMMA] = ACTIONS(3364), + [anon_sym_COLON_COLON] = ACTIONS(3364), + [anon_sym_POUND] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3362), + [anon_sym_async] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_default] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_gen] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_loop] = ACTIONS(3362), + [anon_sym_match] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_unsafe] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_yield] = ACTIONS(3362), + [anon_sym_move] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [sym_integer_literal] = ACTIONS(3364), + [aux_sym_string_literal_token1] = ACTIONS(3364), + [sym_char_literal] = ACTIONS(3364), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3362), + [sym_super] = ACTIONS(3362), + [sym_crate] = ACTIONS(3362), + [sym_metavariable] = ACTIONS(3364), + [sym__raw_string_literal_start] = ACTIONS(3364), + [sym_float_literal] = ACTIONS(3364), + }, + [STATE(1051)] = { + [sym_line_comment] = STATE(1051), + [sym_block_comment] = STATE(1051), + [sym_identifier] = ACTIONS(2614), + [anon_sym_LPAREN] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2612), + [anon_sym_RBRACK] = ACTIONS(2612), + [anon_sym_LBRACE] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2612), + [anon_sym_u8] = ACTIONS(2614), + [anon_sym_i8] = ACTIONS(2614), + [anon_sym_u16] = ACTIONS(2614), + [anon_sym_i16] = ACTIONS(2614), + [anon_sym_u32] = ACTIONS(2614), + [anon_sym_i32] = ACTIONS(2614), + [anon_sym_u64] = ACTIONS(2614), + [anon_sym_i64] = ACTIONS(2614), + [anon_sym_u128] = ACTIONS(2614), + [anon_sym_i128] = ACTIONS(2614), + [anon_sym_isize] = ACTIONS(2614), + [anon_sym_usize] = ACTIONS(2614), + [anon_sym_f32] = ACTIONS(2614), + [anon_sym_f64] = ACTIONS(2614), + [anon_sym_bool] = ACTIONS(2614), + [anon_sym_str] = ACTIONS(2614), + [anon_sym_char] = ACTIONS(2614), + [anon_sym_DASH] = ACTIONS(2612), + [anon_sym_BANG] = ACTIONS(2612), + [anon_sym_AMP] = ACTIONS(2612), + [anon_sym_PIPE] = ACTIONS(2612), + [anon_sym_LT] = ACTIONS(2612), + [anon_sym_DOT_DOT] = ACTIONS(2612), + [anon_sym_COMMA] = ACTIONS(2612), + [anon_sym_COLON_COLON] = ACTIONS(2612), + [anon_sym_POUND] = ACTIONS(2612), + [anon_sym_SQUOTE] = ACTIONS(2614), + [anon_sym_async] = ACTIONS(2614), + [anon_sym_break] = ACTIONS(2614), + [anon_sym_const] = ACTIONS(2614), + [anon_sym_continue] = ACTIONS(2614), + [anon_sym_default] = ACTIONS(2614), + [anon_sym_for] = ACTIONS(2614), + [anon_sym_gen] = ACTIONS(2614), + [anon_sym_if] = ACTIONS(2614), + [anon_sym_loop] = ACTIONS(2614), + [anon_sym_match] = ACTIONS(2614), + [anon_sym_return] = ACTIONS(2614), + [anon_sym_static] = ACTIONS(2614), + [anon_sym_union] = ACTIONS(2614), + [anon_sym_unsafe] = ACTIONS(2614), + [anon_sym_while] = ACTIONS(2614), + [anon_sym_yield] = ACTIONS(2614), + [anon_sym_move] = ACTIONS(2614), + [anon_sym_try] = ACTIONS(2614), + [sym_integer_literal] = ACTIONS(2612), + [aux_sym_string_literal_token1] = ACTIONS(2612), + [sym_char_literal] = ACTIONS(2612), + [anon_sym_true] = ACTIONS(2614), + [anon_sym_false] = ACTIONS(2614), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2614), + [sym_super] = ACTIONS(2614), + [sym_crate] = ACTIONS(2614), + [sym_metavariable] = ACTIONS(2612), + [sym__raw_string_literal_start] = ACTIONS(2612), + [sym_float_literal] = ACTIONS(2612), + }, + [STATE(1052)] = { + [sym_line_comment] = STATE(1052), + [sym_block_comment] = STATE(1052), + [sym_identifier] = ACTIONS(1593), + [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1595), + [anon_sym_u8] = ACTIONS(1593), + [anon_sym_i8] = ACTIONS(1593), + [anon_sym_u16] = ACTIONS(1593), + [anon_sym_i16] = ACTIONS(1593), + [anon_sym_u32] = ACTIONS(1593), + [anon_sym_i32] = ACTIONS(1593), + [anon_sym_u64] = ACTIONS(1593), + [anon_sym_i64] = ACTIONS(1593), + [anon_sym_u128] = ACTIONS(1593), + [anon_sym_i128] = ACTIONS(1593), + [anon_sym_isize] = ACTIONS(1593), + [anon_sym_usize] = ACTIONS(1593), + [anon_sym_f32] = ACTIONS(1593), + [anon_sym_f64] = ACTIONS(1593), + [anon_sym_bool] = ACTIONS(1593), + [anon_sym_str] = ACTIONS(1593), + [anon_sym_char] = ACTIONS(1593), + [anon_sym_DASH] = ACTIONS(1593), + [anon_sym_BANG] = ACTIONS(1595), + [anon_sym_AMP] = ACTIONS(1595), + [anon_sym_PIPE] = ACTIONS(1595), + [anon_sym_LT] = ACTIONS(1595), + [anon_sym__] = ACTIONS(1593), + [anon_sym_DOT_DOT] = ACTIONS(1595), + [anon_sym_COLON_COLON] = ACTIONS(1595), + [anon_sym_DASH_GT] = ACTIONS(1595), + [anon_sym_SQUOTE] = ACTIONS(1593), + [anon_sym_async] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_gen] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_loop] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_static] = ACTIONS(1593), + [anon_sym_union] = ACTIONS(1593), + [anon_sym_unsafe] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_yield] = ACTIONS(1593), + [anon_sym_move] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [sym_integer_literal] = ACTIONS(1595), + [aux_sym_string_literal_token1] = ACTIONS(1595), + [sym_char_literal] = ACTIONS(1595), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1593), + [sym_super] = ACTIONS(1593), + [sym_crate] = ACTIONS(1593), + [sym_metavariable] = ACTIONS(1595), + [sym__raw_string_literal_start] = ACTIONS(1595), + [sym_float_literal] = ACTIONS(1595), + }, + [STATE(1053)] = { + [sym_line_comment] = STATE(1053), + [sym_block_comment] = STATE(1053), + [sym_identifier] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_u8] = ACTIONS(3366), + [anon_sym_i8] = ACTIONS(3366), + [anon_sym_u16] = ACTIONS(3366), + [anon_sym_i16] = ACTIONS(3366), + [anon_sym_u32] = ACTIONS(3366), + [anon_sym_i32] = ACTIONS(3366), + [anon_sym_u64] = ACTIONS(3366), + [anon_sym_i64] = ACTIONS(3366), + [anon_sym_u128] = ACTIONS(3366), + [anon_sym_i128] = ACTIONS(3366), + [anon_sym_isize] = ACTIONS(3366), + [anon_sym_usize] = ACTIONS(3366), + [anon_sym_f32] = ACTIONS(3366), + [anon_sym_f64] = ACTIONS(3366), + [anon_sym_bool] = ACTIONS(3366), + [anon_sym_str] = ACTIONS(3366), + [anon_sym_char] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3368), + [anon_sym_PIPE] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym__] = ACTIONS(3366), + [anon_sym_DOT_DOT] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3368), + [anon_sym_DASH_GT] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_default] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_gen] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_loop] = ACTIONS(3366), + [anon_sym_match] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_union] = ACTIONS(3366), + [anon_sym_unsafe] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_move] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [sym_integer_literal] = ACTIONS(3368), + [aux_sym_string_literal_token1] = ACTIONS(3368), + [sym_char_literal] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3366), + [anon_sym_false] = ACTIONS(3366), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_crate] = ACTIONS(3366), + [sym_metavariable] = ACTIONS(3368), + [sym__raw_string_literal_start] = ACTIONS(3368), + [sym_float_literal] = ACTIONS(3368), }, }; @@ -112851,10 +114869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1034), 2, + STATE(1054), 2, sym_line_comment, sym_block_comment, - ACTIONS(1113), 18, + ACTIONS(1087), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -112873,7 +114891,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3298), 42, + ACTIONS(3370), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112921,10 +114939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1035), 2, + STATE(1055), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 18, + ACTIONS(2612), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -112943,7 +114961,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2784), 39, + ACTIONS(2614), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112973,6 +114991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, anon_sym_ref, anon_sym_dyn, @@ -112983,15 +115002,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [147] = 5, + [148] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1036), 2, + STATE(1056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3302), 20, + ACTIONS(3374), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113012,7 +115031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3300), 35, + ACTIONS(3372), 36, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113039,6 +115058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_where, anon_sym_extern, anon_sym_else, @@ -113048,57 +115068,57 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [217] = 21, + [219] = 21, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1241), 1, + ACTIONS(1209), 1, anon_sym_DASH, - ACTIONS(1289), 1, + ACTIONS(1259), 1, aux_sym_string_literal_token1, - ACTIONS(1299), 1, + ACTIONS(1269), 1, sym__raw_string_literal_start, - ACTIONS(2554), 1, + ACTIONS(2184), 1, anon_sym_COLON_COLON, - ACTIONS(3304), 1, + ACTIONS(3376), 1, sym_identifier, - ACTIONS(3314), 1, + ACTIONS(3386), 1, sym_metavariable, - STATE(2107), 1, + STATE(2136), 1, sym_scoped_identifier, - STATE(2188), 1, + STATE(2208), 1, sym__literal_pattern, - STATE(3441), 1, + STATE(3695), 1, sym_bracketed_type, - STATE(3467), 1, + STATE(3765), 1, sym_generic_type_with_turbofish, - ACTIONS(1291), 2, + ACTIONS(1261), 2, anon_sym_true, anon_sym_false, - STATE(1037), 2, + STATE(1057), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, + ACTIONS(1257), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3308), 3, + ACTIONS(3380), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3312), 3, + ACTIONS(3384), 3, sym_self, sym_super, sym_crate, - STATE(2074), 4, + STATE(2096), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3306), 7, + ACTIONS(3378), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -113106,7 +115126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3310), 20, + ACTIONS(3382), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113127,57 +115147,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [317] = 21, + [319] = 21, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1241), 1, + ACTIONS(1209), 1, anon_sym_DASH, - ACTIONS(1289), 1, + ACTIONS(1259), 1, aux_sym_string_literal_token1, - ACTIONS(1299), 1, + ACTIONS(1269), 1, sym__raw_string_literal_start, - ACTIONS(2554), 1, + ACTIONS(2184), 1, anon_sym_COLON_COLON, - ACTIONS(3316), 1, + ACTIONS(3388), 1, sym_identifier, - ACTIONS(3326), 1, + ACTIONS(3398), 1, sym_metavariable, STATE(2116), 1, sym_scoped_identifier, - STATE(2168), 1, + STATE(2163), 1, sym__literal_pattern, - STATE(3441), 1, + STATE(3695), 1, sym_bracketed_type, - STATE(3467), 1, + STATE(3765), 1, sym_generic_type_with_turbofish, - ACTIONS(1291), 2, + ACTIONS(1261), 2, anon_sym_true, anon_sym_false, - STATE(1038), 2, + STATE(1058), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, + ACTIONS(1257), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3320), 3, + ACTIONS(3392), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3324), 3, + ACTIONS(3396), 3, sym_self, sym_super, sym_crate, - STATE(2074), 4, + STATE(2096), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3318), 7, + ACTIONS(3390), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -113185,7 +115205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3322), 20, + ACTIONS(3394), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113206,57 +115226,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [417] = 21, + [419] = 21, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1241), 1, + ACTIONS(1209), 1, anon_sym_DASH, - ACTIONS(1289), 1, + ACTIONS(1259), 1, aux_sym_string_literal_token1, - ACTIONS(1299), 1, + ACTIONS(1269), 1, sym__raw_string_literal_start, - ACTIONS(2554), 1, + ACTIONS(2184), 1, anon_sym_COLON_COLON, - ACTIONS(3328), 1, + ACTIONS(3400), 1, sym_identifier, - ACTIONS(3338), 1, + ACTIONS(3410), 1, sym_metavariable, - STATE(2103), 1, + STATE(2109), 1, sym_scoped_identifier, - STATE(2160), 1, + STATE(2177), 1, sym__literal_pattern, - STATE(3441), 1, + STATE(3695), 1, sym_bracketed_type, - STATE(3467), 1, + STATE(3765), 1, sym_generic_type_with_turbofish, - ACTIONS(1291), 2, + ACTIONS(1261), 2, anon_sym_true, anon_sym_false, - STATE(1039), 2, + STATE(1059), 2, sym_line_comment, sym_block_comment, - ACTIONS(1287), 3, + ACTIONS(1257), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3332), 3, + ACTIONS(3404), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3336), 3, + ACTIONS(3408), 3, sym_self, sym_super, sym_crate, - STATE(2074), 4, + STATE(2096), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3330), 7, + ACTIONS(3402), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -113264,7 +115284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3334), 20, + ACTIONS(3406), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113285,29 +115305,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [517] = 12, + [519] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3416), 1, anon_sym_BANG, - ACTIONS(3346), 1, + ACTIONS(3418), 1, anon_sym_COLON_COLON, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(3350), 1, + ACTIONS(3422), 1, anon_sym_move, - STATE(1407), 1, + STATE(1454), 1, sym_block, - STATE(3664), 1, + STATE(3677), 1, sym_label, - STATE(1040), 2, + STATE(1060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113323,7 +115343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 28, + ACTIONS(3412), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113352,27 +115372,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [596] = 11, + [598] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(3426), 1, anon_sym_LPAREN, - ACTIONS(3358), 1, + ACTIONS(3430), 1, anon_sym_BANG, - ACTIONS(3360), 1, + ACTIONS(3432), 1, anon_sym_COLON_COLON, - ACTIONS(3362), 1, + ACTIONS(3434), 1, anon_sym_LT2, - STATE(1108), 1, + STATE(1125), 1, sym_type_arguments, - STATE(1114), 1, + STATE(1131), 1, sym_parameters, - STATE(1041), 2, + STATE(1061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3356), 17, + ACTIONS(3428), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113390,7 +115410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3352), 27, + ACTIONS(3424), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -113418,15 +115438,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [673] = 5, + [675] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1042), 2, + ACTIONS(3426), 1, + anon_sym_LPAREN, + ACTIONS(3432), 1, + anon_sym_COLON_COLON, + ACTIONS(3434), 1, + anon_sym_LT2, + ACTIONS(3440), 1, + anon_sym_BANG, + STATE(1125), 1, + sym_type_arguments, + STATE(1131), 1, + sym_parameters, + STATE(1062), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 9, + ACTIONS(3438), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3436), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [752] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3426), 1, + anon_sym_LPAREN, + ACTIONS(3430), 1, + anon_sym_BANG, + ACTIONS(3432), 1, + anon_sym_COLON_COLON, + ACTIONS(3434), 1, + anon_sym_LT2, + STATE(1125), 1, + sym_type_arguments, + STATE(1131), 1, + sym_parameters, + STATE(1063), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3444), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3442), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [829] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3450), 1, + anon_sym_POUND, + STATE(1412), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1064), 3, + sym_line_comment, + sym_block_comment, + aux_sym_match_arm_repeat1, + ACTIONS(3448), 14, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3446), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [897] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1065), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1423), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113436,7 +115649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1397), 40, + ACTIONS(1425), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113477,15 +115690,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [737] = 5, + [961] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1043), 2, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(1387), 9, + ACTIONS(1043), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113495,7 +115708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1389), 40, + ACTIONS(1041), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113536,15 +115749,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [801] = 5, + [1025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1044), 2, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(1383), 9, + ACTIONS(1435), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113554,7 +115767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1385), 40, + ACTIONS(1437), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113595,15 +115808,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [865] = 5, + [1089] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1045), 2, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(1051), 9, + ACTIONS(1477), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113613,7 +115826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1049), 40, + ACTIONS(1479), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113654,15 +115867,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [929] = 5, + [1153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1046), 2, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(1391), 9, + ACTIONS(1419), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113672,7 +115885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1393), 40, + ACTIONS(1421), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113713,15 +115926,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [993] = 5, + [1217] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1047), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 9, + ACTIONS(1469), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113731,7 +115944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1439), 40, + ACTIONS(1471), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113772,15 +115985,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1057] = 5, + [1281] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1048), 2, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 9, + ACTIONS(1431), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113790,7 +116003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1045), 40, + ACTIONS(1433), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113831,25 +116044,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1121] = 10, + [1345] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(3426), 1, anon_sym_LPAREN, - ACTIONS(3362), 1, + ACTIONS(3434), 1, anon_sym_LT2, - ACTIONS(3368), 1, + ACTIONS(3457), 1, anon_sym_COLON_COLON, - STATE(1108), 1, + STATE(1125), 1, sym_type_arguments, - STATE(1114), 1, + STATE(1131), 1, sym_parameters, - STATE(1049), 2, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3366), 17, + ACTIONS(3455), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113867,7 +116080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3364), 27, + ACTIONS(3453), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -113895,15 +116108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1195] = 5, + [1419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1050), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 9, + ACTIONS(1427), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113913,7 +116126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1473), 40, + ACTIONS(1429), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113954,100 +116167,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1259] = 10, + [1483] = 5, 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(1051), 2, + STATE(1074), 2, sym_line_comment, sym_block_comment, - 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, + ACTIONS(1039), 9, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [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_EQ_GT, anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(3374), 31, + ACTIONS(1037), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114065,103 +116203,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [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, + [1547] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1054), 2, + STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(1413), 9, + ACTIONS(2934), 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(1415), 40, + ACTIONS(2936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114185,7 +116268,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, @@ -114202,66 +116284,66 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1539] = 24, + [1610] = 24, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, + ACTIONS(1601), 1, anon_sym_LBRACK, - ACTIONS(3385), 1, + ACTIONS(3302), 1, + anon_sym_SQUOTE, + ACTIONS(3459), 1, sym_identifier, - ACTIONS(3389), 1, + ACTIONS(3463), 1, anon_sym_LPAREN, - ACTIONS(3391), 1, + ACTIONS(3465), 1, anon_sym_STAR, - ACTIONS(3395), 1, + ACTIONS(3469), 1, anon_sym_AMP, - ACTIONS(3397), 1, + ACTIONS(3471), 1, anon_sym_COLON_COLON, - ACTIONS(3399), 1, - anon_sym_SQUOTE, - ACTIONS(3403), 1, + ACTIONS(3475), 1, anon_sym_for, - ACTIONS(3407), 1, + ACTIONS(3479), 1, sym_metavariable, - STATE(2524), 1, + STATE(2400), 1, sym_where_predicate, - STATE(2765), 1, + STATE(2833), 1, sym_scoped_type_identifier, - STATE(2896), 1, + STATE(3139), 1, sym_generic_type, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, + STATE(3588), 1, sym_scoped_identifier, - STATE(1055), 2, + STATE(3594), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_generic_type_with_turbofish, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3387), 3, + ACTIONS(3461), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3401), 3, + ACTIONS(3473), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(3405), 3, + ACTIONS(3477), 3, sym_self, sym_super, sym_crate, - STATE(3174), 6, + STATE(3405), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3393), 17, + ACTIONS(3467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114279,19 +116361,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1640] = 7, + [1711] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 1, + ACTIONS(1601), 1, + anon_sym_LBRACK, + ACTIONS(3302), 1, + anon_sym_SQUOTE, + ACTIONS(3459), 1, + sym_identifier, + ACTIONS(3463), 1, + anon_sym_LPAREN, + ACTIONS(3465), 1, + anon_sym_STAR, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_COLON_COLON, + ACTIONS(3475), 1, + anon_sym_for, + ACTIONS(3479), 1, + sym_metavariable, + STATE(2577), 1, + sym_where_predicate, + STATE(2833), 1, + sym_scoped_type_identifier, + STATE(3139), 1, + sym_generic_type, + STATE(3588), 1, + sym_scoped_identifier, + STATE(3594), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_generic_type_with_turbofish, + STATE(1077), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3473), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3477), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3481), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3405), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3467), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [1812] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3487), 1, anon_sym_BANG, - ACTIONS(3415), 1, + ACTIONS(3489), 1, anon_sym_COLON_COLON, - STATE(1056), 2, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3411), 17, + ACTIONS(3485), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114309,7 +116468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3409), 29, + ACTIONS(3483), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114339,19 +116498,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1707] = 7, + [1879] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3491), 1, + anon_sym_POUND, + STATE(1115), 1, + sym_attribute_item, + STATE(1079), 3, + sym_line_comment, + sym_block_comment, + aux_sym_enum_variant_list_repeat1, + ACTIONS(759), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(3360), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1946] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 1, + ACTIONS(3498), 1, anon_sym_BANG, - ACTIONS(3423), 1, + ACTIONS(3500), 1, anon_sym_COLON_COLON, - STATE(1057), 2, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3419), 17, + ACTIONS(3496), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114369,7 +116588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3417), 29, + ACTIONS(3494), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114399,77 +116618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1774] = 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(1058), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3427), 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(3425), 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, - [1845] = 5, + [2013] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1059), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(2306), 9, + ACTIONS(2620), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114479,7 +116636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2308), 39, + ACTIONS(2622), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114519,23 +116676,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1908] = 9, + [2076] = 7, 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(1060), 2, + ACTIONS(3506), 1, + anon_sym_BANG, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3431), 17, + ACTIONS(3504), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114553,8 +116706,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3429), 27, + ACTIONS(3502), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -114581,19 +116735,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1979] = 7, + anon_sym_LT2, + [2143] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1083), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1894), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1896), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2206] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, + ACTIONS(3514), 1, anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(3516), 1, anon_sym_COLON_COLON, - STATE(1061), 2, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3435), 17, + ACTIONS(3512), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114611,7 +116824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3433), 29, + ACTIONS(3510), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114641,23 +116854,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2046] = 9, + [2273] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(3426), 1, anon_sym_LPAREN, - ACTIONS(3362), 1, + ACTIONS(3434), 1, anon_sym_LT2, - STATE(1109), 1, + STATE(1126), 1, sym_type_arguments, - STATE(1115), 1, + STATE(1132), 1, sym_parameters, - STATE(1062), 2, + STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 17, + ACTIONS(3520), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114675,7 +116888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3441), 27, + ACTIONS(3518), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -114703,351 +116916,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3399), 1, - anon_sym_SQUOTE, - ACTIONS(3403), 1, - anon_sym_for, - ACTIONS(3407), 1, - sym_metavariable, - STATE(2413), 1, - sym_where_predicate, - STATE(2765), 1, - sym_scoped_type_identifier, - STATE(2896), 1, - sym_generic_type, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - 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(3174), 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, - STATE(2524), 1, - sym_where_predicate, - STATE(2765), 1, - sym_scoped_type_identifier, - STATE(2896), 1, - sym_generic_type, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - 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(3174), 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, - [2319] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1065), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1910), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(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, - [2382] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1066), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2786), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2788), 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, - [2445] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2078), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2080), 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, - [2508] = 9, + [2344] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(3426), 1, anon_sym_LPAREN, - ACTIONS(3362), 1, + ACTIONS(3434), 1, anon_sym_LT2, - STATE(1109), 1, + STATE(1126), 1, sym_type_arguments, - STATE(1115), 1, + STATE(1132), 1, sym_parameters, - STATE(1068), 2, + STATE(1086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3451), 17, + ACTIONS(3524), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115065,7 +116950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3449), 27, + ACTIONS(3522), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -115093,19 +116978,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2579] = 7, + [2415] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, - anon_sym_BANG, - ACTIONS(3459), 1, - anon_sym_COLON_COLON, - STATE(1069), 2, + ACTIONS(3426), 1, + anon_sym_LPAREN, + ACTIONS(3434), 1, + anon_sym_LT2, + STATE(1126), 1, + sym_type_arguments, + STATE(1132), 1, + sym_parameters, + STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3455), 17, + ACTIONS(3528), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115123,9 +117012,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3453), 29, + ACTIONS(3526), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -115152,127 +117040,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [2646] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1070), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2890), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(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, + [2486] = 24, 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(3192), 1, - anon_sym_QMARK, - ACTIONS(3204), 1, - anon_sym_fn, - ACTIONS(3461), 1, + ACTIONS(1601), 1, + anon_sym_LBRACK, + ACTIONS(3302), 1, + anon_sym_SQUOTE, + ACTIONS(3459), 1, sym_identifier, ACTIONS(3463), 1, anon_sym_LPAREN, - ACTIONS(3467), 1, - anon_sym_COLON_COLON, + ACTIONS(3465), 1, + anon_sym_STAR, ACTIONS(3469), 1, - anon_sym_default, + anon_sym_AMP, ACTIONS(3471), 1, + anon_sym_COLON_COLON, + ACTIONS(3475), 1, anon_sym_for, - ACTIONS(3477), 1, + ACTIONS(3479), 1, sym_metavariable, - STATE(1068), 1, + STATE(2577), 1, + sym_where_predicate, + STATE(2833), 1, sym_scoped_type_identifier, - STATE(1112), 1, - sym_generic_type, - STATE(1623), 1, - sym_for_lifetimes, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3455), 1, - sym_function_modifiers, - STATE(3605), 1, + STATE(3139), 1, + sym_generic_type, + STATE(3588), 1, sym_scoped_identifier, - STATE(3640), 1, - sym_generic_type_with_turbofish, - STATE(3651), 1, + STATE(3594), 1, sym_bracketed_type, - ACTIONS(3473), 2, - anon_sym_gen, - anon_sym_union, - STATE(1071), 2, + STATE(3738), 1, + sym_generic_type_with_turbofish, + STATE(1088), 2, sym_line_comment, sym_block_comment, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3475), 3, + ACTIONS(3473), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3477), 3, sym_self, sym_super, sym_crate, - STATE(1429), 3, - sym_removed_trait_bound, - sym_function_type, + ACTIONS(3530), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(3405), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, sym_tuple_type, - ACTIONS(3465), 17, + sym_reference_type, + sym_pointer_type, + ACTIONS(3467), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115290,68 +117117,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2815] = 27, - ACTIONS(29), 1, - anon_sym_LT, + [2587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - 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, - ACTIONS(3407), 1, - sym_metavariable, - ACTIONS(3479), 1, - sym_identifier, - ACTIONS(3483), 1, - anon_sym_default, - ACTIONS(3485), 1, - anon_sym_for, - STATE(1594), 1, - sym_for_lifetimes, - STATE(1986), 1, - sym_scoped_type_identifier, - STATE(2019), 1, - sym_generic_type, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3477), 1, - sym_function_modifiers, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - ACTIONS(3401), 2, - anon_sym_gen, - anon_sym_union, - STATE(1072), 2, + STATE(1089), 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(2035), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3481), 17, + ACTIONS(2412), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2414), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115369,34 +117153,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2921] = 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, + [2650] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1073), 2, + ACTIONS(3426), 1, + anon_sym_LPAREN, + ACTIONS(3434), 1, + anon_sym_LT2, + STATE(1126), 1, + sym_type_arguments, + STATE(1132), 1, + sym_parameters, + STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3421), 16, + ACTIONS(3534), 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(3423), 31, + ACTIONS(3532), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -115413,45 +117227,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2983] = 7, + [2721] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3487), 1, - anon_sym_POUND, - STATE(1494), 1, - sym_attribute_item, - STATE(1074), 3, + STATE(1091), 2, sym_line_comment, sym_block_comment, - 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, + ACTIONS(2736), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_integer_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(3288), 33, + ACTIONS(2738), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115472,28 +117276,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [3049] = 5, + [2784] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3413), 16, + ACTIONS(3514), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115510,7 +117320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3415), 31, + ACTIONS(3516), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115542,73 +117352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3111] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3494), 1, - anon_sym_RBRACE, - STATE(1076), 2, - sym_line_comment, - sym_block_comment, - 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_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3490), 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, - [3175] = 5, + [2846] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1077), 2, + STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 16, + ACTIONS(3487), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115625,7 +117377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3459), 31, + ACTIONS(3489), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115657,29 +117409,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3237] = 9, + [2908] = 5, 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(1503), 1, - sym_field_initializer_list, - STATE(1078), 2, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3498), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -115689,12 +117434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 28, + ACTIONS(3500), 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, @@ -115716,149 +117462,37 @@ 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, - [3307] = 27, - ACTIONS(29), 1, - anon_sym_LT, + [2970] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - 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(3467), 1, - anon_sym_COLON_COLON, - ACTIONS(3469), 1, - anon_sym_default, - ACTIONS(3477), 1, - sym_metavariable, - ACTIONS(3500), 1, - sym_identifier, - STATE(1060), 1, - sym_scoped_type_identifier, - STATE(1177), 1, - sym_generic_type, - STATE(1623), 1, - sym_for_lifetimes, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3455), 1, - sym_function_modifiers, - STATE(3605), 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(1079), 2, + ACTIONS(3540), 1, + anon_sym_RBRACE, + STATE(1095), 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(1486), 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, - [3413] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1273), 1, - anon_sym_for, - ACTIONS(1279), 1, - anon_sym_extern, - ACTIONS(3154), 1, - anon_sym_QMARK, - ACTIONS(3166), 1, - anon_sym_fn, - ACTIONS(3502), 1, - sym_identifier, - ACTIONS(3504), 1, + ACTIONS(3538), 15, + sym__raw_string_literal_start, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(3508), 1, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(3510), 1, - anon_sym_default, - ACTIONS(3516), 1, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - STATE(1580), 1, - sym_scoped_type_identifier, - STATE(1624), 1, - sym_for_lifetimes, - STATE(1673), 1, - sym_generic_type, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3595), 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(1700), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3506), 17, + ACTIONS(3536), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115876,96 +117510,31 @@ static const uint16_t ts_small_parse_table[] = { 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__, + anon_sym_DOT_DOT, + anon_sym_const, anon_sym_default, - ACTIONS(3516), 1, - sym_metavariable, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_for, - STATE(1573), 1, - sym_scoped_type_identifier, - STATE(1624), 1, - sym_for_lifetimes, - STATE(1679), 1, - sym_generic_type, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3595), 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(1081), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1265), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3514), 3, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1813), 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, - [3625] = 6, + [3034] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3526), 1, + ACTIONS(3546), 1, anon_sym_RBRACE, - STATE(1082), 2, + STATE(1096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(3544), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -115981,7 +117550,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3522), 31, + ACTIONS(3542), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116013,32 +117582,22 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3689] = 8, + [3098] = 5, 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, + STATE(1097), 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, - ACTIONS(3342), 16, + ACTIONS(3506), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -116048,11 +117607,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3340), 23, + ACTIONS(3508), 31, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -116073,22 +117634,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [3757] = 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [3160] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1084), 2, + STATE(1098), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3550), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3548), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3222] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1099), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3554), 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(3552), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3284] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3440), 1, + anon_sym_BANG, + ACTIONS(3556), 1, + anon_sym_LBRACE, + ACTIONS(3558), 1, + anon_sym_COLON_COLON, + STATE(1514), 1, + sym_field_initializer_list, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(3437), 16, + ACTIONS(1449), 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, @@ -116098,13 +117785,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3439), 31, + ACTIONS(1451), 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, @@ -116126,112 +117812,28 @@ 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, - [3819] = 27, - ACTIONS(29), 1, - anon_sym_LT, + [3354] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1237), 1, - anon_sym_QMARK, - ACTIONS(1271), 1, - anon_sym_fn, - ACTIONS(1273), 1, - anon_sym_for, - ACTIONS(1279), 1, - anon_sym_extern, - ACTIONS(3389), 1, - anon_sym_LPAREN, - ACTIONS(3397), 1, + ACTIONS(3418), 1, anon_sym_COLON_COLON, - ACTIONS(3407), 1, - sym_metavariable, - ACTIONS(3483), 1, - anon_sym_default, - ACTIONS(3532), 1, - sym_identifier, - STATE(1594), 1, - sym_for_lifetimes, - STATE(1984), 1, - sym_scoped_type_identifier, - STATE(2022), 1, - sym_generic_type, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3477), 1, - sym_function_modifiers, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - ACTIONS(3401), 2, - anon_sym_gen, - anon_sym_union, - STATE(1085), 2, + ACTIONS(3560), 1, + anon_sym_BANG, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(1265), 3, + ACTIONS(3562), 6, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_fn, anon_sym_unsafe, - ACTIONS(3405), 3, - sym_self, - sym_super, - sym_crate, - STATE(2047), 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, - [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(3676), 1, - sym_label, - STATE(1086), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3342), 15, + anon_sym_extern, + ACTIONS(3414), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116247,7 +117849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 24, + anon_sym_as, + ACTIONS(3412), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -116271,16 +117874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [4000] = 5, + [3422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1087), 2, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 13, + ACTIONS(3566), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -116294,7 +117896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3536), 33, + ACTIONS(3564), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116321,6 +117923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_where, anon_sym_extern, anon_sym_dyn, @@ -116328,15 +117931,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4061] = 5, + [3484] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1088), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 13, + ACTIONS(3570), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -116350,7 +117953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3540), 33, + ACTIONS(3568), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116377,6 +117980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_where, anon_sym_extern, anon_sym_dyn, @@ -116384,17 +117988,80 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4122] = 6, + [3546] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3544), 1, + ACTIONS(3418), 1, + anon_sym_COLON_COLON, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(3560), 1, + anon_sym_BANG, + ACTIONS(3572), 1, + anon_sym_move, + STATE(412), 1, + sym_block, + STATE(3532), 1, + sym_label, + STATE(1104), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3414), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3412), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [3621] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3574), 1, anon_sym_LBRACE, - STATE(1089), 2, + STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(3413), 16, + ACTIONS(3487), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116411,7 +118078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3415), 29, + ACTIONS(3489), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116441,15 +118108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [4185] = 5, + [3684] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1090), 2, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3548), 7, + ACTIONS(3578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116457,7 +118124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3546), 39, + ACTIONS(3576), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116497,17 +118164,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4246] = 6, + [3745] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3550), 1, + ACTIONS(3580), 1, anon_sym_LBRACE, - STATE(1091), 2, + STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3437), 16, + ACTIONS(3506), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116524,7 +118191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3439), 29, + ACTIONS(3508), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116554,15 +118221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [4309] = 5, + [3808] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1092), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 15, + ACTIONS(3584), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116578,7 +118245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3552), 31, + ACTIONS(3582), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116610,15 +118277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4370] = 5, + [3869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1093), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(3558), 15, + ACTIONS(3588), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116634,7 +118301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3556), 31, + ACTIONS(3586), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116666,17 +118333,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4431] = 6, + [3930] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3560), 1, + ACTIONS(3590), 1, anon_sym_LBRACE, - STATE(1094), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 16, + ACTIONS(3514), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116693,7 +118360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3459), 29, + ACTIONS(3516), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116723,15 +118390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [4494] = 5, + [3993] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1095), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3492), 15, + ACTIONS(3538), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -116747,7 +118414,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3490), 31, + ACTIONS(3536), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116779,15 +118446,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4555] = 5, + [4054] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1096), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(1583), 15, + ACTIONS(1585), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116803,7 +118470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1585), 31, + ACTIONS(1587), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116835,15 +118502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4616] = 5, + [4115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 15, + ACTIONS(3544), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -116859,7 +118526,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3522), 31, + ACTIONS(3542), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116891,15 +118558,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4677] = 5, + [4176] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1098), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(1814), 7, + ACTIONS(2590), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116907,7 +118574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1816), 39, + ACTIONS(2592), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116947,58 +118614,114 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4738] = 21, + [4237] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1115), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3364), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(3362), 34, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4298] = 21, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, + ACTIONS(1667), 1, anon_sym_DASH, - ACTIONS(1681), 1, + ACTIONS(1693), 1, aux_sym_string_literal_token1, - ACTIONS(1689), 1, + ACTIONS(1701), 1, sym__raw_string_literal_start, - ACTIONS(3320), 1, + ACTIONS(3380), 1, anon_sym_if, - ACTIONS(3562), 1, + ACTIONS(3592), 1, sym_identifier, - ACTIONS(3566), 1, + ACTIONS(3596), 1, anon_sym_COLON_COLON, - ACTIONS(3570), 1, + ACTIONS(3600), 1, sym_metavariable, - STATE(2733), 1, + STATE(2686), 1, sym_scoped_identifier, - STATE(2923), 1, + STATE(2950), 1, sym__literal_pattern, - STATE(3587), 1, + STATE(3590), 1, sym_bracketed_type, - STATE(3600), 1, + STATE(3607), 1, sym_generic_type_with_turbofish, - ACTIONS(1683), 2, + ACTIONS(1695), 2, anon_sym_true, anon_sym_false, - ACTIONS(3318), 2, + ACTIONS(3378), 2, anon_sym_EQ_GT, anon_sym_PIPE, - STATE(1099), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, + ACTIONS(1691), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3568), 3, + ACTIONS(3598), 3, sym_self, sym_super, sym_crate, - STATE(2389), 4, + STATE(2465), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3564), 20, + ACTIONS(3594), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117019,17 +118742,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [4831] = 6, + [4391] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3572), 1, + ACTIONS(3602), 1, anon_sym_COLON_COLON, - STATE(1100), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 15, + ACTIONS(3520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117045,7 +118768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 30, + ACTIONS(3518), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117076,17 +118799,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4894] = 6, + [4454] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3574), 1, + ACTIONS(3604), 1, anon_sym_COLON_COLON, - STATE(1101), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 15, + ACTIONS(3520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117102,7 +118825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 30, + ACTIONS(3518), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117133,17 +118856,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4957] = 6, + [4517] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3576), 1, + ACTIONS(3606), 1, anon_sym_COLON_COLON, - STATE(1102), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 15, + ACTIONS(3520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117159,7 +118882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 30, + ACTIONS(3518), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117190,15 +118913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5020] = 5, + [4580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2540), 7, + ACTIONS(2170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117206,7 +118929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2542), 39, + ACTIONS(2172), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117246,15 +118969,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5081] = 5, + [4641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(2600), 7, + ACTIONS(2226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117262,7 +118985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2602), 39, + ACTIONS(2228), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117302,58 +119025,58 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5142] = 21, + [4702] = 21, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, + ACTIONS(1667), 1, anon_sym_DASH, - ACTIONS(1681), 1, + ACTIONS(1693), 1, aux_sym_string_literal_token1, - ACTIONS(1689), 1, + ACTIONS(1701), 1, sym__raw_string_literal_start, - ACTIONS(3332), 1, + ACTIONS(3404), 1, anon_sym_if, - ACTIONS(3566), 1, + ACTIONS(3596), 1, anon_sym_COLON_COLON, - ACTIONS(3578), 1, + ACTIONS(3608), 1, sym_identifier, - ACTIONS(3584), 1, + ACTIONS(3614), 1, sym_metavariable, - STATE(2791), 1, + STATE(2801), 1, sym_scoped_identifier, - STATE(3009), 1, + STATE(3086), 1, sym__literal_pattern, - STATE(3587), 1, + STATE(3590), 1, sym_bracketed_type, - STATE(3600), 1, + STATE(3607), 1, sym_generic_type_with_turbofish, - ACTIONS(1683), 2, + ACTIONS(1695), 2, anon_sym_true, anon_sym_false, - ACTIONS(3330), 2, + ACTIONS(3402), 2, anon_sym_EQ_GT, anon_sym_PIPE, - STATE(1105), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, + ACTIONS(1691), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3582), 3, + ACTIONS(3612), 3, sym_self, sym_super, sym_crate, - STATE(2389), 4, + STATE(2465), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3580), 20, + ACTIONS(3610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117374,15 +119097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [5235] = 5, + [4795] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(3588), 15, + ACTIONS(3618), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117398,7 +119121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3586), 31, + ACTIONS(3616), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117430,58 +119153,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5296] = 21, + [4856] = 21, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, + ACTIONS(1667), 1, anon_sym_DASH, - ACTIONS(1681), 1, + ACTIONS(1693), 1, aux_sym_string_literal_token1, - ACTIONS(1689), 1, + ACTIONS(1701), 1, sym__raw_string_literal_start, - ACTIONS(3308), 1, + ACTIONS(3392), 1, anon_sym_if, - ACTIONS(3566), 1, + ACTIONS(3596), 1, anon_sym_COLON_COLON, - ACTIONS(3590), 1, + ACTIONS(3620), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(3626), 1, sym_metavariable, - STATE(2613), 1, + STATE(2811), 1, sym_scoped_identifier, - STATE(3021), 1, + STATE(3100), 1, sym__literal_pattern, - STATE(3587), 1, + STATE(3590), 1, sym_bracketed_type, - STATE(3600), 1, + STATE(3607), 1, sym_generic_type_with_turbofish, - ACTIONS(1683), 2, + ACTIONS(1695), 2, anon_sym_true, anon_sym_false, - ACTIONS(3306), 2, + ACTIONS(3390), 2, anon_sym_EQ_GT, anon_sym_PIPE, - STATE(1107), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, + ACTIONS(1691), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3594), 3, + ACTIONS(3624), 3, sym_self, sym_super, sym_crate, - STATE(2389), 4, + STATE(2465), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3592), 20, + ACTIONS(3622), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117502,15 +119225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [5389] = 5, + [4949] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(3600), 15, + ACTIONS(3630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117526,7 +119249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3598), 31, + ACTIONS(3628), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117558,15 +119281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5450] = 5, + [5010] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(3604), 15, + ACTIONS(3634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117582,7 +119305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3602), 31, + ACTIONS(3632), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117614,15 +119337,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5511] = 5, + [5071] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(3300), 15, + ACTIONS(3372), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117638,7 +119361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3302), 31, + ACTIONS(3374), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117670,17 +119393,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5572] = 6, + [5132] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3610), 1, + ACTIONS(3640), 1, anon_sym_DASH_GT, - STATE(1111), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(3608), 15, + ACTIONS(3638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117696,7 +119419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3606), 30, + ACTIONS(3636), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117727,17 +119450,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5635] = 6, + [5195] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3576), 1, + ACTIONS(3606), 1, anon_sym_COLON_COLON, - STATE(1112), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(3451), 15, + ACTIONS(3524), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117753,7 +119476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3449), 30, + ACTIONS(3522), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117784,17 +119507,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5698] = 6, + [5258] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3576), 1, + ACTIONS(3606), 1, anon_sym_COLON_COLON, - STATE(1113), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 15, + ACTIONS(3534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117810,7 +119533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3441), 30, + ACTIONS(3532), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117841,17 +119564,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5761] = 6, + [5321] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3616), 1, + ACTIONS(3646), 1, anon_sym_DASH_GT, - STATE(1114), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(3614), 15, + ACTIONS(3644), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117867,7 +119590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3612), 30, + ACTIONS(3642), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117898,17 +119621,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5824] = 6, + [5384] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3622), 1, + ACTIONS(3652), 1, anon_sym_DASH_GT, - STATE(1115), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(3620), 15, + ACTIONS(3650), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117924,7 +119647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3618), 30, + ACTIONS(3648), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117955,15 +119678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5887] = 5, + [5447] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2346), 7, + ACTIONS(2238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117971,7 +119694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2348), 39, + ACTIONS(2240), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118011,19 +119734,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5948] = 7, + [5508] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3624), 1, + ACTIONS(3654), 1, anon_sym_else, - STATE(1466), 1, + STATE(1539), 1, sym_else_clause, - STATE(1117), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(1353), 15, + ACTIONS(1395), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118039,7 +119762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1351), 29, + ACTIONS(1393), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118069,15 +119792,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - [6013] = 5, + [5573] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2524), 7, + ACTIONS(2312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118085,7 +119808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2526), 39, + ACTIONS(2314), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118125,15 +119848,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6074] = 5, + [5634] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2528), 7, + ACTIONS(2320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118141,7 +119864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2530), 39, + ACTIONS(2322), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118181,15 +119904,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6135] = 5, + [5695] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 7, + ACTIONS(2348), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118197,7 +119920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2534), 39, + ACTIONS(2350), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118237,15 +119960,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6196] = 5, + [5756] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2614), 7, + ACTIONS(2396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118253,7 +119976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2616), 39, + ACTIONS(2398), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118293,15 +120016,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6257] = 5, + [5817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2618), 7, + ACTIONS(2400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118309,7 +120032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2620), 39, + ACTIONS(2402), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118349,15 +120072,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6318] = 5, + [5878] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2622), 7, + ACTIONS(2408), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118365,7 +120088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2624), 39, + ACTIONS(2410), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118405,15 +120128,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6379] = 5, + [5939] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2630), 7, + ACTIONS(2448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118421,7 +120144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2632), 39, + ACTIONS(2450), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118461,15 +120184,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6440] = 5, + [6000] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2634), 7, + ACTIONS(2456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118477,7 +120200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2636), 39, + ACTIONS(2458), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118517,15 +120240,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6501] = 5, + [6061] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2638), 7, + ACTIONS(2460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118533,7 +120256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2640), 39, + ACTIONS(2462), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118573,15 +120296,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6562] = 5, + [6122] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2642), 7, + ACTIONS(2464), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118589,7 +120312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2644), 39, + ACTIONS(2466), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118629,15 +120352,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6623] = 5, + [6183] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2650), 7, + ACTIONS(2472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118645,7 +120368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2652), 39, + ACTIONS(2474), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118685,15 +120408,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6684] = 5, + [6244] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2666), 7, + ACTIONS(2512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118701,7 +120424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2668), 39, + ACTIONS(2514), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118741,15 +120464,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6745] = 5, + [6305] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2672), 7, + ACTIONS(2522), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118757,7 +120480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2674), 39, + ACTIONS(2524), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118797,15 +120520,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6806] = 5, + [6366] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2682), 7, + ACTIONS(2526), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118813,7 +120536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2684), 39, + ACTIONS(2528), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118853,15 +120576,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6867] = 5, + [6427] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2700), 7, + ACTIONS(2548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118869,7 +120592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2702), 39, + ACTIONS(2550), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118909,15 +120632,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6928] = 5, + [6488] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2704), 7, + ACTIONS(2552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118925,7 +120648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2706), 39, + ACTIONS(2554), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118965,15 +120688,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6989] = 5, + [6549] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(3411), 17, + ACTIONS(3485), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118991,7 +120714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3409), 29, + ACTIONS(3483), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119021,15 +120744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [7050] = 5, + [6610] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(3628), 15, + ACTIONS(3658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119045,7 +120768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3626), 31, + ACTIONS(3656), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119077,17 +120800,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7111] = 6, + [6671] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3634), 1, + ACTIONS(3664), 1, anon_sym_DASH_GT, - STATE(1136), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(3632), 15, + ACTIONS(3662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119103,7 +120826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3630), 30, + ACTIONS(3660), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119134,17 +120857,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7174] = 6, + [6734] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3640), 1, + ACTIONS(3670), 1, anon_sym_DASH_GT, - STATE(1137), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(3638), 15, + ACTIONS(3668), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119160,7 +120883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3636), 30, + ACTIONS(3666), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119191,17 +120914,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7237] = 6, + [6797] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3646), 1, + ACTIONS(3676), 1, anon_sym_DASH_GT, - STATE(1138), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(3644), 15, + ACTIONS(3674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119217,7 +120940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3642), 30, + ACTIONS(3672), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119248,15 +120971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7300] = 5, + [6860] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2818), 7, + ACTIONS(2640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119264,7 +120987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2820), 39, + ACTIONS(2642), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119304,15 +121027,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7361] = 5, + [6921] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2822), 7, + ACTIONS(2644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119320,7 +121043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2824), 39, + ACTIONS(2646), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119360,15 +121083,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7422] = 5, + [6982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2826), 7, + ACTIONS(2648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119376,7 +121099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2828), 39, + ACTIONS(2650), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119416,15 +121139,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7483] = 5, + [7043] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2834), 7, + ACTIONS(2652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119432,7 +121155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2836), 39, + ACTIONS(2654), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119472,15 +121195,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7544] = 5, + [7104] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2838), 7, + ACTIONS(2660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119488,7 +121211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2840), 39, + ACTIONS(2662), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119528,15 +121251,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7605] = 5, + [7165] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2862), 7, + ACTIONS(2688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119544,7 +121267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2864), 39, + ACTIONS(2690), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119584,15 +121307,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7666] = 5, + [7226] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2866), 7, + ACTIONS(2692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119600,7 +121323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2868), 39, + ACTIONS(2694), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119640,15 +121363,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7727] = 5, + [7287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2870), 7, + ACTIONS(2696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119656,7 +121379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2872), 39, + ACTIONS(2698), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119696,15 +121419,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7788] = 5, + [7348] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 7, + ACTIONS(2700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119712,7 +121435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2876), 39, + ACTIONS(2702), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119752,15 +121475,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7849] = 5, + [7409] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2878), 7, + ACTIONS(2704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119768,7 +121491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2880), 39, + ACTIONS(2706), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119808,15 +121531,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7910] = 5, + [7470] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2894), 7, + ACTIONS(2740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119824,7 +121547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2896), 39, + ACTIONS(2742), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119864,15 +121587,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7971] = 5, + [7531] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2898), 7, + ACTIONS(2744), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119880,7 +121603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2900), 39, + ACTIONS(2746), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119920,15 +121643,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8032] = 5, + [7592] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2902), 7, + ACTIONS(2748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119936,7 +121659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2904), 39, + ACTIONS(2750), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119976,15 +121699,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8093] = 5, + [7653] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2906), 7, + ACTIONS(2752), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119992,7 +121715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2908), 39, + ACTIONS(2754), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120032,15 +121755,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8154] = 5, + [7714] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2910), 7, + ACTIONS(2756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120048,7 +121771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2912), 39, + ACTIONS(2758), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120088,15 +121811,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8215] = 5, + [7775] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2918), 7, + ACTIONS(2760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120104,7 +121827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2920), 39, + ACTIONS(2762), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120144,15 +121867,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8276] = 5, + [7836] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2926), 7, + ACTIONS(2764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120160,7 +121883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2928), 39, + ACTIONS(2766), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120200,15 +121923,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8337] = 5, + [7897] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2938), 7, + ACTIONS(2768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120216,7 +121939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2940), 39, + ACTIONS(2770), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120256,15 +121979,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8398] = 5, + [7958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2978), 7, + ACTIONS(2772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120272,7 +121995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2980), 39, + ACTIONS(2774), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120312,15 +122035,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8459] = 5, + [8019] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2986), 7, + ACTIONS(2776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120328,7 +122051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2988), 39, + ACTIONS(2778), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120368,15 +122091,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8520] = 5, + [8080] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(3002), 7, + ACTIONS(2780), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120384,7 +122107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3004), 39, + ACTIONS(2782), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120424,15 +122147,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8581] = 5, + [8141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(3010), 7, + ACTIONS(2784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120440,7 +122163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3012), 39, + ACTIONS(2786), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120480,15 +122203,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8642] = 5, + [8202] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(3022), 7, + ACTIONS(2788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120496,7 +122219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3024), 39, + ACTIONS(2790), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120536,15 +122259,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8703] = 5, + [8263] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(3030), 7, + ACTIONS(2792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120552,7 +122275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3032), 39, + ACTIONS(2794), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120592,15 +122315,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8764] = 5, + [8324] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2610), 7, + ACTIONS(2796), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120608,7 +122331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2612), 39, + ACTIONS(2798), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120648,15 +122371,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8825] = 5, + [8385] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2286), 7, + ACTIONS(2800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120664,7 +122387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2288), 39, + ACTIONS(2802), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120704,15 +122427,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8886] = 5, + [8446] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2298), 7, + ACTIONS(2816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120720,7 +122443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2300), 39, + ACTIONS(2818), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120760,15 +122483,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8947] = 5, + [8507] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2626), 7, + ACTIONS(2926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120776,7 +122499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2628), 39, + ACTIONS(2928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120816,15 +122539,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9008] = 5, + [8568] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2754), 7, + ACTIONS(2974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120832,7 +122555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2756), 39, + ACTIONS(2976), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120872,15 +122595,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9069] = 5, + [8629] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2766), 7, + ACTIONS(2982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120888,7 +122611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2768), 39, + ACTIONS(2984), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120928,15 +122651,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9130] = 5, + [8690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2770), 7, + ACTIONS(2994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120944,7 +122667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2772), 39, + ACTIONS(2996), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120984,15 +122707,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9191] = 5, + [8751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2778), 7, + ACTIONS(3014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121000,7 +122723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2780), 39, + ACTIONS(3016), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121040,15 +122763,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9252] = 5, + [8812] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2998), 7, + ACTIONS(3030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121056,7 +122779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3000), 39, + ACTIONS(3032), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121096,15 +122819,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9313] = 5, + [8873] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2382), 7, + ACTIONS(3042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121112,7 +122835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2384), 39, + ACTIONS(3044), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121152,15 +122875,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9374] = 5, + [8934] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2386), 7, + ACTIONS(2272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121168,7 +122891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2388), 39, + ACTIONS(2274), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121208,15 +122931,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9435] = 5, + [8995] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2536), 7, + ACTIONS(2596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121224,7 +122947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2538), 39, + ACTIONS(2598), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121264,15 +122987,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9496] = 5, + [9056] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(3650), 15, + ACTIONS(3680), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121288,7 +123011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3648), 31, + ACTIONS(3678), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121320,15 +123043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [9557] = 5, + [9117] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(3654), 15, + ACTIONS(3684), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121344,7 +123067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3652), 31, + ACTIONS(3682), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121376,17 +123099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [9618] = 6, + [9178] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3576), 1, + ACTIONS(3606), 1, anon_sym_COLON_COLON, - STATE(1177), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(3431), 15, + ACTIONS(3528), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121402,7 +123125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3429), 30, + ACTIONS(3526), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121433,17 +123156,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [9681] = 6, + [9241] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3660), 1, + ACTIONS(3690), 1, anon_sym_DASH_GT, - STATE(1178), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, + ACTIONS(3688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121459,7 +123182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3656), 30, + ACTIONS(3686), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121490,15 +123213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [9744] = 5, + [9304] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(2982), 7, + ACTIONS(2114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121506,7 +123229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2984), 39, + ACTIONS(2116), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121546,15 +123269,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9805] = 5, + [9365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2990), 7, + ACTIONS(2118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121562,7 +123285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2992), 39, + ACTIONS(2120), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121602,15 +123325,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9866] = 5, + [9426] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(3026), 7, + ACTIONS(2234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121618,7 +123341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3028), 39, + ACTIONS(2236), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121658,15 +123381,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9927] = 5, + [9487] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(1802), 7, + ACTIONS(2248), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121674,7 +123397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1804), 39, + ACTIONS(2250), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121714,15 +123437,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9988] = 5, + [9548] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(1894), 7, + ACTIONS(2252), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121730,7 +123453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1896), 39, + ACTIONS(2254), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121770,15 +123493,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10049] = 5, + [9609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(1902), 7, + ACTIONS(2256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121786,7 +123509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1904), 39, + ACTIONS(2258), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121826,15 +123549,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10110] = 5, + [9670] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2026), 7, + ACTIONS(2264), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121842,7 +123565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2028), 39, + ACTIONS(2266), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121882,15 +123605,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10171] = 5, + [9731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2030), 7, + ACTIONS(2268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121898,7 +123621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2032), 39, + ACTIONS(2270), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121938,15 +123661,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10232] = 5, + [9792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2258), 7, + ACTIONS(2276), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121954,7 +123677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2260), 39, + ACTIONS(2278), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121994,15 +123717,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10293] = 5, + [9853] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2262), 7, + ACTIONS(2280), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122010,7 +123733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2264), 39, + ACTIONS(2282), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122050,15 +123773,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10354] = 5, + [9914] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2266), 7, + ACTIONS(2288), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122066,7 +123789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2268), 39, + ACTIONS(2290), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122106,15 +123829,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10415] = 5, + [9975] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2270), 7, + ACTIONS(2372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122122,7 +123845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2272), 39, + ACTIONS(2374), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122162,15 +123885,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10476] = 5, + [10036] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2274), 7, + ACTIONS(2384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122178,7 +123901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2276), 39, + ACTIONS(2386), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122218,15 +123941,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10537] = 5, + [10097] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2278), 7, + ACTIONS(2388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122234,7 +123957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2280), 39, + ACTIONS(2390), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122274,15 +123997,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10598] = 5, + [10158] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2282), 7, + ACTIONS(2392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122290,7 +124013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2284), 39, + ACTIONS(2394), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122330,15 +124053,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10659] = 5, + [10219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2290), 7, + ACTIONS(2504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122346,7 +124069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2292), 39, + ACTIONS(2506), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122386,15 +124109,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10720] = 5, + [10280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2294), 7, + ACTIONS(2586), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122402,7 +124125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2296), 39, + ACTIONS(2588), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122442,15 +124165,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10781] = 5, + [10341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2302), 7, + ACTIONS(2604), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122458,7 +124181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2304), 39, + ACTIONS(2606), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122498,15 +124221,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10842] = 5, + [10402] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 7, + ACTIONS(2632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122514,7 +124237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2312), 39, + ACTIONS(2634), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122554,15 +124277,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10903] = 5, + [10463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2314), 7, + ACTIONS(2824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122570,7 +124293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2316), 39, + ACTIONS(2826), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122610,15 +124333,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10964] = 5, + [10524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2318), 7, + ACTIONS(2914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122626,7 +124349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2320), 39, + ACTIONS(2916), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122666,15 +124389,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11025] = 5, + [10585] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2322), 7, + ACTIONS(2922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122682,7 +124405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2324), 39, + ACTIONS(2924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122722,15 +124445,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11086] = 5, + [10646] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2326), 7, + ACTIONS(1834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122738,7 +124461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2328), 39, + ACTIONS(1836), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122778,15 +124501,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11147] = 5, + [10707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 7, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122794,7 +124517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2332), 39, + ACTIONS(1840), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122834,15 +124557,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11208] = 5, + [10768] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2334), 7, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122850,7 +124573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2336), 39, + ACTIONS(1844), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122890,15 +124613,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11269] = 5, + [10829] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2338), 7, + ACTIONS(1886), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122906,7 +124629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2340), 39, + ACTIONS(1888), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122946,15 +124669,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11330] = 5, + [10890] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2342), 7, + ACTIONS(1974), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122962,7 +124685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2344), 39, + ACTIONS(1976), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123002,15 +124725,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11391] = 5, + [10951] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2350), 7, + ACTIONS(2062), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123018,7 +124741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2352), 39, + ACTIONS(2064), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123058,15 +124781,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11452] = 5, + [11012] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2354), 7, + ACTIONS(2082), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123074,7 +124797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2356), 39, + ACTIONS(2084), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123114,15 +124837,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11513] = 5, + [11073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2358), 7, + ACTIONS(2086), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123130,7 +124853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2360), 39, + ACTIONS(2088), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123170,15 +124893,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11574] = 5, + [11134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2362), 7, + ACTIONS(2090), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123186,7 +124909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2364), 39, + ACTIONS(2092), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123226,15 +124949,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11635] = 5, + [11195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(2366), 7, + ACTIONS(2094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123242,7 +124965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2368), 39, + ACTIONS(2096), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123282,15 +125005,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11696] = 5, + [11256] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(2370), 7, + ACTIONS(2098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123298,7 +125021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2372), 39, + ACTIONS(2100), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123338,15 +125061,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11757] = 5, + [11317] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2374), 7, + ACTIONS(2102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123354,7 +125077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2376), 39, + ACTIONS(2104), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123394,15 +125117,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11818] = 5, + [11378] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2378), 7, + ACTIONS(2106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123410,7 +125133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2380), 39, + ACTIONS(2108), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123450,15 +125173,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11879] = 5, + [11439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(3034), 7, + ACTIONS(2110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123466,7 +125189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3036), 39, + ACTIONS(2112), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123506,15 +125229,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11940] = 5, + [11500] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2476), 7, + ACTIONS(2122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123522,7 +125245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2478), 39, + ACTIONS(2124), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123562,15 +125285,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12001] = 5, + [11561] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2480), 7, + ACTIONS(2126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123578,7 +125301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2482), 39, + ACTIONS(2128), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123618,15 +125341,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12062] = 5, + [11622] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2484), 7, + ACTIONS(2130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123634,7 +125357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2486), 39, + ACTIONS(2132), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123674,15 +125397,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12123] = 5, + [11683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2488), 7, + ACTIONS(2134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123690,7 +125413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2490), 39, + ACTIONS(2136), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123730,15 +125453,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12184] = 5, + [11744] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2492), 7, + ACTIONS(2138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123746,7 +125469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2494), 39, + ACTIONS(2140), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123786,15 +125509,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12245] = 5, + [11805] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2496), 7, + ACTIONS(2142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123802,7 +125525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2498), 39, + ACTIONS(2144), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123842,15 +125565,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12306] = 5, + [11866] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2500), 7, + ACTIONS(2146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123858,7 +125581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2502), 39, + ACTIONS(2148), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123898,15 +125621,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12367] = 5, + [11927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2504), 7, + ACTIONS(2150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123914,7 +125637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2506), 39, + ACTIONS(2152), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123954,15 +125677,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12428] = 5, + [11988] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2508), 7, + ACTIONS(2154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123970,7 +125693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2510), 39, + ACTIONS(2156), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124010,15 +125733,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12489] = 5, + [12049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2512), 7, + ACTIONS(2158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124026,7 +125749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2514), 39, + ACTIONS(2160), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124066,15 +125789,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12550] = 5, + [12110] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2516), 7, + ACTIONS(2162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124082,7 +125805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2518), 39, + ACTIONS(2164), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124122,15 +125845,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12611] = 5, + [12171] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2520), 7, + ACTIONS(2166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124138,7 +125861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2522), 39, + ACTIONS(2168), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124178,15 +125901,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12672] = 5, + [12232] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2596), 7, + ACTIONS(2244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124194,7 +125917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2598), 39, + ACTIONS(2246), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124234,15 +125957,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12733] = 5, + [12293] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2606), 7, + ACTIONS(2260), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124250,7 +125973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2608), 39, + ACTIONS(2262), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124290,15 +126013,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12794] = 5, + [12354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(3664), 15, + ACTIONS(3694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124314,7 +126037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3662), 31, + ACTIONS(3692), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124346,15 +126069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12855] = 5, + [12415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 15, + ACTIONS(3698), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124370,7 +126093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3666), 31, + ACTIONS(3696), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124402,71 +126125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12916] = 5, + [12476] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2646), 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(2648), 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, - [12977] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2654), 7, + ACTIONS(2284), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124474,7 +126141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2656), 39, + ACTIONS(2286), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124514,15 +126181,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13038] = 5, + [12537] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2658), 7, + ACTIONS(2292), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124530,7 +126197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2660), 39, + ACTIONS(2294), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124570,15 +126237,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13099] = 5, + [12598] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2662), 7, + ACTIONS(2296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124586,7 +126253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2664), 39, + ACTIONS(2298), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124626,15 +126293,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13160] = 5, + [12659] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2676), 7, + ACTIONS(2300), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124642,7 +126309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2678), 39, + ACTIONS(2302), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124682,15 +126349,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13221] = 5, + [12720] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2686), 7, + ACTIONS(2304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124698,7 +126365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2688), 39, + ACTIONS(2306), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124738,15 +126405,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13282] = 5, + [12781] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2690), 7, + ACTIONS(2308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124754,7 +126421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2692), 39, + ACTIONS(2310), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124794,15 +126461,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13343] = 5, + [12842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1238), 2, + STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2694), 7, + ACTIONS(2316), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124810,7 +126477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2696), 39, + ACTIONS(2318), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124850,15 +126517,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13404] = 5, + [12903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 7, + ACTIONS(2324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124866,7 +126533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2712), 39, + ACTIONS(2326), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124906,15 +126573,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13465] = 5, + [12964] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 7, + ACTIONS(2328), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124922,7 +126589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2716), 39, + ACTIONS(2330), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124962,15 +126629,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13526] = 5, + [13025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 7, + ACTIONS(2332), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124978,7 +126645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2720), 39, + ACTIONS(2334), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125018,15 +126685,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13587] = 5, + [13086] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2724), 7, + ACTIONS(2336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125034,7 +126701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2726), 39, + ACTIONS(2338), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125074,15 +126741,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13648] = 5, + [13147] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2730), 7, + ACTIONS(2340), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125090,7 +126757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2732), 39, + ACTIONS(2342), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125130,15 +126797,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13709] = 5, + [13208] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2734), 7, + ACTIONS(2344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125146,7 +126813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2736), 39, + ACTIONS(2346), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125186,15 +126853,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13770] = 5, + [13269] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2738), 7, + ACTIONS(2352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125202,7 +126869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2740), 39, + ACTIONS(2354), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125242,15 +126909,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13831] = 5, + [13330] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2742), 7, + ACTIONS(2356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125258,7 +126925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2744), 39, + ACTIONS(2358), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125298,15 +126965,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13892] = 5, + [13391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(2746), 7, + ACTIONS(2360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125314,7 +126981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2748), 39, + ACTIONS(2362), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125354,15 +127021,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13953] = 5, + [13452] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 7, + ACTIONS(2364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125370,7 +127037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2752), 39, + ACTIONS(2366), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125410,15 +127077,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14014] = 5, + [13513] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2758), 7, + ACTIONS(2368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125426,7 +127093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2760), 39, + ACTIONS(2370), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125466,15 +127133,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14075] = 5, + [13574] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2762), 7, + ACTIONS(2376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125482,7 +127149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2764), 39, + ACTIONS(2378), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125522,15 +127189,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14136] = 5, + [13635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(2774), 7, + ACTIONS(2380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125538,7 +127205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2776), 39, + ACTIONS(2382), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125578,15 +127245,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14197] = 5, + [13696] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 7, + ACTIONS(2404), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125594,7 +127261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2792), 39, + ACTIONS(2406), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125634,15 +127301,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14258] = 5, + [13757] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 7, + ACTIONS(2416), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125650,7 +127317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2796), 39, + ACTIONS(2418), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125690,15 +127357,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14319] = 5, + [13818] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 7, + ACTIONS(2420), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125706,7 +127373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2800), 39, + ACTIONS(2422), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125746,15 +127413,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14380] = 5, + [13879] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 7, + ACTIONS(2424), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125762,7 +127429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2804), 39, + ACTIONS(2426), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125802,15 +127469,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14441] = 5, + [13940] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 7, + ACTIONS(3046), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125818,7 +127485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2808), 39, + ACTIONS(3048), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125858,15 +127525,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14502] = 5, + [14001] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 7, + ACTIONS(2432), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125874,7 +127541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2812), 39, + ACTIONS(2434), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125914,72 +127581,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14563] = 6, + [14062] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3670), 1, - anon_sym_LBRACE, - STATE(1258), 2, + STATE(1274), 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), 29, + ACTIONS(2436), 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, - [14626] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2438), 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, + [14123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(2830), 7, + ACTIONS(2440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125987,7 +127653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2832), 39, + ACTIONS(2442), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126027,15 +127693,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14687] = 5, + [14184] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + ACTIONS(3700), 1, + anon_sym_LBRACE, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2842), 7, + ACTIONS(3498), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3500), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [14247] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1277), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126043,7 +127766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2844), 39, + ACTIONS(2454), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126083,15 +127806,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14748] = 5, + [14308] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 7, + ACTIONS(2468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126099,7 +127822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2848), 39, + ACTIONS(2470), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126139,15 +127862,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14809] = 5, + [14369] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 7, + ACTIONS(2476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126155,7 +127878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2852), 39, + ACTIONS(2478), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126195,15 +127918,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14870] = 5, + [14430] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 7, + ACTIONS(1814), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126211,7 +127934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2856), 39, + ACTIONS(1816), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126251,15 +127974,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14931] = 5, + [14491] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1264), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(2858), 7, + ACTIONS(2484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126267,7 +127990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2860), 39, + ACTIONS(2486), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126307,15 +128030,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14992] = 5, + [14552] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2882), 7, + ACTIONS(2488), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126323,7 +128046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2884), 39, + ACTIONS(2490), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126363,15 +128086,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15053] = 5, + [14613] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2886), 7, + ACTIONS(2492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126379,7 +128102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2888), 39, + ACTIONS(2494), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126419,15 +128142,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15114] = 5, + [14674] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(2914), 7, + ACTIONS(2496), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126435,7 +128158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2916), 39, + ACTIONS(2498), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126475,15 +128198,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15175] = 5, + [14735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2922), 7, + ACTIONS(2500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126491,7 +128214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2924), 39, + ACTIONS(2502), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126531,15 +128254,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15236] = 5, + [14796] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(2930), 7, + ACTIONS(2508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126547,7 +128270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2932), 39, + ACTIONS(2510), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126587,15 +128310,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15297] = 5, + [14857] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(2934), 7, + ACTIONS(2518), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126603,7 +128326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2936), 39, + ACTIONS(2520), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126643,15 +128366,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15358] = 5, + [14918] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2942), 7, + ACTIONS(2530), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126659,7 +128382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2944), 39, + ACTIONS(2532), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126699,15 +128422,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15419] = 5, + [14979] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(2946), 7, + ACTIONS(2534), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126715,7 +128438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2948), 39, + ACTIONS(2536), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126755,15 +128478,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15480] = 5, + [15040] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2950), 7, + ACTIONS(2538), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126771,7 +128494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2952), 39, + ACTIONS(2540), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126811,15 +128534,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15541] = 5, + [15101] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2954), 7, + ACTIONS(2556), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126827,7 +128550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2956), 39, + ACTIONS(2558), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126867,15 +128590,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15602] = 5, + [15162] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(2958), 7, + ACTIONS(2562), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126883,7 +128606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2960), 39, + ACTIONS(2564), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126923,15 +128646,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15663] = 5, + [15223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(2962), 7, + ACTIONS(2566), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126939,7 +128662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2964), 39, + ACTIONS(2568), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126979,15 +128702,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15724] = 5, + [15284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(2966), 7, + ACTIONS(2574), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126995,7 +128718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2968), 39, + ACTIONS(2576), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127035,15 +128758,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15785] = 5, + [15345] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(2970), 7, + ACTIONS(2578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127051,7 +128774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2972), 39, + ACTIONS(2580), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127091,15 +128814,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15846] = 5, + [15406] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(2974), 7, + ACTIONS(2582), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127107,7 +128830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2976), 39, + ACTIONS(2584), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127147,15 +128870,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15907] = 5, + [15467] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(3006), 7, + ACTIONS(2608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127163,7 +128886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3008), 39, + ACTIONS(2610), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127203,15 +128926,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15968] = 5, + [15528] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(3014), 7, + ACTIONS(2616), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127219,7 +128942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3016), 39, + ACTIONS(2618), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127259,15 +128982,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16029] = 5, + [15589] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(3674), 15, + ACTIONS(3704), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -127283,7 +129006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3672), 31, + ACTIONS(3702), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127315,15 +129038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16090] = 5, + [15650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 15, + ACTIONS(3708), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -127339,7 +129062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3676), 31, + ACTIONS(3706), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127371,15 +129094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16151] = 5, + [15711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(1806), 7, + ACTIONS(2624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127387,7 +129110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1808), 39, + ACTIONS(2626), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127427,15 +129150,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16212] = 5, + [15772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(1810), 7, + ACTIONS(2628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127443,7 +129166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1812), 39, + ACTIONS(2630), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127483,15 +129206,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16273] = 5, + [15833] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(1818), 7, + ACTIONS(2636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127499,7 +129222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1820), 39, + ACTIONS(2638), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127539,15 +129262,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16334] = 5, + [15894] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 7, + ACTIONS(2656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127555,7 +129278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1824), 39, + ACTIONS(2658), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127595,15 +129318,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16395] = 5, + [15955] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(1826), 7, + ACTIONS(2664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127611,7 +129334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1828), 39, + ACTIONS(2666), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127651,15 +129374,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16456] = 5, + [16016] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(1830), 7, + ACTIONS(2668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127667,7 +129390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1832), 39, + ACTIONS(2670), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127707,15 +129430,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16517] = 5, + [16077] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(1834), 7, + ACTIONS(2672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127723,7 +129446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1836), 39, + ACTIONS(2674), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127763,15 +129486,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16578] = 5, + [16138] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(2676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127779,7 +129502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1840), 39, + ACTIONS(2678), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127819,15 +129542,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16639] = 5, + [16199] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(2680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127835,7 +129558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1844), 39, + ACTIONS(2682), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127875,15 +129598,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16700] = 5, + [16260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(2684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127891,7 +129614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1848), 39, + ACTIONS(2686), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127931,15 +129654,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16761] = 5, + [16321] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(2708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127947,7 +129670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1852), 39, + ACTIONS(2710), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127987,15 +129710,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16822] = 5, + [16382] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(2712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128003,7 +129726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1856), 39, + ACTIONS(2714), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128043,15 +129766,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16883] = 5, + [16443] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(2716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128059,7 +129782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1860), 39, + ACTIONS(2718), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128099,15 +129822,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16944] = 5, + [16504] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(2720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128115,7 +129838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1864), 39, + ACTIONS(2722), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128155,15 +129878,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17005] = 5, + [16565] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(2724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128171,7 +129894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1868), 39, + ACTIONS(2726), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128211,15 +129934,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17066] = 5, + [16626] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(1870), 7, + ACTIONS(2728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128227,7 +129950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1872), 39, + ACTIONS(2730), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128267,15 +129990,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17127] = 5, + [16687] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(1874), 7, + ACTIONS(2732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128283,7 +130006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1876), 39, + ACTIONS(2734), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128323,15 +130046,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17188] = 5, + [16748] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(1878), 7, + ACTIONS(2804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128339,7 +130062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1880), 39, + ACTIONS(2806), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128379,15 +130102,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17249] = 5, + [16809] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(1882), 7, + ACTIONS(2808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128395,7 +130118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1884), 39, + ACTIONS(2810), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128435,15 +130158,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17310] = 5, + [16870] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(1886), 7, + ACTIONS(2812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128451,7 +130174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1888), 39, + ACTIONS(2814), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128491,15 +130214,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17371] = 5, + [16931] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(1890), 7, + ACTIONS(2820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128507,7 +130230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1892), 39, + ACTIONS(2822), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128547,15 +130270,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17432] = 5, + [16992] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(1898), 7, + ACTIONS(2918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128563,7 +130286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1900), 39, + ACTIONS(2920), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128603,15 +130326,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17493] = 5, + [17053] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(1906), 7, + ACTIONS(2930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128619,7 +130342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1908), 39, + ACTIONS(2932), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128659,15 +130382,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17554] = 5, + [17114] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(1914), 7, + ACTIONS(2938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128675,7 +130398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1916), 39, + ACTIONS(2940), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128715,15 +130438,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17615] = 5, + [17175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(1918), 7, + ACTIONS(2942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128731,7 +130454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1920), 39, + ACTIONS(2944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128771,15 +130494,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17676] = 5, + [17236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(1922), 7, + ACTIONS(2946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128787,7 +130510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1924), 39, + ACTIONS(2948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128827,15 +130550,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17737] = 5, + [17297] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(1926), 7, + ACTIONS(2950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128843,7 +130566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1928), 39, + ACTIONS(2952), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128883,15 +130606,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17798] = 5, + [17358] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(1930), 7, + ACTIONS(2954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128899,7 +130622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1932), 39, + ACTIONS(2956), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128939,15 +130662,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17859] = 5, + [17419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(1934), 7, + ACTIONS(2958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128955,7 +130678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1936), 39, + ACTIONS(2960), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128995,15 +130718,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17920] = 5, + [17480] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(1938), 7, + ACTIONS(2962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129011,7 +130734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1940), 39, + ACTIONS(2964), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129051,15 +130774,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17981] = 5, + [17541] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(1942), 7, + ACTIONS(2966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129067,7 +130790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1944), 39, + ACTIONS(2968), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129107,15 +130830,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18042] = 5, + [17602] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(1946), 7, + ACTIONS(2970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129123,7 +130846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1948), 39, + ACTIONS(2972), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129163,15 +130886,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18103] = 5, + [17663] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(1950), 7, + ACTIONS(2978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129179,7 +130902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1952), 39, + ACTIONS(2980), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129219,15 +130942,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18164] = 5, + [17724] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(1954), 7, + ACTIONS(2986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129235,7 +130958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1956), 39, + ACTIONS(2988), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129275,15 +130998,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18225] = 5, + [17785] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(1958), 7, + ACTIONS(2990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129291,7 +131014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1960), 39, + ACTIONS(2992), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129331,15 +131054,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18286] = 5, + [17846] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(1962), 7, + ACTIONS(2998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129347,7 +131070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1964), 39, + ACTIONS(3000), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129387,15 +131110,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18347] = 5, + [17907] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(1966), 7, + ACTIONS(3002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129403,7 +131126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1968), 39, + ACTIONS(3004), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129443,15 +131166,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18408] = 5, + [17968] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(1970), 7, + ACTIONS(3006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129459,7 +131182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1972), 39, + ACTIONS(3008), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129499,15 +131222,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18469] = 5, + [18029] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(1974), 7, + ACTIONS(3010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129515,7 +131238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1976), 39, + ACTIONS(3012), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129555,15 +131278,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18530] = 5, + [18090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(1978), 7, + ACTIONS(3018), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129571,7 +131294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1980), 39, + ACTIONS(3020), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129611,15 +131334,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18591] = 5, + [18151] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(1982), 7, + ACTIONS(3022), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129627,7 +131350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1984), 39, + ACTIONS(3024), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129667,15 +131390,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18652] = 5, + [18212] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(1986), 7, + ACTIONS(3026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129683,7 +131406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1988), 39, + ACTIONS(3028), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129723,15 +131446,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18713] = 5, + [18273] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(1990), 7, + ACTIONS(3034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129739,7 +131462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1992), 39, + ACTIONS(3036), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129779,15 +131502,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18774] = 5, + [18334] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(1994), 7, + ACTIONS(3038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129795,7 +131518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1996), 39, + ACTIONS(3040), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129835,15 +131558,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18835] = 5, + [18395] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(1998), 7, + ACTIONS(2480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129851,7 +131574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2000), 39, + ACTIONS(2482), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129891,15 +131614,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18896] = 5, + [18456] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2002), 7, + ACTIONS(2428), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129907,7 +131630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2004), 39, + ACTIONS(2430), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129947,15 +131670,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18957] = 5, + [18517] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2006), 7, + ACTIONS(2542), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129963,7 +131686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2008), 39, + ACTIONS(2544), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130003,15 +131726,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19018] = 5, + [18578] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2010), 7, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130019,7 +131742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2012), 39, + ACTIONS(1820), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130059,15 +131782,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19079] = 5, + [18639] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2014), 7, + ACTIONS(1822), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130075,7 +131798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2016), 39, + ACTIONS(1824), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130115,15 +131838,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19140] = 5, + [18700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2018), 7, + ACTIONS(1826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130131,7 +131854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2020), 39, + ACTIONS(1828), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130171,15 +131894,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19201] = 5, + [18761] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2022), 7, + ACTIONS(1830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130187,7 +131910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2024), 39, + ACTIONS(1832), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130227,15 +131950,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19262] = 5, + [18822] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 15, + ACTIONS(3712), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -130251,7 +131974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3680), 31, + ACTIONS(3710), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130283,15 +132006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19323] = 5, + [18883] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 15, + ACTIONS(3716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -130307,7 +132030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3684), 31, + ACTIONS(3714), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130339,15 +132062,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19384] = 5, + [18944] = 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(2034), 7, + ACTIONS(1846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130355,7 +132078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2036), 39, + ACTIONS(1848), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130395,15 +132118,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19445] = 5, + [19005] = 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(2038), 7, + ACTIONS(1850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130411,7 +132134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2040), 39, + ACTIONS(1852), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130451,15 +132174,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19506] = 5, + [19066] = 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(2042), 7, + ACTIONS(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130467,7 +132190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2044), 39, + ACTIONS(1856), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130507,15 +132230,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19567] = 5, + [19127] = 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(2046), 7, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130523,7 +132246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2048), 39, + ACTIONS(1860), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130563,15 +132286,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19628] = 5, + [19188] = 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(2050), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130579,7 +132302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2052), 39, + ACTIONS(1864), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130619,15 +132342,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19689] = 5, + [19249] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2054), 7, + ACTIONS(1866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130635,7 +132358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2056), 39, + ACTIONS(1868), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130675,15 +132398,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19750] = 5, + [19310] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2058), 7, + ACTIONS(1870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130691,7 +132414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2060), 39, + ACTIONS(1872), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130731,15 +132454,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19811] = 5, + [19371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(2062), 7, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130747,7 +132470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2064), 39, + ACTIONS(1876), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130787,15 +132510,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19872] = 5, + [19432] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(2066), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130803,7 +132526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2068), 39, + ACTIONS(1880), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130843,15 +132566,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19933] = 5, + [19493] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2070), 7, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130859,7 +132582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2072), 39, + ACTIONS(1884), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130899,15 +132622,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19994] = 5, + [19554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2074), 7, + ACTIONS(1890), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130915,7 +132638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2076), 39, + ACTIONS(1892), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130955,15 +132678,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20055] = 5, + [19615] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2082), 7, + ACTIONS(1898), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130971,7 +132694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2084), 39, + ACTIONS(1900), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131011,15 +132734,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20116] = 5, + [19676] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131027,7 +132750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2088), 39, + ACTIONS(1904), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131067,15 +132790,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20177] = 5, + [19737] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(2090), 7, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131083,7 +132806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2092), 39, + ACTIONS(1908), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131123,15 +132846,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20238] = 5, + [19798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(2094), 7, + ACTIONS(1910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131139,7 +132862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2096), 39, + ACTIONS(1912), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131179,15 +132902,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20299] = 5, + [19859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 7, + ACTIONS(1914), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131195,7 +132918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2100), 39, + ACTIONS(1916), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131235,15 +132958,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20360] = 5, + [19920] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1353), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(2102), 7, + ACTIONS(1918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131251,7 +132974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2104), 39, + ACTIONS(1920), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131291,15 +133014,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20421] = 5, + [19981] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(2106), 7, + ACTIONS(1922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131307,7 +133030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2108), 39, + ACTIONS(1924), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131347,15 +133070,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20482] = 5, + [20042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(2110), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131363,7 +133086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2112), 39, + ACTIONS(1928), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131403,15 +133126,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20543] = 5, + [20103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 7, + ACTIONS(1930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131419,7 +133142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2116), 39, + ACTIONS(1932), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131459,15 +133182,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20604] = 5, + [20164] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131475,7 +133198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2120), 39, + ACTIONS(1936), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131515,15 +133238,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20665] = 5, + [20225] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(2122), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131531,7 +133254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2124), 39, + ACTIONS(1940), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131571,15 +133294,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20726] = 5, + [20286] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(2126), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131587,7 +133310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2128), 39, + ACTIONS(1944), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131627,15 +133350,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20787] = 5, + [20347] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(2130), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131643,7 +133366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2132), 39, + ACTIONS(1948), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131683,15 +133406,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20848] = 5, + [20408] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(2134), 7, + ACTIONS(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131699,7 +133422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2136), 39, + ACTIONS(1952), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131739,15 +133462,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20909] = 5, + [20469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(2138), 7, + ACTIONS(1954), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131755,7 +133478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2140), 39, + ACTIONS(1956), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131795,15 +133518,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20970] = 5, + [20530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 7, + ACTIONS(1958), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131811,7 +133534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2144), 39, + ACTIONS(1960), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131851,15 +133574,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21031] = 5, + [20591] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(2146), 7, + ACTIONS(1962), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131867,7 +133590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2148), 39, + ACTIONS(1964), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131907,15 +133630,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21092] = 5, + [20652] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(2150), 7, + ACTIONS(1966), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131923,7 +133646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2152), 39, + ACTIONS(1968), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131963,15 +133686,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21153] = 5, + [20713] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(2154), 7, + ACTIONS(1970), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131979,7 +133702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2156), 39, + ACTIONS(1972), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132019,15 +133742,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21214] = 5, + [20774] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(1978), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132035,7 +133758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2160), 39, + ACTIONS(1980), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132075,15 +133798,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21275] = 5, + [20835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(2162), 7, + ACTIONS(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132091,7 +133814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2164), 39, + ACTIONS(1984), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132131,15 +133854,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21336] = 5, + [20896] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 7, + ACTIONS(1986), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132147,7 +133870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2168), 39, + ACTIONS(1988), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132187,15 +133910,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21397] = 5, + [20957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(2170), 7, + ACTIONS(1990), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132203,7 +133926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2172), 39, + ACTIONS(1992), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132243,15 +133966,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21458] = 5, + [21018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(2174), 7, + ACTIONS(1994), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132259,7 +133982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2176), 39, + ACTIONS(1996), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132299,15 +134022,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21519] = 5, + [21079] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(2178), 7, + ACTIONS(1998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132315,7 +134038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2180), 39, + ACTIONS(2000), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132355,15 +134078,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21580] = 5, + [21140] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(2182), 7, + ACTIONS(2002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132371,7 +134094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2184), 39, + ACTIONS(2004), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132411,15 +134134,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21641] = 5, + [21201] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(2186), 7, + ACTIONS(2006), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132427,7 +134150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2188), 39, + ACTIONS(2008), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132467,15 +134190,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21702] = 5, + [21262] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(2190), 7, + ACTIONS(2010), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132483,7 +134206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2192), 39, + ACTIONS(2012), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132523,15 +134246,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21763] = 5, + [21323] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(2194), 7, + ACTIONS(2014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132539,7 +134262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2196), 39, + ACTIONS(2016), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132579,15 +134302,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21824] = 5, + [21384] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1377), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(2198), 7, + ACTIONS(2018), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132595,7 +134318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2200), 39, + ACTIONS(2020), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132635,15 +134358,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21885] = 5, + [21445] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(2202), 7, + ACTIONS(2022), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132651,7 +134374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2204), 39, + ACTIONS(2024), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132691,15 +134414,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21946] = 5, + [21506] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(2206), 7, + ACTIONS(2026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132707,7 +134430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2208), 39, + ACTIONS(2028), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132747,15 +134470,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22007] = 5, + [21567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(2210), 7, + ACTIONS(2030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132763,7 +134486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2212), 39, + ACTIONS(2032), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132803,15 +134526,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22068] = 5, + [21628] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(2214), 7, + ACTIONS(2034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132819,7 +134542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2216), 39, + ACTIONS(2036), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132859,15 +134582,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22129] = 5, + [21689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(2218), 7, + ACTIONS(2038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132875,7 +134598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2220), 39, + ACTIONS(2040), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132915,15 +134638,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22190] = 5, + [21750] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(2222), 7, + ACTIONS(2042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132931,7 +134654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2224), 39, + ACTIONS(2044), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132971,15 +134694,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22251] = 5, + [21811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(2046), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132987,7 +134710,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, @@ -133027,15 +134750,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22312] = 5, + [21872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(2230), 7, + ACTIONS(2050), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133043,7 +134766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2232), 39, + ACTIONS(2052), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133083,15 +134806,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22373] = 5, + [21933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 7, + ACTIONS(2054), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133099,7 +134822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2236), 39, + ACTIONS(2056), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133139,15 +134862,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22434] = 5, + [21994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(2238), 7, + ACTIONS(2058), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133155,7 +134878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2240), 39, + ACTIONS(2060), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133195,15 +134918,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22495] = 5, + [22055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(2242), 7, + ACTIONS(2066), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133211,7 +134934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2244), 39, + ACTIONS(2068), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133251,15 +134974,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22556] = 5, + [22116] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2246), 7, + ACTIONS(2070), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133267,7 +134990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2248), 39, + ACTIONS(2072), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133307,15 +135030,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22617] = 5, + [22177] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(2250), 7, + ACTIONS(2074), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133323,7 +135046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2252), 39, + ACTIONS(2076), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133363,15 +135086,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22678] = 5, + [22238] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(2254), 7, + ACTIONS(2078), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133379,7 +135102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2256), 39, + ACTIONS(2080), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133419,19 +135142,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22739] = 7, + [22299] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(1458), 1, + STATE(1428), 1, sym_label, - STATE(1392), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3690), 15, + ACTIONS(3720), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133447,7 +135170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3688), 29, + ACTIONS(3718), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133477,31 +135200,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [22804] = 5, + [22364] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(2982), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(2612), 12, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + anon_sym_SQUOTE, sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2984), 31, + ACTIONS(2614), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133519,43 +135239,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, anon_sym_gen, + anon_sym_impl, + anon_sym_pub, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22865] = 5, + [22425] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(3694), 13, - anon_sym_SEMI, + ACTIONS(2114), 15, + sym__raw_string_literal_start, + sym_float_literal, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, anon_sym_AMP, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(3692), 33, + ACTIONS(2116), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133573,31 +135298,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_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, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [22926] = 5, + [22486] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(3698), 15, + ACTIONS(3724), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -133613,7 +135336,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3696), 31, + ACTIONS(3722), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133645,15 +135368,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22987] = 5, + [22547] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(3702), 15, + ACTIONS(3728), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -133669,7 +135392,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3700), 31, + ACTIONS(3726), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133701,15 +135424,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23048] = 5, + [22608] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 7, + ACTIONS(2612), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133717,7 +135440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2784), 39, + ACTIONS(2614), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133757,15 +135480,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23109] = 5, + [22669] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 15, + ACTIONS(2612), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -133781,7 +135504,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2784), 31, + ACTIONS(2614), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133813,19 +135536,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23170] = 7, + [22730] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, + ACTIONS(3732), 1, anon_sym_LPAREN, - STATE(1510), 1, + STATE(1523), 1, sym_arguments, - STATE(1399), 2, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(3708), 15, + ACTIONS(3734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133841,7 +135564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3704), 29, + ACTIONS(3730), 29, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -133871,29 +135594,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23235] = 12, + [22795] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + ACTIONS(1369), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, + ACTIONS(3416), 1, anon_sym_BANG, - ACTIONS(3346), 1, + ACTIONS(3418), 1, anon_sym_COLON_COLON, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(3710), 1, + ACTIONS(3736), 1, anon_sym_move, - STATE(485), 1, + STATE(484), 1, sym_block, - STATE(3717), 1, + STATE(3740), 1, sym_label, - STATE(1400), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133909,7 +135632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 24, + ACTIONS(3412), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, @@ -133934,17 +135657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_as, - [23310] = 6, + [22870] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3712), 1, + ACTIONS(3738), 1, anon_sym_COLON_COLON, - STATE(1401), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133960,7 +135683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(1451), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133991,71 +135714,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [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, + [22933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(2814), 7, + ACTIONS(2444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134063,7 +135730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2816), 39, + ACTIONS(2446), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134103,15 +135770,77 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23495] = 5, + [22994] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(3740), 1, + anon_sym_BANG, + ACTIONS(3742), 1, + anon_sym_COLON_COLON, + ACTIONS(3744), 1, + anon_sym_move, + STATE(1779), 1, + sym_block, + STATE(3741), 1, + sym_label, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(3414), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3412), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [23068] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1421), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134127,7 +135856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 30, + ACTIONS(3746), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134158,15 +135887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23555] = 5, + [23128] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134182,7 +135911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 30, + ACTIONS(3750), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134213,15 +135942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23615] = 5, + [23188] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(1483), 15, + ACTIONS(3756), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134237,7 +135966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1481), 30, + ACTIONS(3754), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134268,15 +135997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23675] = 5, + [23248] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(1495), 15, + ACTIONS(907), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134292,7 +136021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1493), 30, + ACTIONS(909), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134323,15 +136052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23735] = 5, + [23308] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134347,7 +136076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1467), 30, + ACTIONS(3758), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134378,15 +136107,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23795] = 5, + [23368] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 15, + ACTIONS(3764), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134402,7 +136131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1529), 30, + ACTIONS(3762), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134433,15 +136162,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23855] = 5, + [23428] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(1515), 15, + ACTIONS(3768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134457,7 +136186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1513), 30, + ACTIONS(3766), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134488,15 +136217,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23915] = 5, + [23488] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(3724), 15, + ACTIONS(3772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134512,7 +136241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3722), 30, + ACTIONS(3770), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134543,15 +136272,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23975] = 5, + [23548] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 15, + ACTIONS(1037), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134567,7 +136296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1413), 30, + ACTIONS(1039), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134598,15 +136327,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24035] = 5, + [23608] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + ACTIONS(3776), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(1389), 15, + ACTIONS(3778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134622,13 +136354,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1387), 30, + ACTIONS(3774), 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, @@ -134650,18 +136381,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, - [24095] = 5, + [23670] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(1491), 15, + ACTIONS(3778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134677,7 +136407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 30, + ACTIONS(3774), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134708,15 +136438,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24155] = 5, + [23730] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, + ACTIONS(3782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134732,7 +136462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3726), 30, + ACTIONS(3780), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134763,15 +136493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24215] = 5, + [23790] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3732), 15, + ACTIONS(3786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134787,7 +136517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 30, + ACTIONS(3784), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134818,15 +136548,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24275] = 5, + [23850] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1417), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(3736), 15, + ACTIONS(3792), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134840,17 +136576,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(3734), 30, + ACTIONS(3788), 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, @@ -134873,15 +136606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24335] = 5, + [23916] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1418), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3740), 15, + ACTIONS(3800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134897,7 +136630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 30, + ACTIONS(3798), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134928,21 +136661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24395] = 8, + [23976] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - STATE(1419), 2, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 14, + ACTIONS(1517), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134956,14 +136683,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(3742), 28, + ACTIONS(1515), 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, @@ -134986,15 +136716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24461] = 5, + [24036] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1420), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(3754), 15, + ACTIONS(3804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135010,7 +136740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3752), 30, + ACTIONS(3802), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135041,15 +136771,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24521] = 5, + [24096] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3758), 15, + ACTIONS(3808), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135063,17 +136799,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(3756), 30, + ACTIONS(3806), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -135096,15 +136829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24581] = 5, + [24162] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1422), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(3812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135120,7 +136853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3760), 30, + ACTIONS(3810), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135151,15 +136884,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24641] = 5, + [24222] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(3766), 15, + ACTIONS(3816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135175,7 +136908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3764), 30, + ACTIONS(3814), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135206,15 +136939,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24701] = 5, + [24282] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3770), 15, + ACTIONS(1425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135230,7 +136963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3768), 30, + ACTIONS(1423), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135261,15 +136994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24761] = 5, + [24342] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(997), 15, + ACTIONS(3820), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135285,7 +137018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(999), 30, + ACTIONS(3818), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135316,15 +137049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24821] = 5, + [24402] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3774), 15, + ACTIONS(3824), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135340,7 +137073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3772), 30, + ACTIONS(3822), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135371,15 +137104,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24881] = 5, + [24462] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135395,7 +137128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3776), 30, + ACTIONS(3826), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135426,19 +137159,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24941] = 7, + [24522] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_BANG, - ACTIONS(3346), 1, - anon_sym_COLON_COLON, - STATE(1428), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135454,12 +137183,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 28, + ACTIONS(3830), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -135481,17 +137211,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, - [25005] = 5, + [24582] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3451), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135507,7 +137238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3449), 30, + ACTIONS(1427), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135538,15 +137269,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25065] = 5, + [24642] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 15, + ACTIONS(3836), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135560,17 +137297,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(3441), 30, + ACTIONS(3834), 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, @@ -135593,15 +137327,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25125] = 5, + [24708] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3840), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135617,7 +137351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 30, + ACTIONS(3838), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135648,15 +137382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25185] = 5, + [24768] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(3520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135672,7 +137406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 30, + ACTIONS(3518), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135703,15 +137437,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25245] = 5, + [24828] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3844), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135727,7 +137461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1471), 30, + ACTIONS(3842), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135758,15 +137492,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25305] = 5, + [24888] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 15, + ACTIONS(1537), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135782,7 +137516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3784), 30, + ACTIONS(1535), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135813,15 +137547,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25365] = 5, + [24948] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 15, + ACTIONS(1497), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135837,7 +137571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1421), 30, + ACTIONS(1495), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135868,15 +137602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25425] = 5, + [25008] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(1501), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135892,7 +137626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 30, + ACTIONS(1499), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135923,15 +137657,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25485] = 5, + [25068] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3790), 15, + ACTIONS(1505), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135947,7 +137681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3788), 30, + ACTIONS(1503), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135978,15 +137712,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25545] = 5, + [25128] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(1527), 15, + ACTIONS(3848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136002,7 +137736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1525), 30, + ACTIONS(3846), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136033,15 +137767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25605] = 5, + [25188] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3852), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136057,7 +137791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(3850), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136088,15 +137822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25665] = 5, + [25248] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3794), 15, + ACTIONS(1493), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136112,7 +137846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3792), 30, + ACTIONS(1491), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136143,15 +137877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25725] = 5, + [25308] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3798), 15, + ACTIONS(3856), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136167,7 +137901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3796), 30, + ACTIONS(3854), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136198,15 +137932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25785] = 5, + [25368] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3802), 15, + ACTIONS(3528), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136222,7 +137956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3800), 30, + ACTIONS(3526), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136253,88 +137987,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25845] = 23, - ACTIONS(29), 1, - anon_sym_LT, + [25428] = 5, 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, + STATE(1460), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1455), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3395), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3397), 1, - anon_sym_COLON_COLON, - ACTIONS(3399), 1, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1453), 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, - ACTIONS(3403), 1, - anon_sym_for, - ACTIONS(3407), 1, - sym_metavariable, - STATE(2524), 1, - sym_where_predicate, - STATE(2765), 1, - sym_scoped_type_identifier, - STATE(2896), 1, - sym_generic_type, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - STATE(1443), 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, - STATE(3174), 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, - [25941] = 5, + anon_sym_as, + anon_sym_else, + [25488] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 15, + ACTIONS(3860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136350,7 +138066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1433), 30, + ACTIONS(3858), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136381,15 +138097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26001] = 5, + [25548] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, + ACTIONS(3864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136405,7 +138121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1437), 30, + ACTIONS(3862), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136436,15 +138152,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26061] = 5, + [25608] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3806), 15, + ACTIONS(3868), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136460,7 +138176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3804), 30, + ACTIONS(3866), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136491,15 +138207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26121] = 5, + [25668] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(1017), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136515,7 +138231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1019), 30, + ACTIONS(1457), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136546,15 +138262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26181] = 5, + [25728] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(1385), 15, + ACTIONS(3872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136570,7 +138286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1383), 30, + ACTIONS(3870), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136601,15 +138317,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26241] = 5, + [25788] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, + ACTIONS(3876), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136625,7 +138341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3808), 30, + ACTIONS(3874), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136656,15 +138372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26301] = 5, + [25848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3814), 15, + ACTIONS(1041), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136680,7 +138396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3812), 30, + ACTIONS(1043), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136711,15 +138427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26361] = 5, + [25908] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3818), 15, + ACTIONS(1437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136735,7 +138451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3816), 30, + ACTIONS(1435), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136766,15 +138482,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26421] = 5, + [25968] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3822), 15, + ACTIONS(3880), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136790,7 +138506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3820), 30, + ACTIONS(3878), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136821,15 +138537,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26481] = 5, + [26028] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(1393), 15, + ACTIONS(1527), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136845,7 +138561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1391), 30, + ACTIONS(1525), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136876,15 +138592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26541] = 5, + [26088] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3826), 15, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136900,7 +138616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3824), 30, + ACTIONS(1485), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136931,15 +138647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26601] = 5, + [26148] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3830), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136955,7 +138671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3828), 30, + ACTIONS(1451), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136986,15 +138702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26661] = 5, + [26208] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(3834), 15, + ACTIONS(3884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137010,7 +138726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3832), 30, + ACTIONS(3882), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137041,15 +138757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26721] = 5, + [26268] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(3888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137065,7 +138781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3836), 30, + ACTIONS(3886), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137096,15 +138812,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26781] = 5, + [26328] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3842), 15, + ACTIONS(3892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137120,7 +138836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 30, + ACTIONS(3890), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137151,18 +138867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26841] = 6, + [26388] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3846), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1459), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137178,12 +138891,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 28, + ACTIONS(3894), 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, @@ -137205,17 +138919,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, - [26903] = 5, + [26448] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(3900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137231,7 +138946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 30, + ACTIONS(3898), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137262,15 +138977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26963] = 5, + [26508] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(1443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137286,7 +139001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 30, + ACTIONS(1441), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137317,15 +139032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27023] = 5, + [26568] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(1509), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137341,7 +139056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 30, + ACTIONS(1507), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137372,15 +139087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27083] = 5, + [26628] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137396,7 +139111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(3902), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137427,15 +139142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27143] = 5, + [26688] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, + ACTIONS(3524), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137451,7 +139166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1047), 30, + ACTIONS(3522), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137482,70 +139197,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27203] = 5, + [26748] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3856), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3854), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1601), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + ACTIONS(3302), 1, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27263] = 5, + ACTIONS(3459), 1, + sym_identifier, + ACTIONS(3463), 1, + anon_sym_LPAREN, + ACTIONS(3465), 1, + anon_sym_STAR, + ACTIONS(3469), 1, + anon_sym_AMP, + ACTIONS(3471), 1, + anon_sym_COLON_COLON, + ACTIONS(3475), 1, + anon_sym_for, + ACTIONS(3479), 1, + sym_metavariable, + STATE(2577), 1, + sym_where_predicate, + STATE(2833), 1, + sym_scoped_type_identifier, + STATE(3139), 1, + sym_generic_type, + STATE(3588), 1, + sym_scoped_identifier, + STATE(3594), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_generic_type_with_turbofish, + STATE(1482), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3473), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3477), 3, + sym_self, + sym_super, + sym_crate, + STATE(3405), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3467), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [26844] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 15, + ACTIONS(3534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137561,7 +139294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1417), 30, + ACTIONS(3532), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137592,23 +139325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27323] = 9, + [26904] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - STATE(1467), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 14, + ACTIONS(919), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137622,14 +139347,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(3858), 27, + 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, @@ -137650,16 +139378,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, - [27391] = 5, + [26964] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 15, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137675,7 +139404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1497), 30, + ACTIONS(3906), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137706,15 +139435,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27451] = 5, + [27024] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(1519), 15, + ACTIONS(1463), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137730,7 +139459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1517), 30, + ACTIONS(1461), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137761,15 +139490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27511] = 5, + [27084] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 15, + ACTIONS(1479), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137785,7 +139514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3864), 30, + ACTIONS(1477), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137816,15 +139545,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27571] = 5, + [27144] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + ACTIONS(3910), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3870), 15, + ACTIONS(3778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137840,13 +139572,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3868), 30, + ACTIONS(3774), 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, @@ -137868,18 +139599,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, - [27631] = 5, + [27206] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(3874), 15, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137895,7 +139625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3872), 30, + ACTIONS(1481), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137926,15 +139656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27691] = 5, + [27266] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(993), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137950,7 +139680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(995), 30, + ACTIONS(1451), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137981,15 +139711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27751] = 5, + [27326] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3878), 15, + ACTIONS(975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138005,7 +139735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3876), 30, + ACTIONS(977), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138036,15 +139766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27811] = 5, + [27386] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3882), 15, + ACTIONS(3914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138060,7 +139790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3880), 30, + ACTIONS(3912), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138091,18 +139821,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27871] = 6, + [27446] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3884), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1476), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138118,12 +139845,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 28, + ACTIONS(1531), 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, @@ -138145,17 +139873,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, - [27933] = 5, + [27506] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3918), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138171,7 +139900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 30, + ACTIONS(3916), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138202,15 +139931,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27993] = 5, + [27566] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1478), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(3922), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138224,17 +139961,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(3886), 30, + ACTIONS(3920), 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, @@ -138255,17 +139989,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, - [28053] = 5, + [27634] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3892), 15, + ACTIONS(1467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138281,7 +140014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3890), 30, + ACTIONS(1465), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138312,21 +140045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28113] = 8, + [27694] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - STATE(1480), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 14, + ACTIONS(1471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138340,14 +140067,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(3894), 28, + ACTIONS(1469), 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, @@ -138370,15 +140100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28179] = 5, + [27754] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(1421), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138394,7 +140124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 30, + ACTIONS(1419), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138425,15 +140155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28239] = 5, + [27814] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1482), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(1475), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138449,7 +140179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 30, + ACTIONS(1473), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138480,15 +140210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28299] = 5, + [27874] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(3928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138504,7 +140234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 30, + ACTIONS(3926), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138535,15 +140265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28359] = 5, + [27934] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(3932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138559,7 +140289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 30, + ACTIONS(3930), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138590,15 +140320,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28419] = 5, + [27994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3912), 15, + ACTIONS(3936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138614,7 +140344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3910), 30, + ACTIONS(3934), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138645,15 +140375,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28479] = 5, + [28054] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3431), 15, + ACTIONS(3940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138669,7 +140399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3429), 30, + ACTIONS(3938), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138700,15 +140430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28539] = 5, + [28114] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1487), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3916), 15, + ACTIONS(3944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138724,7 +140454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3914), 30, + ACTIONS(3942), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138755,15 +140485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28599] = 5, + [28174] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1488), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3920), 15, + ACTIONS(3948), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138779,7 +140509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3918), 30, + ACTIONS(3946), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138810,15 +140540,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28659] = 5, + [28234] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 15, + ACTIONS(3952), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138834,7 +140564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3922), 30, + ACTIONS(3950), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138865,15 +140595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28719] = 5, + [28294] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(3928), 15, + ACTIONS(3956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138889,7 +140619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3926), 30, + ACTIONS(3954), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138920,15 +140650,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28779] = 5, + [28354] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, + ACTIONS(3416), 1, + anon_sym_BANG, + ACTIONS(3418), 1, + anon_sym_COLON_COLON, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(1049), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138944,13 +140678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1051), 30, + ACTIONS(3412), 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, @@ -138972,18 +140705,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, - [28839] = 5, + [28418] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1492), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(1507), 15, + ACTIONS(1433), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138999,7 +140731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1505), 30, + ACTIONS(1431), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139030,15 +140762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28899] = 5, + [28478] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1493), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(1511), 15, + ACTIONS(3960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139054,7 +140786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1509), 30, + ACTIONS(3958), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139085,70 +140817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28959] = 5, + [28538] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, - sym_line_comment, - sym_block_comment, - 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, - [29019] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1495), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139164,7 +140841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1395), 30, + ACTIONS(1451), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139195,70 +140872,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29079] = 5, + [28598] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1496), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3964), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_DOT, + anon_sym_DOT_DOT, + 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_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, - 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, - [29139] = 5, + anon_sym_as, + anon_sym_else, + [28658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1497), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(911), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139274,7 +140951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3930), 30, + ACTIONS(913), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139305,29 +140982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29199] = 12, + [28718] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3934), 1, - anon_sym_BANG, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - ACTIONS(3938), 1, - anon_sym_move, - STATE(1733), 1, - sym_block, - STATE(3718), 1, - sym_label, - STATE(1498), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139343,10 +141006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 23, + ACTIONS(3966), 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, @@ -139366,16 +141033,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, - [29273] = 5, + anon_sym_else, + [28778] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1499), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139391,7 +141061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1521), 30, + ACTIONS(1451), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139422,15 +141092,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29333] = 5, + [28838] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1500), 2, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(3942), 15, + ACTIONS(3972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139446,7 +141116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3940), 30, + ACTIONS(3970), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139477,15 +141147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29393] = 5, + [28898] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1501), 2, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139501,7 +141171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(3974), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139532,15 +141202,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29453] = 5, + [28958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1502), 2, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(1003), 15, + ACTIONS(3980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139556,7 +141226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1005), 30, + ACTIONS(3978), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139587,15 +141257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29513] = 5, + [29018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1503), 2, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(3984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139611,7 +141281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3944), 30, + ACTIONS(3982), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139642,15 +141312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29573] = 5, + [29078] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1504), 2, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139666,7 +141336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(3986), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139697,21 +141367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29633] = 8, + [29138] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - STATE(1505), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(3950), 14, + ACTIONS(3992), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139725,14 +141389,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(3948), 28, + 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, @@ -139755,15 +141422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29699] = 5, + [29198] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1506), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3954), 15, + ACTIONS(3996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139779,7 +141446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3952), 30, + ACTIONS(3994), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139810,21 +141477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29759] = 8, + [29258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - STATE(1507), 2, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3958), 14, + ACTIONS(4000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139838,14 +141499,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(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, @@ -139868,15 +141532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29825] = 5, + [29318] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1508), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3962), 15, + ACTIONS(3734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139892,7 +141556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3960), 30, + ACTIONS(3730), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139923,15 +141587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29885] = 5, + [29378] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1509), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(3966), 15, + ACTIONS(4004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139947,7 +141611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3964), 30, + ACTIONS(4002), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139978,15 +141642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29945] = 5, + [29438] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1510), 2, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(3970), 15, + ACTIONS(4008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140002,7 +141666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3968), 30, + ACTIONS(4006), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140033,15 +141697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30005] = 5, + [29498] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1511), 2, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3974), 15, + ACTIONS(4012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140057,7 +141721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3972), 30, + ACTIONS(4010), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140088,15 +141752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30065] = 5, + [29558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1512), 2, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(3978), 15, + ACTIONS(4016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140112,7 +141776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3976), 30, + ACTIONS(4014), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140143,15 +141807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30125] = 5, + [29618] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1513), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3708), 15, + ACTIONS(4020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140167,7 +141831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3704), 30, + ACTIONS(4018), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140198,15 +141862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30185] = 5, + [29678] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1514), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(3982), 15, + ACTIONS(4024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140222,7 +141886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3980), 30, + ACTIONS(4022), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140253,15 +141917,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30245] = 5, + [29738] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1515), 2, + ACTIONS(3440), 1, + anon_sym_BANG, + ACTIONS(4026), 1, + anon_sym_COLON_COLON, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140277,13 +141945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3984), 30, + ACTIONS(1451), 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, @@ -140305,18 +141972,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, - [30305] = 5, + [29802] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1516), 2, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(3990), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140332,7 +141998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3988), 30, + ACTIONS(1451), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140363,15 +142029,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30365] = 5, + [29862] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1517), 2, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(3994), 15, + ACTIONS(915), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140387,7 +142053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3992), 30, + ACTIONS(917), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140418,15 +142084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30425] = 5, + [29922] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1518), 2, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(3998), 15, + ACTIONS(4030), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140442,7 +142108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3996), 30, + ACTIONS(4028), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140473,15 +142139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30485] = 5, + [29982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1519), 2, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(4002), 15, + ACTIONS(4034), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140497,7 +142163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4000), 30, + ACTIONS(4032), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140528,19 +142194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30545] = 7, + [30042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 1, - anon_sym_BANG, - ACTIONS(4004), 1, - anon_sym_COLON_COLON, - STATE(1520), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(1541), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140556,12 +142218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 28, + ACTIONS(1539), 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, @@ -140583,17 +142246,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, - [30609] = 5, + [30102] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(4038), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140609,7 +142273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 30, + ACTIONS(4036), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140640,15 +142304,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30669] = 5, + [30162] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1522), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(1009), 15, + ACTIONS(4042), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140662,17 +142332,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(1011), 30, + ACTIONS(4040), 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, @@ -140695,15 +142362,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30729] = 5, + [30228] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(4008), 15, + ACTIONS(1513), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140719,7 +142386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4006), 30, + ACTIONS(1511), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140750,15 +142417,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30789] = 5, + [30288] = 25, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1524), 2, + ACTIONS(1249), 1, + anon_sym_extern, + ACTIONS(1621), 1, + anon_sym_fn, + ACTIONS(3471), 1, + anon_sym_COLON_COLON, + ACTIONS(3479), 1, + sym_metavariable, + ACTIONS(4044), 1, + sym_identifier, + ACTIONS(4048), 1, + anon_sym_default, + ACTIONS(4050), 1, + anon_sym_for, + STATE(1607), 1, + sym_for_lifetimes, + STATE(2015), 1, + sym_generic_type, + STATE(2235), 1, + sym_scoped_type_identifier, + STATE(2278), 1, + aux_sym_function_modifiers_repeat1, + STATE(2459), 1, + sym_extern_modifier, + STATE(3588), 1, + sym_scoped_identifier, + STATE(3594), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_generic_type_with_turbofish, + STATE(3766), 1, + sym_function_modifiers, + ACTIONS(3473), 2, + anon_sym_gen, + anon_sym_union, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(4012), 15, + STATE(2060), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1233), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3477), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4046), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [30387] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1239), 1, + anon_sym_fn, + ACTIONS(1249), 1, + anon_sym_extern, + ACTIONS(3254), 1, + anon_sym_for, + ACTIONS(3471), 1, + anon_sym_COLON_COLON, + ACTIONS(3479), 1, + sym_metavariable, + ACTIONS(4048), 1, + anon_sym_default, + ACTIONS(4052), 1, + sym_identifier, + STATE(1634), 1, + sym_for_lifetimes, + STATE(2011), 1, + sym_scoped_type_identifier, + STATE(2015), 1, + sym_generic_type, + STATE(2278), 1, + aux_sym_function_modifiers_repeat1, + STATE(2459), 1, + sym_extern_modifier, + STATE(3588), 1, + sym_scoped_identifier, + STATE(3594), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_generic_type_with_turbofish, + STATE(3774), 1, + sym_function_modifiers, + ACTIONS(3473), 2, + anon_sym_gen, + anon_sym_union, + STATE(1541), 2, + sym_line_comment, + sym_block_comment, + STATE(2060), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1233), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3477), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4046), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [30486] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3416), 1, + anon_sym_BANG, + ACTIONS(3422), 1, + anon_sym_move, + ACTIONS(4054), 1, + anon_sym_COLON_COLON, + STATE(1454), 1, + sym_block, + STATE(3677), 1, + sym_label, + STATE(1542), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140774,14 +142599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4010), 30, - anon_sym_SEMI, + ACTIONS(3412), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140801,19 +142622,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [30849] = 5, + [30555] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + ACTIONS(3416), 1, + anon_sym_BANG, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(3422), 1, + anon_sym_move, + ACTIONS(4054), 1, + anon_sym_COLON_COLON, + STATE(1454), 1, + sym_block, + STATE(3677), 1, + sym_label, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140829,14 +142660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4014), 30, - anon_sym_SEMI, + ACTIONS(3412), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140856,19 +142683,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [30909] = 5, + [30626] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1526), 2, + ACTIONS(4056), 1, + anon_sym_COLON_COLON, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140884,13 +142710,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 30, + ACTIONS(1451), 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, @@ -140912,18 +142737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30969] = 5, + [30687] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1527), 2, + ACTIONS(3418), 1, + anon_sym_COLON_COLON, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(4020), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140939,13 +142765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4018), 30, + ACTIONS(3412), 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, @@ -140967,66 +142792,65 @@ 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, - [31029] = 25, + [30748] = 25, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1271), 1, - anon_sym_fn, - ACTIONS(1279), 1, + ACTIONS(1249), 1, anon_sym_extern, - ACTIONS(3136), 1, - anon_sym_for, - ACTIONS(3397), 1, + ACTIONS(3172), 1, + anon_sym_fn, + ACTIONS(4058), 1, + sym_identifier, + ACTIONS(4062), 1, anon_sym_COLON_COLON, - ACTIONS(3407), 1, - sym_metavariable, - ACTIONS(3483), 1, + ACTIONS(4064), 1, anon_sym_default, - ACTIONS(4022), 1, - sym_identifier, - STATE(1594), 1, - sym_for_lifetimes, - STATE(1978), 1, + ACTIONS(4066), 1, + anon_sym_for, + ACTIONS(4072), 1, + sym_metavariable, + STATE(1090), 1, sym_scoped_type_identifier, - STATE(2000), 1, + STATE(1130), 1, sym_generic_type, - STATE(2252), 1, + STATE(1605), 1, + sym_for_lifetimes, + STATE(2278), 1, aux_sym_function_modifiers_repeat1, - STATE(2447), 1, + STATE(2459), 1, sym_extern_modifier, - STATE(3457), 1, + STATE(3612), 1, + sym_scoped_identifier, + STATE(3648), 1, sym_generic_type_with_turbofish, - STATE(3477), 1, - sym_function_modifiers, - STATE(3591), 1, + STATE(3660), 1, sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - ACTIONS(3401), 2, + STATE(3733), 1, + sym_function_modifiers, + ACTIONS(4068), 2, anon_sym_gen, anon_sym_union, - STATE(1528), 2, - sym_line_comment, - sym_block_comment, - STATE(2066), 2, + STATE(1483), 2, sym_higher_ranked_trait_bound, sym_function_type, - ACTIONS(1265), 3, + STATE(1546), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1233), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3405), 3, + ACTIONS(4070), 3, sym_self, sym_super, sym_crate, - ACTIONS(3481), 17, + ACTIONS(4060), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -141044,63 +142868,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [31128] = 25, + [30847] = 25, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1279), 1, + ACTIONS(1249), 1, anon_sym_extern, - ACTIONS(3204), 1, + ACTIONS(3214), 1, anon_sym_fn, - ACTIONS(3467), 1, + ACTIONS(4074), 1, + sym_identifier, + ACTIONS(4078), 1, anon_sym_COLON_COLON, - ACTIONS(3469), 1, + ACTIONS(4080), 1, anon_sym_default, - ACTIONS(3477), 1, - sym_metavariable, - ACTIONS(4024), 1, - sym_identifier, - ACTIONS(4026), 1, + ACTIONS(4082), 1, anon_sym_for, - STATE(1062), 1, + ACTIONS(4088), 1, + sym_metavariable, + STATE(1603), 1, sym_scoped_type_identifier, - STATE(1113), 1, - sym_generic_type, - STATE(1623), 1, + STATE(1638), 1, sym_for_lifetimes, - STATE(2252), 1, + STATE(1669), 1, + sym_generic_type, + STATE(2278), 1, aux_sym_function_modifiers_repeat1, - STATE(2447), 1, + STATE(2459), 1, sym_extern_modifier, - STATE(3455), 1, + STATE(3602), 1, sym_function_modifiers, - STATE(3605), 1, + STATE(3639), 1, sym_scoped_identifier, - STATE(3640), 1, + STATE(3658), 1, sym_generic_type_with_turbofish, - STATE(3651), 1, + STATE(3664), 1, sym_bracketed_type, - ACTIONS(3473), 2, + ACTIONS(4084), 2, anon_sym_gen, anon_sym_union, - STATE(1430), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - STATE(1529), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(1265), 3, + STATE(1720), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1233), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3475), 3, + ACTIONS(4086), 3, sym_self, sym_super, sym_crate, - ACTIONS(3465), 17, + ACTIONS(4076), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -141118,22 +142942,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [31227] = 6, + [30946] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 1, - anon_sym_COLON_COLON, - STATE(1530), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, - anon_sym_PLUS, + ACTIONS(4092), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3922), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -141142,16 +142974,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(1431), 28, + ACTIONS(3920), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141171,50 +143000,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_as, anon_sym_else, - [31288] = 11, + [31016] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_BANG, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3350), 1, - anon_sym_move, - ACTIONS(4030), 1, - anon_sym_COLON_COLON, - STATE(1407), 1, - sym_block, - STATE(3664), 1, - sym_label, - STATE(1531), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, + anon_sym_CARET, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, + anon_sym_PIPE, + ACTIONS(3922), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4104), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, - anon_sym_PLUS, + ACTIONS(4092), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3920), 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, + [31098] = 18, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(3922), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3340), 23, + STATE(1550), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3920), 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, @@ -141226,24 +143128,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_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [31182] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, + anon_sym_CARET, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, + anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4114), 1, + anon_sym_DOT_DOT, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4104), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4116), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1551), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [31359] = 6, + ACTIONS(4108), 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, + [31272] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, + ACTIONS(4118), 1, + anon_sym_LPAREN, + ACTIONS(4120), 1, + anon_sym_BANG, + ACTIONS(4122), 1, anon_sym_COLON_COLON, - STATE(1532), 2, + ACTIONS(4124), 1, + anon_sym_LT2, + STATE(1646), 1, + sym_type_arguments, + STATE(1671), 1, + sym_parameters, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3438), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141254,18 +143232,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(3340), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3436), 20, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141277,110 +143253,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_as, - anon_sym_else, - [31420] = 25, - 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(3166), 1, - anon_sym_fn, - ACTIONS(3508), 1, - anon_sym_COLON_COLON, - ACTIONS(3510), 1, - anon_sym_default, - ACTIONS(3516), 1, - sym_metavariable, - ACTIONS(4032), 1, - sym_identifier, - ACTIONS(4034), 1, - anon_sym_for, - STATE(1579), 1, - sym_scoped_type_identifier, - STATE(1624), 1, - sym_for_lifetimes, - STATE(1680), 1, - sym_generic_type, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(3595), 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(1533), 2, - sym_line_comment, - sym_block_comment, - STATE(1819), 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, - 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, - [31519] = 10, + [31342] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, + ACTIONS(3430), 1, anon_sym_BANG, - ACTIONS(3350), 1, - anon_sym_move, - ACTIONS(4030), 1, + ACTIONS(4118), 1, + anon_sym_LPAREN, + ACTIONS(4122), 1, anon_sym_COLON_COLON, - STATE(1407), 1, - sym_block, - STATE(3664), 1, - sym_label, - STATE(1534), 2, + ACTIONS(4124), 1, + anon_sym_LT2, + STATE(1646), 1, + sym_type_arguments, + STATE(1671), 1, + sym_parameters, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3444), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141391,15 +143291,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(3340), 24, - anon_sym_LPAREN, + ACTIONS(3442), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141411,188 +143312,55 @@ 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, - [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(2103), 1, - sym_scoped_identifier, - STATE(2160), 1, - sym__literal_pattern, - STATE(3441), 1, - sym_bracketed_type, - STATE(3467), 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(2074), 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] = 19, - ACTIONS(29), 1, - anon_sym_LT, + [31412] = 11, 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, + ACTIONS(3430), 1, + anon_sym_BANG, + ACTIONS(4118), 1, + anon_sym_LPAREN, + ACTIONS(4122), 1, anon_sym_COLON_COLON, - ACTIONS(3304), 1, - sym_identifier, - ACTIONS(3314), 1, - sym_metavariable, - STATE(2107), 1, - sym_scoped_identifier, - STATE(2188), 1, - sym__literal_pattern, - STATE(3441), 1, - sym_bracketed_type, - STATE(3467), 1, - sym_generic_type_with_turbofish, - ACTIONS(1291), 2, - anon_sym_true, - anon_sym_false, - STATE(1536), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1287), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3312), 3, - sym_self, - sym_super, - sym_crate, - STATE(2074), 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, - [31760] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - STATE(1537), 2, + ACTIONS(4124), 1, + anon_sym_LT2, + STATE(1646), 1, + sym_type_arguments, + STATE(1671), 1, + sym_parameters, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(3428), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3858), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3424), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141603,126 +143371,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31828] = 19, - 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(3566), 1, - anon_sym_COLON_COLON, - ACTIONS(3578), 1, - sym_identifier, - ACTIONS(3584), 1, - sym_metavariable, - STATE(2791), 1, - sym_scoped_identifier, - STATE(3009), 1, - sym__literal_pattern, - STATE(3587), 1, - sym_bracketed_type, - STATE(3600), 1, - sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, - STATE(1538), 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(2389), 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, - [31914] = 13, + anon_sym_as, + [31482] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, + ACTIONS(4094), 1, + anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4038), 2, + ACTIONS(4098), 1, + anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4114), 1, + anon_sym_DOT_DOT, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1539), 2, + ACTIONS(4104), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4116), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 25, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 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, @@ -141733,56 +143445,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31988] = 12, + [31572] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1556), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4132), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4130), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31630] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4038), 2, + ACTIONS(4094), 1, + anon_sym_CARET, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, + anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4114), 1, + anon_sym_DOT_DOT, + ACTIONS(4136), 1, + anon_sym_EQ, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1540), 2, + ACTIONS(4104), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4116), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 25, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4134), 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, @@ -141793,51 +143567,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32060] = 14, + [31720] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4038), 2, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, + anon_sym_PIPE, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1541), 2, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 5, - anon_sym_PIPE, + ACTIONS(3922), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3858), 25, + ACTIONS(3920), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141863,57 +143632,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32136] = 17, + [31798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + STATE(1559), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4140), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4138), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31856] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(3860), 2, - anon_sym_EQ, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4114), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - STATE(1542), 2, + ACTIONS(4116), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3858), 21, + ACTIONS(3958), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141924,62 +143755,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32218] = 18, + [31948] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + STATE(1561), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4148), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4146), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32006] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4152), 1, + anon_sym_LPAREN, + STATE(1562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4155), 9, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4150), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32066] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(3860), 2, - anon_sym_EQ, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4114), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4159), 1, + anon_sym_EQ, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - STATE(1543), 2, + ACTIONS(4116), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1563), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3858), 20, + ACTIONS(4157), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141990,34 +143929,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32302] = 11, + [32156] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1544), 2, + ACTIONS(3556), 1, + anon_sym_LBRACE, + ACTIONS(3558), 1, + anon_sym_COLON_COLON, + ACTIONS(4161), 1, + anon_sym_BANG, + STATE(1514), 1, + sym_field_initializer_list, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(1449), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -142026,13 +143961,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(3858), 25, + ACTIONS(1451), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -142051,60 +143987,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32372] = 21, + anon_sym_as, + [32222] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(1209), 1, + anon_sym_DASH, + ACTIONS(1259), 1, + aux_sym_string_literal_token1, + ACTIONS(1269), 1, + sym__raw_string_literal_start, + ACTIONS(2184), 1, + anon_sym_COLON_COLON, + ACTIONS(3400), 1, + sym_identifier, + ACTIONS(3410), 1, + sym_metavariable, + STATE(2109), 1, + sym_scoped_identifier, + STATE(2177), 1, + sym__literal_pattern, + STATE(3695), 1, + sym_bracketed_type, + STATE(3765), 1, + sym_generic_type_with_turbofish, + ACTIONS(1261), 2, + anon_sym_true, + anon_sym_false, + STATE(1565), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1257), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3408), 3, + sym_self, + sym_super, + sym_crate, + STATE(2096), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3406), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [32308] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1209), 1, + anon_sym_DASH, + ACTIONS(1259), 1, + aux_sym_string_literal_token1, + ACTIONS(1269), 1, + sym__raw_string_literal_start, + ACTIONS(2184), 1, + anon_sym_COLON_COLON, + ACTIONS(3388), 1, + sym_identifier, + ACTIONS(3398), 1, + sym_metavariable, + STATE(2116), 1, + sym_scoped_identifier, + STATE(2163), 1, + sym__literal_pattern, + STATE(3695), 1, + sym_bracketed_type, + STATE(3765), 1, + sym_generic_type_with_turbofish, + ACTIONS(1261), 2, + anon_sym_true, + anon_sym_false, + STATE(1566), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1257), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3396), 3, + sym_self, + sym_super, + sym_crate, + STATE(2096), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3394), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [32394] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4058), 1, - anon_sym_EQ, - ACTIONS(4060), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1545), 2, + ACTIONS(4165), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4054), 17, + ACTIONS(4163), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142120,60 +144185,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32462] = 21, + [32480] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, + ACTIONS(4114), 1, anon_sym_DOT_DOT, - ACTIONS(4066), 1, + ACTIONS(4169), 1, anon_sym_EQ, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, + ACTIONS(4116), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1546), 2, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 17, + ACTIONS(4167), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142191,129 +144258,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [32552] = 15, + [32570] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4038), 2, - anon_sym_PLUS, + ACTIONS(1667), 1, anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1547), 2, + ACTIONS(1693), 1, + aux_sym_string_literal_token1, + ACTIONS(1701), 1, + sym__raw_string_literal_start, + ACTIONS(3596), 1, + anon_sym_COLON_COLON, + ACTIONS(3620), 1, + sym_identifier, + ACTIONS(3626), 1, + sym_metavariable, + STATE(2811), 1, + sym_scoped_identifier, + STATE(3100), 1, + sym__literal_pattern, + STATE(3590), 1, + sym_bracketed_type, + STATE(3607), 1, + sym_generic_type_with_turbofish, + ACTIONS(1695), 2, + anon_sym_true, + anon_sym_false, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3860), 4, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(1691), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3624), 3, + sym_self, + sym_super, + sym_crate, + STATE(2465), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3622), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [32656] = 19, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32630] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(1667), 1, + anon_sym_DASH, + ACTIONS(1693), 1, + aux_sym_string_literal_token1, + ACTIONS(1701), 1, + sym__raw_string_literal_start, + ACTIONS(3592), 1, + sym_identifier, + ACTIONS(3596), 1, + anon_sym_COLON_COLON, + ACTIONS(3600), 1, + sym_metavariable, + STATE(2686), 1, + sym_scoped_identifier, + STATE(2950), 1, + sym__literal_pattern, + STATE(3590), 1, + sym_bracketed_type, + STATE(3607), 1, + sym_generic_type_with_turbofish, + ACTIONS(1695), 2, + anon_sym_true, + anon_sym_false, + STATE(1570), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1691), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3598), 3, + sym_self, + sym_super, + sym_crate, + STATE(2465), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3594), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [32742] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, - anon_sym_DOT_DOT, - ACTIONS(4070), 1, + ACTIONS(403), 2, anon_sym_EQ, - ACTIONS(4038), 2, + anon_sym_DOT_DOT, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1548), 2, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3788), 7, + ACTIONS(401), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142324,59 +144455,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32722] = 19, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [32828] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4038), 2, + ACTIONS(4114), 1, + anon_sym_DOT_DOT, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4074), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - STATE(1549), 2, + ACTIONS(4116), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4072), 19, + ACTIONS(3878), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142387,58 +144529,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32808] = 19, + [32920] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(381), 2, - anon_sym_EQ, + ACTIONS(4114), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - STATE(1550), 2, + ACTIONS(4116), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(379), 19, + ACTIONS(341), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142454,119 +144596,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32894] = 21, + [33010] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, + ACTIONS(4114), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, + ACTIONS(4116), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1551), 2, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 17, + ACTIONS(4022), 7, 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, - [32984] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3496), 1, - anon_sym_LBRACE, - ACTIONS(3498), 1, - anon_sym_COLON_COLON, - ACTIONS(4076), 1, - anon_sym_BANG, - STATE(1503), 1, - sym_field_initializer_list, - STATE(1552), 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), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142577,119 +144668,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33050] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4080), 1, - anon_sym_BANG, - ACTIONS(4082), 1, - anon_sym_COLON_COLON, - ACTIONS(4084), 1, - anon_sym_LT2, - STATE(1663), 1, - sym_parameters, - STATE(1683), 1, - sym_type_arguments, - STATE(1553), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3356), 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(3352), 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, - [33120] = 19, + [33102] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, + ACTIONS(1667), 1, anon_sym_DASH, - ACTIONS(1681), 1, + ACTIONS(1693), 1, aux_sym_string_literal_token1, - ACTIONS(1689), 1, + ACTIONS(1701), 1, sym__raw_string_literal_start, - ACTIONS(3566), 1, + ACTIONS(3596), 1, anon_sym_COLON_COLON, - ACTIONS(3590), 1, + ACTIONS(3608), 1, sym_identifier, - ACTIONS(3596), 1, + ACTIONS(3614), 1, sym_metavariable, - STATE(2613), 1, + STATE(2801), 1, sym_scoped_identifier, - STATE(3021), 1, + STATE(3086), 1, sym__literal_pattern, - STATE(3587), 1, + STATE(3590), 1, sym_bracketed_type, - STATE(3600), 1, + STATE(3607), 1, sym_generic_type_with_turbofish, - ACTIONS(1683), 2, + ACTIONS(1695), 2, anon_sym_true, anon_sym_false, - STATE(1554), 2, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, + ACTIONS(1691), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3594), 3, + ACTIONS(3612), 3, sym_self, sym_super, sym_crate, - STATE(2389), 4, + STATE(2465), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3592), 20, + ACTIONS(3610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -142710,63 +144735,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [33206] = 21, + [33188] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, - anon_sym_DOT_DOT, - ACTIONS(4088), 1, - anon_sym_EQ, - ACTIONS(4038), 2, + STATE(1576), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3922), 11, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1555), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4086), 17, + anon_sym_DOT_DOT, + ACTIONS(3920), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142777,55 +144785,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_COMMA, anon_sym_else, - [33296] = 19, + [33256] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, + ACTIONS(1209), 1, anon_sym_DASH, - ACTIONS(1681), 1, + ACTIONS(1259), 1, aux_sym_string_literal_token1, - ACTIONS(1689), 1, + ACTIONS(1269), 1, sym__raw_string_literal_start, - ACTIONS(3562), 1, - sym_identifier, - ACTIONS(3566), 1, + ACTIONS(2184), 1, anon_sym_COLON_COLON, - ACTIONS(3570), 1, + ACTIONS(3376), 1, + sym_identifier, + ACTIONS(3386), 1, sym_metavariable, - STATE(2733), 1, + STATE(2136), 1, sym_scoped_identifier, - STATE(2923), 1, + STATE(2208), 1, sym__literal_pattern, - STATE(3587), 1, + STATE(3695), 1, sym_bracketed_type, - STATE(3600), 1, + STATE(3765), 1, sym_generic_type_with_turbofish, - ACTIONS(1683), 2, + ACTIONS(1261), 2, anon_sym_true, anon_sym_false, - STATE(1556), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, + ACTIONS(1257), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3568), 3, + ACTIONS(3384), 3, sym_self, sym_super, sym_crate, - STATE(2389), 4, + STATE(2096), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3564), 20, + ACTIONS(3382), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -142846,133 +144860,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [33382] = 22, + [33342] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, - anon_sym_DOT_DOT, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4062), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1557), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3940), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4068), 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, - [33474] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(3922), 6, anon_sym_CARET, - ACTIONS(4046), 1, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, - anon_sym_DOT_DOT, - ACTIONS(4092), 1, anon_sym_EQ, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4062), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1558), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4090), 17, + anon_sym_DOT_DOT, + ACTIONS(3920), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142983,65 +144913,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_COMMA, anon_sym_else, - [33564] = 21, + [33416] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, - anon_sym_DOT_DOT, - ACTIONS(4096), 1, - anon_sym_EQ, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4062), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1559), 2, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4094), 17, + ACTIONS(3922), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3920), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143052,68 +144973,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33654] = 22, + [33488] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4060), 1, - anon_sym_DOT_DOT, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4038), 2, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4062), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1560), 2, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4000), 7, + ACTIONS(3922), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3920), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4068), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143124,53 +145035,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33746] = 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_else, + [33564] = 6, 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, + ACTIONS(4171), 1, anon_sym_COLON_COLON, - ACTIONS(3316), 1, - sym_identifier, - ACTIONS(3326), 1, - sym_metavariable, - STATE(2116), 1, - sym_scoped_identifier, - STATE(2168), 1, - sym__literal_pattern, - STATE(3441), 1, - sym_bracketed_type, - STATE(3467), 1, - sym_generic_type_with_turbofish, - ACTIONS(1291), 2, - anon_sym_true, - anon_sym_false, - STATE(1561), 2, + STATE(1581), 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(2074), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3322), 20, + ACTIONS(4155), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4150), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143188,24 +145081,94 @@ 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, - [33832] = 8, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33624] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3440), 1, + anon_sym_BANG, + ACTIONS(4174), 1, + anon_sym_COLON_COLON, + STATE(1514), 1, + sym_field_initializer_list, + STATE(1582), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1449), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1451), 24, + anon_sym_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, + [33687] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_COLON_COLON, - ACTIONS(3528), 1, + ACTIONS(4120), 1, anon_sym_BANG, - ACTIONS(4098), 1, - sym_identifier, - STATE(1562), 2, + ACTIONS(4176), 1, + anon_sym_LBRACE, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + STATE(1823), 1, + sym_field_initializer_list, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 16, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143221,12 +145184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3340), 23, - anon_sym_SEMI, + ACTIONS(1451), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143246,25 +145207,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [33895] = 10, + anon_sym_as, + [33752] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, + ACTIONS(4118), 1, anon_sym_LPAREN, - ACTIONS(4084), 1, + ACTIONS(4124), 1, anon_sym_LT2, - ACTIONS(4100), 1, + ACTIONS(4180), 1, anon_sym_COLON_COLON, - STATE(1663), 1, - sym_parameters, - STATE(1683), 1, + STATE(1646), 1, sym_type_arguments, - STATE(1563), 2, + STATE(1671), 1, + sym_parameters, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(3383), 17, + ACTIONS(3455), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143282,7 +145244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3381), 20, + ACTIONS(3453), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -143303,78 +145265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33962] = 6, + [33819] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4104), 1, - anon_sym_LPAREN, - STATE(1564), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4107), 9, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(3418), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4102), 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, + ACTIONS(3560), 1, + anon_sym_BANG, + ACTIONS(4182), 1, sym_identifier, - sym_self, - sym_super, - sym_crate, - [34021] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4084), 1, - anon_sym_LT2, - ACTIONS(4100), 1, - anon_sym_COLON_COLON, - STATE(1663), 1, - sym_parameters, - STATE(1683), 1, - sym_type_arguments, - STATE(1565), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 17, + ACTIONS(3414), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143385,16 +145290,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(3370), 20, + anon_sym_as, + ACTIONS(3412), 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, @@ -143406,84 +145312,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34088] = 5, + [33882] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1566), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4111), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(3498), 1, anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4109), 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, - [34145] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4084), 1, - anon_sym_LT2, - ACTIONS(4100), 1, + ACTIONS(3500), 1, anon_sym_COLON_COLON, - STATE(1663), 1, - sym_parameters, - STATE(1683), 1, - sym_type_arguments, - STATE(1567), 2, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(3366), 17, + ACTIONS(3496), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143501,7 +145350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3364), 20, + ACTIONS(3494), 22, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -143522,79 +145372,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34212] = 5, + anon_sym_LT2, + [33942] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1568), 2, + ACTIONS(3574), 1, + anon_sym_LBRACE, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(4115), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3487), 16, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_BANG, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3489), 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_SQUOTE, - sym_metavariable, - ACTIONS(4113), 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, - [34269] = 8, + anon_sym_as, + [34000] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 1, - anon_sym_BANG, - ACTIONS(4117), 1, - anon_sym_COLON_COLON, - STATE(1503), 1, - sym_field_initializer_list, - STATE(1569), 2, + ACTIONS(3580), 1, + anon_sym_LBRACE, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3506), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -143604,10 +145452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 24, + ACTIONS(3508), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143627,136 +145475,79 @@ 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, - [34332] = 6, + [34058] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4119), 1, + ACTIONS(4026), 1, anon_sym_COLON_COLON, - STATE(1570), 2, + ACTIONS(4161), 1, + anon_sym_BANG, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(4107), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1449), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4102), 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, - [34391] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1571), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4124), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1451), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_STAR, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4122), 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, - [34448] = 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [34118] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4080), 1, - anon_sym_BANG, - ACTIONS(4126), 1, + ACTIONS(3700), 1, anon_sym_LBRACE, - ACTIONS(4128), 1, - anon_sym_COLON_COLON, - STATE(1790), 1, - sym_field_initializer_list, - STATE(1572), 2, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3498), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -143766,7 +145557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 23, + ACTIONS(3500), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143789,24 +145580,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_COLON_COLON, anon_sym_as, - [34513] = 9, + [34176] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4084), 1, - anon_sym_LT2, - STATE(1643), 1, - sym_type_arguments, - STATE(1669), 1, - sym_parameters, - STATE(1573), 2, + ACTIONS(3514), 1, + anon_sym_BANG, + ACTIONS(3516), 1, + anon_sym_COLON_COLON, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(3451), 17, + ACTIONS(3512), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143824,7 +145612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3449), 20, + ACTIONS(3510), 22, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -143845,17 +145634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34577] = 6, + anon_sym_LT2, + [34236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3544), 1, - anon_sym_LBRACE, - STATE(1574), 2, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(3413), 16, + ACTIONS(3487), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143872,10 +145660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3415), 24, + ACTIONS(3489), 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, @@ -143896,18 +145684,17 @@ 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, - [34635] = 6, + [34292] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3560), 1, - anon_sym_LBRACE, - STATE(1575), 2, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 16, + ACTIONS(3498), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143924,10 +145711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3459), 24, + ACTIONS(3500), 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, @@ -143948,36 +145735,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, - [34693] = 5, + [34348] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1576), 2, + ACTIONS(3487), 1, + anon_sym_BANG, + ACTIONS(3489), 1, + anon_sym_COLON_COLON, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(3421), 16, + ACTIONS(3485), 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(3423), 25, + ACTIONS(3483), 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, @@ -143989,35 +145782,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [34749] = 6, + anon_sym_LT2, + [34408] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3550), 1, - anon_sym_LBRACE, - STATE(1577), 2, + ACTIONS(3416), 1, + anon_sym_BANG, + ACTIONS(4054), 1, + anon_sym_COLON_COLON, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(3437), 16, + ACTIONS(3414), 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, @@ -144027,10 +145818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3439), 24, + ACTIONS(3412), 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, @@ -144050,36 +145841,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_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34807] = 6, + [34468] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3670), 1, - anon_sym_LBRACE, - STATE(1578), 2, + ACTIONS(3506), 1, + anon_sym_BANG, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(3421), 16, + ACTIONS(3504), 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(3423), 24, + ACTIONS(3502), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144094,33 +145888,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, - [34865] = 9, + anon_sym_LT2, + [34528] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, + ACTIONS(4118), 1, anon_sym_LPAREN, - ACTIONS(4084), 1, + ACTIONS(4124), 1, anon_sym_LT2, - STATE(1643), 1, + STATE(1659), 1, sym_type_arguments, - STATE(1669), 1, + STATE(1673), 1, sym_parameters, - STATE(1579), 2, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 17, + ACTIONS(3528), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144138,7 +145930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3441), 20, + ACTIONS(3526), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -144159,23 +145951,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34929] = 9, + [34592] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, + ACTIONS(4118), 1, anon_sym_LPAREN, - ACTIONS(4084), 1, + ACTIONS(4124), 1, anon_sym_LT2, - STATE(1643), 1, + STATE(1659), 1, sym_type_arguments, - STATE(1669), 1, + STATE(1673), 1, sym_parameters, - STATE(1580), 2, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3431), 17, + ACTIONS(3520), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144193,7 +145985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3429), 20, + ACTIONS(3518), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -144214,15 +146006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34993] = 5, + [34656] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1581), 2, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(3413), 16, + ACTIONS(3514), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144239,7 +146031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3415), 25, + ACTIONS(3516), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -144259,25 +146051,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_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, + [34712] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4118), 1, + anon_sym_LPAREN, + ACTIONS(4124), 1, + anon_sym_LT2, + STATE(1659), 1, + sym_type_arguments, + STATE(1673), 1, + sym_parameters, + STATE(1600), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3524), 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(3522), 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_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [35049] = 7, + [34776] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 1, + ACTIONS(3440), 1, anon_sym_BANG, - ACTIONS(3423), 1, + ACTIONS(4184), 1, anon_sym_COLON_COLON, - STATE(1582), 2, + STATE(1601), 2, sym_line_comment, sym_block_comment, - ACTIONS(3419), 17, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144288,17 +146135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3417), 22, + ACTIONS(1451), 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, @@ -144310,45 +146155,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_LT2, - [35109] = 7, + [34836] = 6, 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(1583), 2, + ACTIONS(3590), 1, + anon_sym_LBRACE, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(3411), 17, + ACTIONS(3514), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_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), 22, + ACTIONS(3516), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144363,27 +146207,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_LT2, - [35169] = 7, + [34894] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, - anon_sym_BANG, - ACTIONS(3459), 1, - anon_sym_COLON_COLON, - STATE(1584), 2, + ACTIONS(4118), 1, + anon_sym_LPAREN, + ACTIONS(4124), 1, + anon_sym_LT2, + STATE(1659), 1, + sym_type_arguments, + STATE(1673), 1, + sym_parameters, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(3455), 17, + ACTIONS(3534), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144401,8 +146251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3453), 22, - anon_sym_LPAREN, + ACTIONS(3532), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -144423,16 +146272,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [35229] = 5, + [34958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1585), 2, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(3437), 16, + ACTIONS(3506), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144449,7 +146297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3439), 25, + ACTIONS(3508), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -144475,19 +146323,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [35285] = 7, + [35014] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, - anon_sym_BANG, - ACTIONS(3439), 1, + ACTIONS(1249), 1, + anon_sym_extern, + ACTIONS(3471), 1, anon_sym_COLON_COLON, - STATE(1586), 2, + ACTIONS(3479), 1, + sym_metavariable, + ACTIONS(4048), 1, + anon_sym_default, + ACTIONS(4186), 1, + sym_identifier, + ACTIONS(4188), 1, + anon_sym_fn, + STATE(2278), 1, + aux_sym_function_modifiers_repeat1, + STATE(2459), 1, + sym_extern_modifier, + STATE(2632), 1, + sym_scoped_type_identifier, + STATE(3478), 1, + sym_function_modifiers, + STATE(3513), 1, + sym_generic_type, + STATE(3588), 1, + sym_scoped_identifier, + STATE(3594), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_generic_type_with_turbofish, + ACTIONS(3473), 2, + anon_sym_gen, + anon_sym_union, + STATE(1605), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1233), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3477), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4046), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [35103] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4190), 1, + anon_sym_SQUOTE, + STATE(1757), 1, + sym_label, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3435), 17, + ACTIONS(3720), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144498,14 +146413,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(3433), 22, + ACTIONS(3718), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144520,27 +146433,93 @@ 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, - [35345] = 7, + [35162] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4004), 1, + ACTIONS(1249), 1, + anon_sym_extern, + ACTIONS(3471), 1, anon_sym_COLON_COLON, - ACTIONS(4076), 1, - anon_sym_BANG, - STATE(1587), 2, + ACTIONS(3479), 1, + sym_metavariable, + ACTIONS(4048), 1, + anon_sym_default, + ACTIONS(4192), 1, + sym_identifier, + ACTIONS(4194), 1, + anon_sym_fn, + STATE(2278), 1, + aux_sym_function_modifiers_repeat1, + STATE(2459), 1, + sym_extern_modifier, + STATE(2698), 1, + sym_scoped_type_identifier, + STATE(3513), 1, + sym_generic_type, + STATE(3542), 1, + sym_function_modifiers, + STATE(3588), 1, + sym_scoped_identifier, + STATE(3594), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_generic_type_with_turbofish, + ACTIONS(3473), 2, + anon_sym_gen, + anon_sym_union, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(1233), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3477), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4046), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [35251] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1428), 1, + sym_label, + STATE(1608), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3720), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144556,11 +146535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 24, - anon_sym_SEMI, + ACTIONS(3718), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144580,23 +146558,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_SQUOTE, anon_sym_as, - [35405] = 5, + [35308] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1588), 2, + ACTIONS(3776), 1, + anon_sym_COLON_COLON, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 16, + ACTIONS(3778), 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, @@ -144606,7 +146586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3459), 25, + ACTIONS(3774), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -144629,22 +146609,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [35461] = 7, + [35365] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_BANG, - ACTIONS(4030), 1, - anon_sym_COLON_COLON, - STATE(1589), 2, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4200), 1, + anon_sym_CARET, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, + anon_sym_PIPE, + ACTIONS(4206), 1, + anon_sym_AMP_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4214), 1, + anon_sym_EQ, + ACTIONS(4220), 1, + anon_sym_DOT_DOT, + STATE(418), 1, + sym_block, + STATE(3532), 1, + sym_label, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4222), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1610), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4216), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4212), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35460] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144660,10 +146705,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 24, + ACTIONS(3692), 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, @@ -144683,25 +146729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [35521] = 9, + [35515] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4084), 1, - anon_sym_LT2, - STATE(1643), 1, - sym_type_arguments, - STATE(1669), 1, - sym_parameters, - STATE(1590), 2, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 17, + ACTIONS(3704), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144712,15 +146750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 20, + ACTIONS(3702), 25, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -144733,26 +146771,25 @@ 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, - [35585] = 7, + [35570] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 1, - anon_sym_BANG, - ACTIONS(4130), 1, - anon_sym_COLON_COLON, - STATE(1591), 2, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3712), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144768,10 +146805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 24, + ACTIONS(3710), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144791,20 +146829,91 @@ 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, + [35625] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3420), 1, anon_sym_SQUOTE, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, anon_sym_as, - [35645] = 6, + ACTIONS(4200), 1, + anon_sym_CARET, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, + anon_sym_PIPE, + ACTIONS(4206), 1, + anon_sym_AMP_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4214), 1, + anon_sym_EQ, + ACTIONS(4220), 1, + anon_sym_DOT_DOT, + STATE(413), 1, + sym_block, + STATE(3532), 1, + sym_label, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4222), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1614), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4216), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4212), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35720] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3884), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1592), 2, + ACTIONS(4224), 1, + anon_sym_else, + STATE(1807), 1, + sym_else_clause, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(1395), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144820,7 +146929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 23, + ACTIONS(1393), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144844,17 +146953,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35702] = 6, + [35779] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1458), 1, - sym_label, - STATE(1593), 2, + ACTIONS(3910), 1, + anon_sym_COLON_COLON, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(3690), 15, + ACTIONS(3778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144870,7 +146979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3688), 24, + ACTIONS(3774), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -144895,90 +147004,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [35759] = 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(4132), 1, - sym_identifier, - ACTIONS(4134), 1, - anon_sym_fn, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(2675), 1, - sym_scoped_type_identifier, - STATE(3450), 1, - sym_generic_type, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3536), 1, - sym_function_modifiers, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - ACTIONS(3401), 2, - anon_sym_gen, - anon_sym_union, - STATE(1594), 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, - [35848] = 6, + [35836] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3846), 1, - anon_sym_COLON_COLON, - STATE(1595), 2, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3514), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -144988,10 +147029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 24, + ACTIONS(3516), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145011,17 +147052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [35905] = 5, + [35891] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1596), 2, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(3413), 16, + ACTIONS(3498), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145038,7 +147079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3415), 24, + ACTIONS(3500), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145063,18 +147104,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35960] = 6, + [35946] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3846), 2, - anon_sym_LBRACE, + ACTIONS(875), 1, + anon_sym_RBRACK, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, + anon_sym_CARET, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, + anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4226), 1, + anon_sym_SEMI, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4232), 1, + anon_sym_COMMA, + STATE(3017), 1, + aux_sym_arguments_repeat1, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4104), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1619), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36041] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4120), 1, + anon_sym_BANG, + ACTIONS(4234), 1, anon_sym_COLON_COLON, - STATE(1597), 2, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145090,7 +147202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 23, + ACTIONS(1451), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145114,22 +147226,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [36017] = 5, + [36100] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1598), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(3437), 16, + ACTIONS(3680), 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, @@ -145139,9 +147250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3439), 24, + ACTIONS(3678), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -145156,27 +147268,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - 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, - [36072] = 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [36155] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4200), 1, + anon_sym_CARET, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, + anon_sym_PIPE, + ACTIONS(4206), 1, + anon_sym_AMP_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4214), 1, + anon_sym_EQ, + ACTIONS(4220), 1, + anon_sym_DOT_DOT, + STATE(1470), 1, + sym_block, + STATE(3677), 1, + sym_label, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4222), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1622), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4216), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4212), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36250] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4080), 1, + ACTIONS(3740), 1, anon_sym_BANG, - ACTIONS(4136), 1, + ACTIONS(3742), 1, anon_sym_COLON_COLON, - STATE(1599), 2, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145192,7 +147374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 23, + ACTIONS(3412), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145216,38 +147398,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [36131] = 5, + [36309] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1600), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3650), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4200), 1, anon_sym_CARET, + ACTIONS(4202), 1, anon_sym_AMP, + ACTIONS(4204), 1, anon_sym_PIPE, + ACTIONS(4206), 1, + anon_sym_AMP_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4214), 1, + anon_sym_EQ, + ACTIONS(4220), 1, + anon_sym_DOT_DOT, + STATE(1479), 1, + sym_block, + STATE(3677), 1, + sym_label, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3648), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4222), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1624), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4216), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4212), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145258,74 +147468,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, - [36186] = 25, + [36404] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(883), 1, + ACTIONS(744), 1, anon_sym_RBRACK, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4138), 1, - anon_sym_SEMI, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4144), 1, + ACTIONS(4236), 1, + anon_sym_SEMI, + ACTIONS(4238), 1, anon_sym_COMMA, - STATE(3105), 1, + STATE(3117), 1, aux_sym_arguments_repeat1, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1601), 2, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145336,66 +147538,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36281] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [36499] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4206), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4208), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4214), 1, anon_sym_EQ, - ACTIONS(4170), 1, + ACTIONS(4220), 1, anon_sym_DOT_DOT, - STATE(412), 1, + STATE(483), 1, sym_block, - STATE(3676), 1, + STATE(3740), 1, sym_label, - ACTIONS(4146), 2, + ACTIONS(4196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, + ACTIONS(4222), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1602), 2, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4216), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4212), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145406,38 +147608,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36376] = 5, + [36594] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1603), 2, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4200), 1, + anon_sym_CARET, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, + anon_sym_PIPE, + ACTIONS(4206), 1, + anon_sym_AMP_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4214), 1, + anon_sym_EQ, + ACTIONS(4220), 1, + anon_sym_DOT_DOT, + STATE(482), 1, + sym_block, + STATE(3740), 1, + sym_label, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4222), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3664), 15, - anon_sym_PLUS, + ACTIONS(4198), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4216), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4212), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36689] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4200), 1, anon_sym_CARET, + ACTIONS(4202), 1, anon_sym_AMP, + ACTIONS(4204), 1, anon_sym_PIPE, + ACTIONS(4206), 1, + anon_sym_AMP_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4214), 1, + anon_sym_EQ, + ACTIONS(4220), 1, + anon_sym_DOT_DOT, + STATE(1813), 1, + sym_block, + STATE(3741), 1, + sym_label, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3662), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4222), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1628), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4216), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4212), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145448,23 +147748,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [36784] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4200), 1, + anon_sym_CARET, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, + anon_sym_PIPE, + ACTIONS(4206), 1, + anon_sym_AMP_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4214), 1, + anon_sym_EQ, + ACTIONS(4220), 1, + anon_sym_DOT_DOT, + STATE(1818), 1, + sym_block, + STATE(3741), 1, + sym_label, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4222), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1629), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4216), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [36431] = 5, + ACTIONS(4212), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [36879] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1604), 2, + ACTIONS(4054), 1, + anon_sym_COLON_COLON, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3674), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145480,11 +147844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3672), 25, + ACTIONS(3412), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145504,17 +147867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [36486] = 5, + [36936] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1605), 2, + ACTIONS(4240), 1, + anon_sym_COLON_COLON, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145530,11 +147895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3680), 25, + ACTIONS(1451), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145554,27 +147918,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_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [36541] = 7, + [36993] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4174), 1, - anon_sym_else, - STATE(1764), 1, - sym_else_clause, - STATE(1606), 2, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(1353), 15, + ACTIONS(3487), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -145584,7 +147945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1351), 23, + ACTIONS(3489), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145607,20 +147968,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, - [36600] = 7, + [37048] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3934), 1, - anon_sym_BANG, - ACTIONS(3936), 1, + ACTIONS(3910), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1607), 2, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145636,7 +147997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 23, + ACTIONS(3774), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145660,206 +148021,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [36659] = 25, + [37105] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, - anon_sym_RBRACK, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4176), 1, - anon_sym_SEMI, - ACTIONS(4178), 1, - anon_sym_COMMA, - STATE(3050), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1608), 2, + ACTIONS(1249), 1, + anon_sym_extern, + ACTIONS(3471), 1, + anon_sym_COLON_COLON, + ACTIONS(3479), 1, + sym_metavariable, + ACTIONS(4048), 1, + anon_sym_default, + ACTIONS(4242), 1, + sym_identifier, + ACTIONS(4244), 1, + anon_sym_fn, + STATE(2278), 1, + aux_sym_function_modifiers_repeat1, + STATE(2459), 1, + sym_extern_modifier, + STATE(2843), 1, + sym_scoped_type_identifier, + STATE(3513), 1, + sym_generic_type, + STATE(3588), 1, + sym_scoped_identifier, + STATE(3594), 1, + sym_bracketed_type, + STATE(3738), 1, + sym_generic_type_with_turbofish, + STATE(3776), 1, + sym_function_modifiers, + ACTIONS(3473), 2, + anon_sym_gen, + anon_sym_union, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [36754] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + ACTIONS(1233), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3477), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4046), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [37194] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, - anon_sym_CARET, - ACTIONS(4152), 1, - anon_sym_AMP, - ACTIONS(4154), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4170), 1, - anon_sym_DOT_DOT, - STATE(415), 1, - sym_block, - STATE(3676), 1, - sym_label, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4168), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4172), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1609), 2, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(3506), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 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, - [36849] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(871), 1, - anon_sym_RBRACK, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, anon_sym_CARET, - ACTIONS(4046), 1, + anon_sym_BANG, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4180), 1, - anon_sym_SEMI, - ACTIONS(4182), 1, - anon_sym_COMMA, - STATE(3101), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1610), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3508), 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, @@ -145870,66 +148130,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36944] = 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, + [37249] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(937), 1, - anon_sym_RBRACK, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(4186), 1, - anon_sym_COMMA, - STATE(2831), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1611), 2, + ACTIONS(3776), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(3778), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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(3774), 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, @@ -145940,66 +148182,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37039] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [37306] = 25, 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, - ACTIONS(3744), 1, + ACTIONS(941), 1, + anon_sym_RBRACK, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4170), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - STATE(1492), 1, - sym_block, - STATE(3664), 1, - sym_label, - ACTIONS(4146), 2, + ACTIONS(4246), 1, + anon_sym_SEMI, + ACTIONS(4248), 1, + anon_sym_COMMA, + STATE(2986), 1, + aux_sym_arguments_repeat1, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1612), 2, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146010,66 +148259,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37134] = 25, + [37401] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3744), 1, + ACTIONS(1249), 1, + anon_sym_extern, + ACTIONS(3471), 1, + anon_sym_COLON_COLON, + ACTIONS(3479), 1, + sym_metavariable, + ACTIONS(4048), 1, + anon_sym_default, + ACTIONS(4250), 1, + sym_identifier, + ACTIONS(4252), 1, + anon_sym_fn, + STATE(2278), 1, + aux_sym_function_modifiers_repeat1, + STATE(2459), 1, + sym_extern_modifier, + STATE(2725), 1, + sym_scoped_type_identifier, + STATE(3513), 1, + sym_generic_type, + STATE(3588), 1, + sym_scoped_identifier, + STATE(3594), 1, + sym_bracketed_type, + STATE(3613), 1, + sym_function_modifiers, + STATE(3738), 1, + sym_generic_type_with_turbofish, + ACTIONS(3473), 2, + anon_sym_gen, + anon_sym_union, + STATE(1638), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1233), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3477), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4046), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [37490] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(901), 1, + anon_sym_RBRACK, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4170), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - STATE(1469), 1, - sym_block, - STATE(3664), 1, - sym_label, - ACTIONS(4146), 2, + ACTIONS(4254), 1, + anon_sym_SEMI, + ACTIONS(4256), 1, + anon_sym_COMMA, + STATE(3154), 1, + aux_sym_arguments_repeat1, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1613), 2, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146080,22 +148396,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37229] = 5, + [37585] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1614), 2, + ACTIONS(4258), 1, + anon_sym_COLON_COLON, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(3457), 16, + ACTIONS(1449), 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, @@ -146105,7 +148422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3459), 24, + ACTIONS(1451), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146128,19 +148445,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [37284] = 6, + [37641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3884), 1, - anon_sym_COLON_COLON, - STATE(1615), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 15, + ACTIONS(3708), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146156,10 +148470,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3844), 24, + ACTIONS(3706), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146179,138 +148493,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_SQUOTE, + anon_sym_DASH_GT, anon_sym_as, - [37341] = 25, + [37695] = 5, 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(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, - anon_sym_CARET, - ACTIONS(4152), 1, - anon_sym_AMP, - ACTIONS(4154), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4170), 1, - anon_sym_DOT_DOT, - STATE(477), 1, - sym_block, - STATE(3717), 1, - sym_label, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4168), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4172), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1616), 2, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(3588), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 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, - [37436] = 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(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, anon_sym_CARET, - ACTIONS(4152), 1, anon_sym_AMP, - ACTIONS(4154), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4170), 1, - anon_sym_DOT_DOT, - STATE(471), 1, - sym_block, - STATE(3717), 1, - sym_label, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1617), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3586), 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, @@ -146321,136 +148536,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37531] = 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, + [37749] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, - anon_sym_CARET, - ACTIONS(4152), 1, - anon_sym_AMP, - ACTIONS(4154), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4170), 1, - anon_sym_DOT_DOT, - STATE(1770), 1, - sym_block, - STATE(3718), 1, - sym_label, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4168), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4172), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1618), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(3618), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 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, - [37626] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, anon_sym_CARET, - ACTIONS(4152), 1, anon_sym_AMP, - ACTIONS(4154), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4170), 1, - anon_sym_DOT_DOT, - STATE(1775), 1, - sym_block, - STATE(3718), 1, - sym_label, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1619), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3616), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146461,17 +148585,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37721] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [37803] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4030), 1, - anon_sym_COLON_COLON, - STATE(1620), 2, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3684), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146487,10 +148617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 24, + ACTIONS(3682), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146510,19 +148640,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_DASH_GT, anon_sym_as, - [37778] = 6, + [37857] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, - anon_sym_COLON_COLON, - STATE(1621), 2, + ACTIONS(4260), 1, + anon_sym_LPAREN, + STATE(1833), 1, + sym_arguments, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146538,10 +148670,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 24, - anon_sym_LPAREN, + ACTIONS(3730), 22, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -146561,24 +148692,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [37835] = 5, + [37915] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1622), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(3421), 16, + ACTIONS(3630), 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, @@ -146588,7 +148717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3423), 24, + ACTIONS(3628), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146613,175 +148742,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [37890] = 22, - ACTIONS(29), 1, - anon_sym_LT, + [37969] = 19, 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(4190), 1, - sym_identifier, - ACTIONS(4192), 1, - anon_sym_fn, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(2653), 1, - sym_scoped_type_identifier, - STATE(3450), 1, - sym_generic_type, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3488), 1, - sym_function_modifiers, - STATE(3591), 1, - sym_bracketed_type, - STATE(3656), 1, - sym_scoped_identifier, - 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, - [37979] = 22, - ACTIONS(29), 1, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4200), 1, + anon_sym_CARET, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, + anon_sym_PIPE, + ACTIONS(4206), 1, + anon_sym_AMP_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(403), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4218), 2, + anon_sym_GT, anon_sym_LT, - 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(4194), 1, - sym_identifier, - ACTIONS(4196), 1, - anon_sym_fn, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, - STATE(2567), 1, - sym_scoped_type_identifier, - STATE(3450), 1, - sym_generic_type, - STATE(3457), 1, - sym_generic_type_with_turbofish, - STATE(3591), 1, - sym_bracketed_type, - STATE(3606), 1, - sym_function_modifiers, - STATE(3656), 1, - sym_scoped_identifier, - ACTIONS(3401), 2, - anon_sym_gen, - anon_sym_union, - STATE(1624), 2, + STATE(1647), 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, - [38068] = 7, + ACTIONS(4198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4216), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(401), 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, + [38051] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4198), 1, - anon_sym_SQUOTE, - STATE(1898), 1, - sym_label, - STATE(1625), 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, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4200), 1, anon_sym_CARET, + ACTIONS(4202), 1, anon_sym_AMP, + ACTIONS(4204), 1, anon_sym_PIPE, + ACTIONS(4206), 1, + anon_sym_AMP_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4262), 1, + anon_sym_DOT_DOT, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3688), 23, + ACTIONS(4264), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1648), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4216), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 13, anon_sym_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, @@ -146792,46 +148869,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, - [38127] = 6, + anon_sym_SQUOTE, + [38137] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4128), 1, + anon_sym_EQ, ACTIONS(4200), 1, - anon_sym_COLON_COLON, - STATE(1626), 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(4202), 1, anon_sym_AMP, + ACTIONS(4204), 1, anon_sym_PIPE, + ACTIONS(4206), 1, + anon_sym_AMP_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4262), 1, + anon_sym_DOT_DOT, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3425), 23, + ACTIONS(4264), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1649), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4216), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 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, @@ -146842,69 +148934,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, - [38183] = 22, + anon_sym_SQUOTE, + [38223] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4159), 1, + anon_sym_EQ, + ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4206), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4208), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, - ACTIONS(4202), 1, + ACTIONS(4262), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, + ACTIONS(4264), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1627), 2, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(3788), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4148), 3, + ACTIONS(4198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4216), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4157), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146915,15 +148999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38271] = 5, + anon_sym_SQUOTE, + [38309] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1628), 2, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(3686), 15, + ACTIONS(3716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146939,7 +149024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3684), 24, + ACTIONS(3714), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146964,45 +149049,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_DASH_GT, anon_sym_as, - [38325] = 14, + [38363] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, - anon_sym_CARET, - ACTIONS(4152), 1, - anon_sym_AMP, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1629), 2, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(3584), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 21, + ACTIONS(3582), 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, @@ -147021,80 +149096,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, - [38397] = 18, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4210), 1, - anon_sym_RBRACE, - ACTIONS(4212), 1, - anon_sym_STAR, - ACTIONS(4216), 1, - anon_sym_COMMA, - ACTIONS(4218), 1, anon_sym_COLON_COLON, - ACTIONS(4222), 1, - sym_metavariable, - STATE(2516), 1, - sym_scoped_identifier, - STATE(3119), 1, - sym__use_clause, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3688), 1, - sym_bracketed_type, - STATE(1630), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4220), 3, - sym_self, - sym_super, - sym_crate, - STATE(3015), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4214), 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, - [38477] = 6, + anon_sym_as, + [38417] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4224), 1, + ACTIONS(3742), 1, anon_sym_COLON_COLON, - STATE(1631), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147110,7 +149124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 23, + ACTIONS(3412), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147134,39 +149148,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38533] = 5, + [38473] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1632), 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, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4266), 1, + anon_sym_RPAREN, + ACTIONS(4268), 1, + anon_sym_COMMA, + STATE(2888), 1, + aux_sym_arguments_repeat1, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1654), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3409), 22, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147175,51 +149214,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [38587] = 10, + [38565] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(999), 1, + anon_sym_RBRACK, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - STATE(1633), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3860), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4094), 1, anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4270), 1, + anon_sym_COMMA, + STATE(2896), 1, + aux_sym_arguments_repeat1, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1655), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147230,22 +149284,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_SQUOTE, - [38651] = 5, + [38657] = 18, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1634), 2, + ACTIONS(4272), 1, + sym_identifier, + ACTIONS(4274), 1, + anon_sym_LBRACE, + ACTIONS(4276), 1, + anon_sym_RBRACE, + ACTIONS(4278), 1, + anon_sym_STAR, + ACTIONS(4282), 1, + anon_sym_COMMA, + ACTIONS(4284), 1, + anon_sym_COLON_COLON, + ACTIONS(4288), 1, + sym_metavariable, + STATE(2502), 1, + sym_scoped_identifier, + STATE(3023), 1, + sym__use_clause, + STATE(3461), 1, + sym_bracketed_type, + STATE(3618), 1, + sym_generic_type_with_turbofish, + STATE(1656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4286), 3, + sym_self, + sym_super, + sym_crate, + STATE(2952), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4280), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [38737] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4290), 1, + anon_sym_COLON_COLON, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(3628), 15, + ACTIONS(3520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147261,7 +149372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3626), 24, + ACTIONS(3518), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147284,56 +149395,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [38705] = 17, + [38793] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(1011), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(3860), 2, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4292), 1, + anon_sym_COMMA, + STATE(2929), 1, + aux_sym_arguments_repeat1, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - STATE(1635), 2, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3858), 17, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147344,47 +149464,35 @@ 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, - [38783] = 13, + [38885] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4152), 1, - anon_sym_AMP, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1636), 2, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(3634), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 21, + ACTIONS(3632), 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, @@ -147403,16 +149511,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, - [38853] = 5, + anon_sym_COLON_COLON, + anon_sym_as, + [38939] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1637), 2, + ACTIONS(4294), 1, + anon_sym_COLON_COLON, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 15, + ACTIONS(3528), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147428,7 +149539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1395), 24, + ACTIONS(3526), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147452,16 +149563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [38907] = 5, + [38995] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1638), 2, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 15, + ACTIONS(3698), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147477,7 +149587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1413), 24, + ACTIONS(3696), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147500,17 +149610,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, - [38961] = 5, + [39049] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1639), 2, + ACTIONS(4296), 1, + anon_sym_DASH_GT, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(1393), 15, + ACTIONS(3638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147526,7 +149638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1391), 24, + ACTIONS(3636), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147550,38 +149662,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [39015] = 6, + [39105] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4226), 1, - anon_sym_DASH_GT, - STATE(1640), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4200), 1, + anon_sym_CARET, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(3632), 15, - anon_sym_PLUS, + ACTIONS(4198), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3922), 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(3630), 23, + ACTIONS(3920), 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, @@ -147600,38 +149719,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, - [39071] = 5, + anon_sym_SQUOTE, + [39177] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1389), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(959), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4298), 1, + anon_sym_COMMA, + STATE(2979), 1, + aux_sym_arguments_repeat1, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1387), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1664), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147642,45 +149788,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [39125] = 5, + [39269] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4169), 1, + anon_sym_EQ, + ACTIONS(4200), 1, + anon_sym_CARET, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, + anon_sym_PIPE, + ACTIONS(4206), 1, + anon_sym_AMP_AMP, + ACTIONS(4208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4262), 1, + anon_sym_DOT_DOT, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4218), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4264), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(1385), 15, - anon_sym_PLUS, + ACTIONS(4198), 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(1383), 24, + ACTIONS(4216), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4167), 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, @@ -147691,23 +149852,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [39179] = 5, + anon_sym_SQUOTE, + [39355] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1643), 2, + ACTIONS(4294), 1, + anon_sym_COLON_COLON, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(3604), 15, + ACTIONS(3524), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147723,7 +149879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3602), 24, + ACTIONS(3522), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147746,64 +149902,55 @@ 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, - [39233] = 22, + [39411] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(3922), 2, anon_sym_EQ, - ACTIONS(4140), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1644), 2, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4228), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4048), 4, + ACTIONS(4216), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(3920), 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, @@ -147814,37 +149961,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39321] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [39489] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4230), 1, - anon_sym_COLON_COLON, - STATE(1645), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 15, - anon_sym_PLUS, + ACTIONS(4198), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3922), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 23, + ACTIONS(3920), 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, @@ -147863,18 +150019,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39377] = 6, + anon_sym_SQUOTE, + [39557] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4232), 1, + ACTIONS(4294), 1, anon_sym_COLON_COLON, - STATE(1646), 2, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 15, + ACTIONS(3534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147890,7 +150046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 23, + ACTIONS(3532), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147914,122 +150070,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39433] = 24, + [39613] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1001), 1, - anon_sym_RBRACK, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4234), 1, - anon_sym_COMMA, - STATE(3038), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, + ACTIONS(4196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1647), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [39525] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(3922), 9, anon_sym_CARET, - ACTIONS(4152), 1, anon_sym_AMP, - ACTIONS(4154), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(3860), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1648), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3858), 16, + anon_sym_DOT_DOT, + ACTIONS(3920), 21, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -148041,20 +150118,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + 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, - [39605] = 6, + [39679] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4236), 1, + ACTIONS(4300), 1, anon_sym_DASH_GT, - STATE(1649), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(3638), 15, + ACTIONS(3644), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148070,7 +150151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3636), 23, + ACTIONS(3642), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148094,56 +150175,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39661] = 19, + [39735] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4206), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4208), 1, anon_sym_PIPE_PIPE, - ACTIONS(381), 2, + ACTIONS(4214), 1, anon_sym_EQ, + ACTIONS(4262), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - STATE(1650), 2, + ACTIONS(4264), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(3958), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4216), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(379), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4212), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148154,63 +150241,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39743] = 21, + [39823] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4302), 1, + anon_sym_DASH_GT, + STATE(1673), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3650), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4152), 1, anon_sym_AMP, - ACTIONS(4154), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4202), 1, - anon_sym_DOT_DOT, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1651), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3648), 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, @@ -148221,61 +150284,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39829] = 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, + [39879] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(987), 1, + anon_sym_RBRACK, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4088), 1, - anon_sym_EQ, - ACTIONS(4150), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4202), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4304), 1, + anon_sym_COMMA, + STATE(3039), 1, + aux_sym_arguments_repeat1, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1652), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4086), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148286,105 +150359,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39915] = 21, + [39971] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4150), 1, + ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4206), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4208), 1, anon_sym_PIPE_PIPE, - ACTIONS(4202), 1, + ACTIONS(4214), 1, + anon_sym_EQ, + ACTIONS(4262), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, + ACTIONS(4264), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1653), 2, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4022), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4216), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - 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, - [40001] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4238), 1, - anon_sym_DASH_GT, - STATE(1654), 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_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4212), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148395,24 +150425,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, - [40057] = 6, + [40059] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4240), 1, - anon_sym_DASH_GT, - STATE(1655), 2, + ACTIONS(4306), 1, + anon_sym_COLON_COLON, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(3644), 15, + ACTIONS(3520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148428,7 +150451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3642), 23, + ACTIONS(3518), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148452,119 +150475,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40113] = 11, + [40115] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1656), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3860), 9, + ACTIONS(4094), 1, anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, + ACTIONS(4098), 1, 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(3858), 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, - [40179] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 1, - anon_sym_RPAREN, - ACTIONS(4244), 1, - anon_sym_COMMA, - STATE(2873), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1657), 2, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4308), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148575,64 +150541,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40271] = 24, + [40203] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, - anon_sym_RBRACK, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4246), 1, - anon_sym_COMMA, - STATE(2880), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1658), 2, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4310), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148643,19 +150607,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40363] = 7, + [40291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4248), 1, - anon_sym_LPAREN, - STATE(1891), 1, - sym_arguments, - STATE(1659), 2, + ACTIONS(4294), 1, + anon_sym_COLON_COLON, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(3708), 15, + ACTIONS(3520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148671,7 +150633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3704), 22, + ACTIONS(3518), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -148694,64 +150657,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40421] = 24, + [40347] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(949), 1, - anon_sym_RPAREN, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4206), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4208), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4262), 1, anon_sym_DOT_DOT, - ACTIONS(4250), 1, - anon_sym_COMMA, - STATE(2921), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, + ACTIONS(4196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4264), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1660), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4216), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4108), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148762,60 +150721,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40513] = 21, + anon_sym_SQUOTE, + [40433] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4058), 1, - anon_sym_EQ, - ACTIONS(4150), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4202), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4312), 1, + anon_sym_RPAREN, + ACTIONS(4314), 1, + anon_sym_COMMA, + STATE(2975), 1, + aux_sym_arguments_repeat1, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4104), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1681), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [40525] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + STATE(1682), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3922), 11, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, + anon_sym_DOT_DOT, + ACTIONS(3920), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1661), 2, + anon_sym_SQUOTE, + [40589] = 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(4148), 3, + ACTIONS(1429), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4054), 13, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1427), 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, @@ -148826,59 +150885,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_SQUOTE, - [40599] = 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, + anon_sym_else, + [40643] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4066), 1, + ACTIONS(4136), 1, anon_sym_EQ, - ACTIONS(4150), 1, + ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4206), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4208), 1, anon_sym_PIPE_PIPE, - ACTIONS(4202), 1, + ACTIONS(4262), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, + ACTIONS(4264), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1662), 2, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4216), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 13, + ACTIONS(4134), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -148892,17 +150958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [40685] = 6, + [40729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4252), 1, - anon_sym_DASH_GT, - STATE(1663), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(3614), 15, + ACTIONS(1437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148918,7 +150982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3612), 23, + ACTIONS(1435), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148942,46 +151006,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40741] = 15, + anon_sym_else, + [40783] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4150), 1, - anon_sym_CARET, - ACTIONS(4152), 1, - anon_sym_AMP, - ACTIONS(4154), 1, - anon_sym_PIPE, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1664), 2, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(1433), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 21, + ACTIONS(1431), 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, @@ -149000,36 +151054,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_SQUOTE, - [40815] = 5, + anon_sym_as, + anon_sym_else, + [40837] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1665), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3554), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4200), 1, anon_sym_CARET, + ACTIONS(4202), 1, anon_sym_AMP, + ACTIONS(4204), 1, anon_sym_PIPE, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1687), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3922), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3552), 24, + ACTIONS(3920), 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, @@ -149048,66 +151114,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [40869] = 24, + anon_sym_SQUOTE, + [40911] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1025), 1, - anon_sym_RPAREN, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4206), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4208), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4214), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4262), 1, anon_sym_DOT_DOT, - ACTIONS(4254), 1, - anon_sym_COMMA, - STATE(3037), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, + ACTIONS(4196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4264), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1666), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(3878), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4216), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4212), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149118,15 +151181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40961] = 5, + [40999] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1667), 2, + ACTIONS(4316), 1, + anon_sym_COLON_COLON, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(3558), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149142,7 +151207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3556), 24, + ACTIONS(1451), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149165,82 +151230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [41015] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, anon_sym_as, - ACTIONS(4150), 1, - anon_sym_CARET, - ACTIONS(4152), 1, - anon_sym_AMP, - ACTIONS(4154), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4074), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4168), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1668), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4148), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4072), 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, - [41097] = 6, + [41055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4256), 1, - anon_sym_DASH_GT, - STATE(1669), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(3620), 15, + ACTIONS(1421), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149256,7 +151255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3618), 23, + ACTIONS(1419), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149280,15 +151279,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41153] = 5, + anon_sym_else, + [41109] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1670), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(3654), 15, + ACTIONS(1425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149304,7 +151304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3652), 24, + ACTIONS(1423), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149327,19 +151327,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, - [41207] = 6, + anon_sym_else, + [41163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4258), 1, - anon_sym_COLON_COLON, - STATE(1671), 2, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3485), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149350,12 +151348,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(1431), 23, + ACTIONS(3483), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149370,71 +151370,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41263] = 22, + anon_sym_LT2, + [41217] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4150), 1, - anon_sym_CARET, - ACTIONS(4152), 1, - anon_sym_AMP, - ACTIONS(4154), 1, - anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, - anon_sym_EQ, ACTIONS(4202), 1, - anon_sym_DOT_DOT, - ACTIONS(4146), 2, + anon_sym_AMP, + ACTIONS(4196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4204), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1672), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(4000), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4148), 3, + ACTIONS(4198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(3922), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3920), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149445,17 +151428,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41351] = 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, + [41287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4232), 1, - anon_sym_COLON_COLON, - STATE(1673), 2, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(3431), 15, + ACTIONS(3658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149471,7 +151459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3429), 23, + ACTIONS(3656), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149494,18 +151482,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, - [41407] = 6, + [41341] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3936), 1, - anon_sym_COLON_COLON, - STATE(1674), 2, + ACTIONS(4318), 1, + anon_sym_DASH_GT, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3688), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149521,7 +151510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3340), 23, + ACTIONS(3686), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149545,62 +151534,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41463] = 22, + [41397] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4320), 1, + anon_sym_DASH_GT, + STATE(1696), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3662), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1675), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4260), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3660), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149611,43 +151577,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41551] = 12, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41453] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4146), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4160), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1676), 2, + ACTIONS(4322), 1, + anon_sym_DASH_GT, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(3668), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 21, + ACTIONS(3666), 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, @@ -149666,18 +151633,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [41619] = 6, + anon_sym_as, + [41509] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4262), 1, + ACTIONS(4324), 1, anon_sym_DASH_GT, - STATE(1677), 2, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, + ACTIONS(3674), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149693,7 +151660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3656), 23, + ACTIONS(3672), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149717,64 +151684,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41675] = 24, + [41565] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4206), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4208), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4165), 2, anon_sym_EQ, - ACTIONS(4140), 1, anon_sym_DOT_DOT, - ACTIONS(4264), 1, - anon_sym_RPAREN, - ACTIONS(4266), 1, - anon_sym_COMMA, - STATE(2972), 1, - aux_sym_arguments_repeat1, - ACTIONS(4038), 2, + ACTIONS(4196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1678), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4216), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4163), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149785,38 +151744,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41767] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [41647] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4232), 1, - anon_sym_COLON_COLON, - STATE(1679), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3451), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4200), 1, anon_sym_CARET, + ACTIONS(4202), 1, anon_sym_AMP, + ACTIONS(4204), 1, anon_sym_PIPE, + ACTIONS(4206), 1, + anon_sym_AMP_AMP, + ACTIONS(3922), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3449), 23, + STATE(1700), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4216), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3920), 16, anon_sym_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, @@ -149828,94 +151806,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41823] = 6, + anon_sym_SQUOTE, + [41727] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4232), 1, - anon_sym_COLON_COLON, - STATE(1680), 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, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4326), 1, + anon_sym_RPAREN, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_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(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41879] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1681), 2, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 15, - anon_sym_PLUS, + ACTIONS(4092), 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(3666), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149926,23 +151875,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [41933] = 5, + [41816] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1682), 2, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(3588), 15, + ACTIONS(3840), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149958,7 +151899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3586), 24, + ACTIONS(3838), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149981,17 +151922,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [41987] = 5, + [41869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(3600), 15, + ACTIONS(3734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150007,7 +151947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3598), 24, + ACTIONS(3730), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150030,62 +151970,110 @@ 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, - [42041] = 21, + [41922] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + STATE(1704), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3520), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3518), 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, + [41975] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4096), 1, - anon_sym_EQ, - ACTIONS(4150), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4156), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4202), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1684), 2, + ACTIONS(4330), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4094), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150096,16 +152084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [42127] = 5, + [42062] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 15, + ACTIONS(3884), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150121,7 +152108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3676), 24, + ACTIONS(3882), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150144,64 +152131,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [42181] = 22, + [42115] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4156), 1, - anon_sym_AMP_AMP, - ACTIONS(4158), 1, + ACTIONS(4208), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4214), 1, anon_sym_EQ, - ACTIONS(4202), 1, + ACTIONS(4220), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4334), 1, + anon_sym_AMP_AMP, + ACTIONS(4196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4204), 2, + ACTIONS(4222), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1686), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3940), 3, - anon_sym_LPAREN, + ACTIONS(4332), 2, anon_sym_LBRACE, anon_sym_SQUOTE, - ACTIONS(4148), 3, + STATE(1707), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4216), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4212), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150212,54 +152197,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42269] = 17, + [42202] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4340), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(3860), 2, + ACTIONS(4346), 1, + anon_sym_AMP_AMP, + ACTIONS(4348), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4354), 1, anon_sym_EQ, + ACTIONS(4360), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4022), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - STATE(1687), 2, + ACTIONS(4362), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4356), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3858), 16, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4352), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150270,17 +152262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [42346] = 5, + [42289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1688), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150296,7 +152286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 23, + ACTIONS(3906), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150320,15 +152310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42399] = 5, + [42342] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1689), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, + ACTIONS(4038), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150344,7 +152334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3850), 23, + ACTIONS(4036), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150368,15 +152358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42452] = 5, + [42395] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1690), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(3982), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150392,7 +152382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3980), 23, + ACTIONS(1451), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150416,15 +152406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42505] = 5, + [42448] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150440,7 +152430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 23, + ACTIONS(3902), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150464,15 +152454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42558] = 5, + [42501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1692), 2, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(3790), 15, + ACTIONS(3888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150488,7 +152478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3788), 23, + ACTIONS(3886), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150512,21 +152502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42611] = 8, + [42554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4288), 1, - anon_sym_DOT, - STATE(1693), 2, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(3958), 14, + ACTIONS(3892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150540,10 +152524,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(3956), 21, + ACTIONS(3890), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150563,61 +152550,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42670] = 22, + [42607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4296), 1, + STATE(1715), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3372), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4298), 1, anon_sym_AMP, - ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, - anon_sym_EQ, - ACTIONS(4316), 1, - anon_sym_DOT_DOT, - ACTIONS(3940), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4292), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4306), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3374), 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(1694), 2, + anon_sym_as, + [42660] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(1449), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4308), 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(1451), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150628,15 +152639,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42757] = 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, + [42713] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1695), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(3708), 15, + ACTIONS(3524), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150652,7 +152670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3704), 23, + ACTIONS(3522), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150676,15 +152694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42810] = 5, + [42766] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1696), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(3752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150700,7 +152718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 23, + ACTIONS(3750), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150724,15 +152742,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42863] = 5, + [42819] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1697), 2, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, + ACTIONS(3792), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150746,13 +152770,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(1431), 23, + ACTIONS(3788), 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, @@ -150772,15 +152793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42916] = 5, + [42878] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1698), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3912), 15, + ACTIONS(3534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150796,7 +152817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3910), 23, + ACTIONS(3532), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150820,15 +152841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42969] = 5, + [42931] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1699), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(3882), 15, + ACTIONS(3914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150844,7 +152865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3880), 23, + ACTIONS(3912), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150868,15 +152889,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43022] = 5, + [42984] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1700), 2, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(3431), 15, + ACTIONS(3836), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150890,13 +152917,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(3429), 23, + ACTIONS(3834), 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, @@ -150916,62 +152940,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43075] = 23, + [43043] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4169), 1, + anon_sym_EQ, + ACTIONS(4340), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4342), 1, + anon_sym_AMP, + ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4346), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4348), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4360), 1, anon_sym_DOT_DOT, - ACTIONS(4320), 1, - anon_sym_SEMI, - ACTIONS(4322), 1, - anon_sym_else, - ACTIONS(4038), 2, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4362), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1701), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4356), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4167), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150982,62 +153004,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43164] = 23, + [43128] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4340), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4342), 1, + anon_sym_AMP, + ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4346), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4348), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4354), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4360), 1, anon_sym_DOT_DOT, - ACTIONS(4324), 1, - anon_sym_SEMI, - ACTIONS(4326), 1, - anon_sym_else, - ACTIONS(4038), 2, + ACTIONS(3878), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4362), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1702), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4356), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4352), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151048,15 +153069,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43253] = 5, + [43215] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1703), 2, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(4016), 15, + ACTIONS(3922), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151070,13 +153099,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(4014), 23, + ACTIONS(3920), 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, @@ -151095,86 +153121,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_as, - [43306] = 5, + [43276] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1704), 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(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4104), 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_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(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43359] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1705), 2, + ACTIONS(4372), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 15, - anon_sym_PLUS, + ACTIONS(4092), 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(3854), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151185,27 +153186,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, - [43412] = 5, + [43363] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1706), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(3928), 15, - anon_sym_PLUS, + ACTIONS(4338), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3922), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -151214,13 +153217,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(3926), 23, + ACTIONS(3920), 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, @@ -151239,39 +153239,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, - [43465] = 8, + [43426] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(4288), 1, + ACTIONS(3796), 1, anon_sym_DOT, - STATE(1707), 2, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4342), 1, + anon_sym_AMP, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4350), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 14, - anon_sym_PLUS, + ACTIONS(4338), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3922), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3742), 21, + ACTIONS(3920), 20, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -151290,36 +153295,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, - [43524] = 5, + [43495] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1708), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4350), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, - anon_sym_PLUS, + ACTIONS(4338), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3922), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1431), 23, + ACTIONS(3920), 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, @@ -151338,36 +153350,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, - [43577] = 5, + [43562] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4340), 1, + anon_sym_CARET, + ACTIONS(4342), 1, + anon_sym_AMP, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4350), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(3878), 15, - anon_sym_PLUS, + ACTIONS(4338), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3922), 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(3876), 23, + ACTIONS(3920), 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, @@ -151386,36 +153407,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, - [43630] = 5, + [43633] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1710), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3736), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4340), 1, anon_sym_CARET, + ACTIONS(4342), 1, anon_sym_AMP, + ACTIONS(4344), 1, anon_sym_PIPE, + ACTIONS(3922), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3734), 23, + STATE(1731), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4338), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4356), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3920), 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, @@ -151428,43 +153465,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, - [43683] = 5, + [43710] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1711), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3740), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4340), 1, anon_sym_CARET, + ACTIONS(4342), 1, anon_sym_AMP, + ACTIONS(4344), 1, anon_sym_PIPE, + ACTIONS(4346), 1, + anon_sym_AMP_AMP, + ACTIONS(3922), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3738), 23, + STATE(1732), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4338), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4356), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3920), 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, @@ -151476,27 +153526,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, - [43736] = 5, + [43789] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1712), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(1429), 15, - anon_sym_PLUS, + ACTIONS(4338), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3922), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -151505,13 +153560,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(1431), 23, + ACTIONS(3920), 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, @@ -151530,38 +153582,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, - [43789] = 5, + [43854] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1713), 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(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4340), 1, anon_sym_CARET, + ACTIONS(4342), 1, anon_sym_AMP, + ACTIONS(4344), 1, anon_sym_PIPE, + ACTIONS(4346), 1, + anon_sym_AMP_AMP, + ACTIONS(4348), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4360), 1, + anon_sym_DOT_DOT, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3752), 23, + ACTIONS(4362), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1734), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4338), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4356), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4108), 12, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151572,44 +153646,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43842] = 5, + [43939] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1714), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3758), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4136), 1, + anon_sym_EQ, + ACTIONS(4340), 1, anon_sym_CARET, + ACTIONS(4342), 1, anon_sym_AMP, + ACTIONS(4344), 1, anon_sym_PIPE, + ACTIONS(4346), 1, + anon_sym_AMP_AMP, + ACTIONS(4348), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4360), 1, + anon_sym_DOT_DOT, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3756), 23, + ACTIONS(4362), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1735), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4338), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4356), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4134), 12, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151620,42 +153710,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43895] = 5, + [44024] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1715), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3762), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4340), 1, anon_sym_CARET, + ACTIONS(4342), 1, anon_sym_AMP, + ACTIONS(4344), 1, anon_sym_PIPE, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1736), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4338), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3922), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3760), 23, + ACTIONS(3920), 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, @@ -151674,61 +153768,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, - [43948] = 21, + [44097] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4340), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4158), 1, + ACTIONS(4346), 1, + anon_sym_AMP_AMP, + ACTIONS(4348), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4165), 2, anon_sym_EQ, - ACTIONS(4170), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1716), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4328), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4166), 4, + ACTIONS(4356), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4163), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151739,37 +153828,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44033] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [44178] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1717), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3766), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4374), 1, + anon_sym_SEMI, + ACTIONS(4376), 1, + anon_sym_else, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3764), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1738), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151780,49 +153896,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, - [44086] = 9, + [44267] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(4288), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(4290), 1, + ACTIONS(3924), 1, anon_sym_as, - STATE(1718), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3860), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4094), 1, anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4378), 1, + anon_sym_RBRACE, + ACTIONS(4380), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1739), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151833,21 +153962,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, - [44147] = 5, + [44356] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1719), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(3954), 15, + ACTIONS(3972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151863,7 +153986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3952), 23, + ACTIONS(3970), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151887,15 +154010,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44200] = 5, + [44409] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1720), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(3810), 15, + ACTIONS(3988), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151911,7 +154034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3808), 23, + ACTIONS(3986), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151935,37 +154058,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44253] = 5, + [44462] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1721), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3814), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4386), 1, anon_sym_CARET, + ACTIONS(4388), 1, anon_sym_AMP, + ACTIONS(4390), 1, anon_sym_PIPE, + ACTIONS(4392), 1, + anon_sym_AMP_AMP, + ACTIONS(4394), 1, + anon_sym_PIPE_PIPE, + ACTIONS(403), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3812), 23, + STATE(1742), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4384), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4398), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(401), 14, anon_sym_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, @@ -151976,22 +154118,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, - [44306] = 5, + [44543] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1722), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(3818), 15, + ACTIONS(3756), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152007,7 +154144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3816), 23, + ACTIONS(3754), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152031,127 +154168,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44359] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1059), 1, - anon_sym_RPAREN, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1723), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [44448] = 22, + [44596] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4340), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4158), 1, + ACTIONS(4346), 1, + anon_sym_AMP_AMP, + ACTIONS(4348), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4354), 1, anon_sym_EQ, - ACTIONS(4170), 1, + ACTIONS(4402), 1, + anon_sym_LBRACE, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4334), 1, - anon_sym_AMP_AMP, - ACTIONS(4146), 2, + STATE(420), 1, + sym_match_block, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, + ACTIONS(4406), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4332), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1724), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4166), 4, + ACTIONS(4356), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4352), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152162,15 +154234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44535] = 5, + [44685] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1725), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(3870), 15, + ACTIONS(3764), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152186,7 +154258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3868), 23, + ACTIONS(3762), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152210,15 +154282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44588] = 5, + [44738] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1726), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(3874), 15, + ACTIONS(3964), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152234,7 +154306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3872), 23, + ACTIONS(3962), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152258,15 +154330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44641] = 5, + [44791] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1727), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(3920), 15, + ACTIONS(3786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152282,7 +154354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3918), 23, + ACTIONS(3784), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152306,15 +154378,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44694] = 5, + [44844] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1728), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4340), 1, + anon_sym_CARET, + ACTIONS(4342), 1, + anon_sym_AMP, + ACTIONS(4344), 1, + anon_sym_PIPE, + ACTIONS(4346), 1, + anon_sym_AMP_AMP, + ACTIONS(4348), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(4360), 1, + anon_sym_DOT_DOT, + ACTIONS(3958), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4350), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4358), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4362), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1748), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4338), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4356), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4352), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44931] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 15, + ACTIONS(3848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152330,7 +154467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3922), 23, + ACTIONS(3846), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152354,122 +154491,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44747] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4212), 1, - anon_sym_STAR, - ACTIONS(4218), 1, - anon_sym_COLON_COLON, - ACTIONS(4222), 1, - sym_metavariable, - ACTIONS(4336), 1, - anon_sym_RBRACE, - STATE(2516), 1, - sym_scoped_identifier, - STATE(3326), 1, - sym__use_clause, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3688), 1, - sym_bracketed_type, - STATE(1729), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4220), 3, - sym_self, - sym_super, - sym_crate, - STATE(3015), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4214), 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, - [44824] = 23, + [44984] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4386), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4388), 1, + anon_sym_AMP, + ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4392), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4394), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4408), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4382), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4410), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1730), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4384), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4398), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(341), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152480,15 +154555,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44913] = 5, + [45069] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(1583), 15, + ACTIONS(3856), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152504,7 +154579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1585), 23, + ACTIONS(3854), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152528,15 +154603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44966] = 5, + [45122] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1732), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(1479), 15, + ACTIONS(3768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152552,7 +154627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1477), 23, + ACTIONS(3766), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152576,15 +154651,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45019] = 5, + [45175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1733), 2, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(1495), 15, + ACTIONS(3528), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152600,7 +154675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1493), 23, + ACTIONS(3526), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152624,15 +154699,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45072] = 5, + [45228] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1734), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 15, + ACTIONS(3778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152648,7 +154723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1467), 23, + ACTIONS(3774), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152672,15 +154747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45125] = 5, + [45281] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1735), 2, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(1531), 15, + ACTIONS(3860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152696,7 +154771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1529), 23, + ACTIONS(3858), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152720,15 +154795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45178] = 5, + [45334] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1736), 2, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(1515), 15, + ACTIONS(3864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152744,7 +154819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1513), 23, + ACTIONS(3862), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152768,210 +154843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45231] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4088), 1, - anon_sym_EQ, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4276), 1, - anon_sym_CARET, - ACTIONS(4278), 1, - anon_sym_AMP, - ACTIONS(4280), 1, - anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, - anon_sym_AMP_AMP, - ACTIONS(4342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, - anon_sym_DOT_DOT, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4286), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4346), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1737), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4272), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4284), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4086), 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, - [45316] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4000), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1738), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [45403] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4348), 1, - anon_sym_SEMI, - ACTIONS(4350), 1, - anon_sym_else, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1739), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [45492] = 5, + [45387] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1740), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 15, + ACTIONS(3772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152987,7 +154867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3776), 23, + ACTIONS(3770), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153011,15 +154891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45545] = 5, + [45440] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(3868), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153035,7 +154915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 23, + ACTIONS(3866), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153059,60 +154939,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45598] = 21, + [45493] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4096), 1, - anon_sym_EQ, - ACTIONS(4268), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1742), 2, + ACTIONS(4412), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4102), 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_EQ_GT, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153123,15 +155004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45683] = 5, + [45580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 15, + ACTIONS(3782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153147,7 +155028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1421), 23, + ACTIONS(3780), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153171,15 +155052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45736] = 5, + [45633] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1744), 2, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(3986), 15, + ACTIONS(3872), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153195,7 +155076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3984), 23, + ACTIONS(3870), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153219,15 +155100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45789] = 5, + [45686] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(1527), 15, + ACTIONS(3800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153243,7 +155124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1525), 23, + ACTIONS(3798), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153267,61 +155148,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45842] = 22, + [45739] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4200), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4208), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4214), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4220), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4196), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4222), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4352), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1746), 2, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4198), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4414), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4216), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4212), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153332,80 +155212,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45929] = 22, + [45824] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(3788), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1747), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [46016] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1748), 2, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 15, + ACTIONS(3808), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153419,13 +155240,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(1433), 23, + ACTIONS(3806), 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, @@ -153445,15 +155263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46069] = 5, + [45883] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1749), 2, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3798), 15, + ACTIONS(3928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153469,7 +155287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3796), 23, + ACTIONS(3926), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153493,29 +155311,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46122] = 10, + [45936] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - STATE(1750), 2, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(3932), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153524,10 +155333,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(3858), 20, + ACTIONS(3930), 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, @@ -153546,44 +155358,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46185] = 13, + anon_sym_as, + [45989] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4278), 1, - anon_sym_AMP, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1751), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(3936), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 20, + ACTIONS(3934), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -153602,43 +155406,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46254] = 12, + anon_sym_as, + [46042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1752), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(3940), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 20, + ACTIONS(3938), 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, @@ -153657,45 +155454,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46321] = 14, + anon_sym_as, + [46095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4276), 1, - anon_sym_CARET, - ACTIONS(4278), 1, - anon_sym_AMP, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1753), 2, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(3944), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 20, + ACTIONS(3942), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -153714,120 +155502,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46392] = 23, + anon_sym_as, + [46148] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4354), 1, - anon_sym_RBRACE, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1754), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(3948), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [46481] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4276), 1, anon_sym_CARET, - ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4280), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, - anon_sym_AMP_AMP, - ACTIONS(3860), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1755), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4272), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4284), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3858), 15, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3946), 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, @@ -153839,32 +155544,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, - [46560] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1756), 2, + anon_sym_as, + [46201] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(3952), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153873,10 +155573,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(3858), 20, + 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, @@ -153895,60 +155598,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46625] = 21, + anon_sym_as, + [46254] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4058), 1, - anon_sym_EQ, - ACTIONS(4268), 1, + ACTIONS(127), 1, + anon_sym_RBRACE, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1757), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4102), 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(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153959,60 +155665,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46710] = 21, + [46343] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4066), 1, - anon_sym_EQ, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4276), 1, + STATE(1773), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3820), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4280), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, - anon_sym_AMP_AMP, - ACTIONS(4342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, - anon_sym_DOT_DOT, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3818), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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(1758), 2, + anon_sym_as, + [46396] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(3824), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4064), 12, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3822), 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, @@ -154023,46 +155754,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46795] = 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, + [46449] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4276), 1, - anon_sym_CARET, - ACTIONS(4278), 1, - anon_sym_AMP, - ACTIONS(4280), 1, - anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1759), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(3828), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 20, + ACTIONS(3826), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -154081,54 +155808,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46868] = 19, + anon_sym_as, + [46502] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4386), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4388), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4392), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4394), 1, anon_sym_PIPE_PIPE, - ACTIONS(4074), 2, - anon_sym_EQ, + ACTIONS(4408), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4382), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - STATE(1760), 2, + ACTIONS(4410), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4384), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4398), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4072), 14, + ACTIONS(4126), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -154141,17 +155873,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [46949] = 5, + [46587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1761), 2, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(3834), 15, + ACTIONS(1585), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154167,7 +155897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3832), 23, + ACTIONS(1587), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154191,15 +155921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47002] = 5, + [46640] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1762), 2, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(3838), 15, + ACTIONS(1497), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154215,7 +155945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3836), 23, + ACTIONS(1495), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154239,61 +155969,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47055] = 22, + [46693] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, + STATE(1779), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1505), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1503), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4356), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1763), 2, + anon_sym_as, + [46746] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(1493), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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(1491), 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, @@ -154304,15 +156058,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47142] = 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, + [46799] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1764), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 15, + ACTIONS(1455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154328,7 +156089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1417), 23, + ACTIONS(1453), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154352,15 +156113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47195] = 5, + [46852] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1765), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(1499), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154376,7 +156137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1497), 23, + ACTIONS(1457), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154400,61 +156161,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47248] = 22, + [46905] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4159), 1, + anon_sym_EQ, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4040), 1, + ACTIONS(4386), 1, + anon_sym_CARET, + ACTIONS(4388), 1, anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4390), 1, + anon_sym_PIPE, + ACTIONS(4392), 1, + anon_sym_AMP_AMP, + ACTIONS(4394), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4408), 1, + anon_sym_DOT_DOT, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4396), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4410), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1783), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4384), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4398), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4157), 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, + [46990] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(3940), 2, + ACTIONS(4022), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1766), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154465,15 +156290,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47335] = 5, + [47077] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1767), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, + anon_sym_CARET, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, + anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4420), 1, + anon_sym_else, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4104), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(1463), 15, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47166] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1786), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154489,7 +156380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1461), 23, + ACTIONS(3894), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154513,15 +156404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47388] = 5, + [47219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1768), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(1463), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154537,7 +156428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 23, + ACTIONS(1461), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154561,15 +156452,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47441] = 5, + [47272] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1769), 2, + ACTIONS(4169), 1, + anon_sym_EQ, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4386), 1, + anon_sym_CARET, + ACTIONS(4388), 1, + anon_sym_AMP, + ACTIONS(4390), 1, + anon_sym_PIPE, + ACTIONS(4392), 1, + anon_sym_AMP_AMP, + ACTIONS(4394), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4408), 1, + anon_sym_DOT_DOT, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4396), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4410), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(3932), 15, + ACTIONS(4384), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4398), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4167), 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, + [47357] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1789), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1483), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154585,7 +156540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3930), 23, + ACTIONS(1481), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154609,15 +156564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47494] = 5, + [47410] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(1507), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154633,7 +156588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1505), 23, + ACTIONS(3758), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154657,15 +156612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47547] = 5, + [47463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(1511), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154681,7 +156636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1509), 23, + ACTIONS(1531), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154705,15 +156660,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47600] = 5, + [47516] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1772), 2, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, + anon_sym_CARET, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, + anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(3878), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4104), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1792), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47603] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(1523), 15, + ACTIONS(1467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154729,7 +156749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1521), 23, + ACTIONS(1465), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154753,20 +156773,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47653] = 5, + [47656] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(1491), 15, - anon_sym_PLUS, + ACTIONS(4384), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3922), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -154775,13 +156804,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(1489), 23, + ACTIONS(3920), 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, @@ -154800,36 +156826,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, - [47706] = 5, + [47719] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1774), 2, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4388), 1, + anon_sym_AMP, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4396), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, + ACTIONS(4384), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3922), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1485), 23, + ACTIONS(3920), 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, @@ -154848,36 +156882,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, - [47759] = 5, + [47788] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1775), 2, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4396), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(1519), 15, - anon_sym_PLUS, + ACTIONS(4384), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3922), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1517), 23, + ACTIONS(3920), 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, @@ -154896,36 +156937,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, - [47812] = 5, + [47855] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1776), 2, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4386), 1, + anon_sym_CARET, + ACTIONS(4388), 1, + anon_sym_AMP, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4396), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(993), 15, - anon_sym_PLUS, + ACTIONS(4384), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3922), 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(995), 23, + ACTIONS(3920), 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, @@ -154944,36 +156994,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, - [47865] = 5, + [47926] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1777), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(997), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4386), 1, anon_sym_CARET, + ACTIONS(4388), 1, anon_sym_AMP, + ACTIONS(4390), 1, anon_sym_PIPE, + ACTIONS(3922), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(999), 23, + STATE(1798), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4384), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4398), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3920), 16, 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, @@ -154986,43 +157052,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, - [47918] = 5, + [48003] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1483), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4386), 1, anon_sym_CARET, + ACTIONS(4388), 1, anon_sym_AMP, + ACTIONS(4390), 1, anon_sym_PIPE, + ACTIONS(4392), 1, + anon_sym_AMP_AMP, + ACTIONS(3922), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1481), 23, + STATE(1799), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4384), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4398), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3920), 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, @@ -155034,27 +157113,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, - [47971] = 5, + [48082] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(1003), 15, - anon_sym_PLUS, + ACTIONS(4384), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3922), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -155063,13 +157147,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(1005), 23, + ACTIONS(3920), 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, @@ -155088,62 +157169,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, - [48024] = 22, + [48147] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(4112), 1, + anon_sym_EQ, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4386), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4388), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4392), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4394), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, + ACTIONS(4408), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, - anon_sym_EQ, - ACTIONS(4000), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4270), 2, + ACTIONS(4382), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + ACTIONS(4410), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1780), 2, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4384), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4398), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4358), 10, + ACTIONS(4108), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155154,85 +157233,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48111] = 5, + [48232] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1781), 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, + ACTIONS(4136), 1, + anon_sym_EQ, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4386), 1, anon_sym_CARET, + ACTIONS(4388), 1, anon_sym_AMP, + ACTIONS(4390), 1, anon_sym_PIPE, + ACTIONS(4392), 1, + anon_sym_AMP_AMP, + ACTIONS(4394), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4408), 1, + anon_sym_DOT_DOT, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1011), 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(4410), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48164] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1782), 2, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(3802), 15, - anon_sym_PLUS, + ACTIONS(4384), 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(3800), 23, + ACTIONS(4398), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4134), 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, @@ -155243,42 +157297,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48217] = 5, + [48317] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1783), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1473), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4364), 1, + anon_sym_LBRACK, + ACTIONS(4366), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4386), 1, anon_sym_CARET, + ACTIONS(4388), 1, anon_sym_AMP, + ACTIONS(4390), 1, anon_sym_PIPE, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1803), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4384), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3922), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1471), 23, + ACTIONS(3920), 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, @@ -155297,62 +157355,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, - [48270] = 22, + [48390] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(4368), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_as, + ACTIONS(4386), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4388), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4392), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4394), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, - anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4165), 2, anon_sym_EQ, - ACTIONS(3788), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4270), 2, + anon_sym_DOT_DOT, + ACTIONS(4382), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1784), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4384), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4398), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4358), 10, + ACTIONS(4163), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155363,15 +157415,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48357] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [48471] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(1017), 15, + ACTIONS(4008), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155387,7 +157441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1019), 23, + ACTIONS(4006), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155411,15 +157465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48410] = 5, + [48524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1786), 2, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, + ACTIONS(3748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155435,7 +157489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1437), 23, + ACTIONS(3746), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155459,15 +157513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48463] = 5, + [48577] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(3427), 15, + ACTIONS(1513), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155483,7 +157537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3425), 23, + ACTIONS(1511), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155507,15 +157561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48516] = 5, + [48630] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1788), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(1517), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155531,7 +157585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 23, + ACTIONS(1515), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155555,61 +157609,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48569] = 22, + [48683] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, - anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(3940), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4270), 2, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(3958), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1789), 2, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4358), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155620,15 +157674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48656] = 5, + [48770] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1790), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(3946), 15, + ACTIONS(1537), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155644,7 +157698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3944), 23, + ACTIONS(1535), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155668,15 +157722,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48709] = 5, + [48823] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(3782), 15, + ACTIONS(3852), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155692,7 +157746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3780), 23, + ACTIONS(3850), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155716,15 +157770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48762] = 5, + [48876] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1792), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(3966), 15, + ACTIONS(3956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155740,7 +157794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3964), 23, + ACTIONS(3954), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155764,61 +157818,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48815] = 22, + [48929] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4296), 1, + STATE(1813), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1527), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4298), 1, anon_sym_AMP, - ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, - anon_sym_EQ, - ACTIONS(4316), 1, - anon_sym_DOT_DOT, - ACTIONS(4000), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4292), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4306), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1793), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4294), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4308), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1525), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155829,21 +157859,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48902] = 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, + [48982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4288), 1, - anon_sym_DOT, - STATE(1794), 2, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(3950), 14, + ACTIONS(1487), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155857,10 +157888,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(3948), 21, + 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, @@ -155880,15 +157914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48961] = 5, + [49035] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1795), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, + ACTIONS(1443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155904,7 +157938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1047), 23, + ACTIONS(1441), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155928,15 +157962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49014] = 5, + [49088] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1796), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(1049), 15, + ACTIONS(1475), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155952,7 +157986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1051), 23, + ACTIONS(1473), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155976,15 +158010,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49067] = 5, + [49141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1797), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(3974), 15, + ACTIONS(1541), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156000,7 +158034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3972), 23, + ACTIONS(1539), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156024,15 +158058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49120] = 5, + [49194] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1798), 2, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(3978), 15, + ACTIONS(1509), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156048,7 +158082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3976), 23, + ACTIONS(1507), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156072,15 +158106,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49173] = 5, + [49247] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1799), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(3794), 15, + ACTIONS(975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156096,7 +158130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3792), 23, + ACTIONS(977), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156120,56 +158154,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49226] = 19, + [49300] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4276), 1, + STATE(1820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(907), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4278), 1, anon_sym_AMP, - ACTIONS(4280), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, - anon_sym_AMP_AMP, - ACTIONS(4342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(381), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4270), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4282), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1800), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4272), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4284), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(379), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(909), 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, @@ -156180,63 +158195,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, - [49307] = 22, + anon_sym_as, + [49353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, + STATE(1821), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1501), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4362), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1801), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1499), 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, @@ -156247,61 +158243,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49394] = 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, + [49406] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(911), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4364), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1802), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(913), 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, @@ -156312,15 +158291,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49481] = 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, + [49459] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1803), 2, + STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(3770), 15, + ACTIONS(3968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156336,7 +158322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3768), 23, + ACTIONS(3966), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156360,62 +158346,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49534] = 23, + [49512] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4386), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4388), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4392), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4394), 1, anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, - anon_sym_EQ, - ACTIONS(4366), 1, - anon_sym_LBRACE, - ACTIONS(4368), 1, + ACTIONS(4408), 1, anon_sym_DOT_DOT, - STATE(417), 1, - sym_match_block, - ACTIONS(4292), 2, + ACTIONS(4424), 1, + anon_sym_EQ, + ACTIONS(4022), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4382), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4370), 2, + ACTIONS(4410), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1804), 2, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4384), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4398), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4308), 10, + ACTIONS(4422), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156426,62 +158411,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49623] = 23, + [49599] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_RPAREN, - ACTIONS(4374), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + STATE(1825), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(915), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1805), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(917), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156492,15 +158452,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49712] = 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, + [49652] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1806), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(3774), 15, + ACTIONS(1479), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156516,7 +158483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3772), 23, + ACTIONS(1477), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156540,62 +158507,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49765] = 23, + [49705] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4376), 1, - anon_sym_RBRACE, - ACTIONS(4378), 1, + ACTIONS(4426), 1, + anon_sym_RPAREN, + ACTIONS(4428), 1, anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1807), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156606,61 +158573,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49854] = 22, + [49794] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4386), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4388), 1, + anon_sym_AMP, + ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4392), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4394), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4408), 1, anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(4424), 1, + anon_sym_EQ, + ACTIONS(3878), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4382), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4410), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4380), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1808), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4384), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4398), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4422), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156671,15 +158638,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49941] = 5, + [49881] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1809), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(3300), 15, + ACTIONS(919), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156695,7 +158662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3302), 23, + ACTIONS(921), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156719,15 +158686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49994] = 5, + [49934] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1810), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(3786), 15, + ACTIONS(1471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156743,7 +158710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3784), 23, + ACTIONS(1469), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156767,62 +158734,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50047] = 23, + [49987] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4386), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4388), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4392), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4394), 1, anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, - anon_sym_EQ, - ACTIONS(4368), 1, + ACTIONS(4408), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 1, - anon_sym_LBRACE, - STATE(1438), 1, - sym_match_block, - ACTIONS(4292), 2, + ACTIONS(4424), 1, + anon_sym_EQ, + ACTIONS(3958), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4382), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4370), 2, + ACTIONS(4410), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1811), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4384), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4398), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4308), 10, + ACTIONS(4422), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156833,15 +158799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50136] = 5, + [50074] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1812), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(3990), 15, + ACTIONS(3980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156857,7 +158823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3988), 23, + ACTIONS(3978), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156881,15 +158847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50189] = 5, + [50127] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1813), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(3451), 15, + ACTIONS(4000), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156905,7 +158871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3449), 23, + ACTIONS(3998), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156929,15 +158895,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50242] = 5, + [50180] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1814), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(3994), 15, + ACTIONS(4004), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156953,7 +158919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3992), 23, + ACTIONS(4002), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156977,15 +158943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50295] = 5, + [50233] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1815), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(4002), 15, + ACTIONS(1037), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157001,7 +158967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4000), 23, + ACTIONS(1039), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157025,15 +158991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50348] = 5, + [50286] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1816), 2, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(3998), 15, + ACTIONS(1041), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157049,7 +159015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3996), 23, + ACTIONS(1043), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157073,127 +159039,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50401] = 23, + [50339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1817), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4024), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [50490] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, anon_sym_CARET, - ACTIONS(4046), 1, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4384), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1818), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4022), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157204,15 +159080,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50577] = 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, + [50392] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1819), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(3443), 15, + ACTIONS(3804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157228,7 +159111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3441), 23, + ACTIONS(3802), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157252,127 +159135,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50630] = 23, + [50445] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1105), 1, - anon_sym_RPAREN, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1820), 2, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(3918), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [50719] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, anon_sym_CARET, - ACTIONS(4046), 1, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4386), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1821), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3916), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157383,187 +159176,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50806] = 17, - 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_as, + [50498] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4212), 1, - anon_sym_STAR, - ACTIONS(4218), 1, - anon_sym_COLON_COLON, - ACTIONS(4222), 1, - sym_metavariable, - ACTIONS(4388), 1, - anon_sym_RBRACE, - STATE(2516), 1, - sym_scoped_identifier, - STATE(3326), 1, - sym__use_clause, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3688), 1, - sym_bracketed_type, - STATE(1822), 2, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(4220), 3, - sym_self, - sym_super, - sym_crate, - STATE(3015), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4214), 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, - [50883] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, + ACTIONS(1449), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4390), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1823), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [50970] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, anon_sym_CARET, - ACTIONS(4046), 1, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4392), 1, - anon_sym_SEMI, - ACTIONS(4394), 1, - anon_sym_else, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1824), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1451), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157574,61 +159224,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51059] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4396), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1825), 2, + anon_sym_as, + [50551] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4030), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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(4028), 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, @@ -157639,15 +159272,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51146] = 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, + [50604] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1826), 2, + STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(3724), 15, + ACTIONS(4034), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157663,7 +159303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3722), 23, + ACTIONS(4032), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157687,62 +159327,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51199] = 23, + [50657] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(299), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4430), 1, + anon_sym_RPAREN, + ACTIONS(4432), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157753,15 +159393,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51288] = 5, + [50746] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1828), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(3812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157777,7 +159417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 23, + ACTIONS(3810), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157801,62 +159441,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51341] = 23, + [50799] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1063), 1, - anon_sym_RPAREN, - ACTIONS(3744), 1, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1829), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157867,60 +159507,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51430] = 21, + [50888] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4096), 1, - anon_sym_EQ, - ACTIONS(4296), 1, + STATE(1846), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3816), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4298), 1, anon_sym_AMP, - ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4316), 1, - anon_sym_DOT_DOT, - ACTIONS(4292), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4306), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1830), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4294), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4094), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3814), 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, @@ -157931,62 +159548,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51515] = 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, + [50941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4398), 1, - anon_sym_SEMI, - ACTIONS(4400), 1, - anon_sym_else, - ACTIONS(4038), 2, + STATE(1847), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3832), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1831), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3830), 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, @@ -157997,62 +159596,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51604] = 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, + [50994] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4402), 1, - anon_sym_RBRACE, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1832), 2, + ACTIONS(4434), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158063,62 +159668,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51693] = 23, + [51081] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4340), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4342), 1, + anon_sym_AMP, + ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4346), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4348), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4354), 1, anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_COMMA, ACTIONS(4404), 1, - anon_sym_RPAREN, - ACTIONS(4038), 2, + anon_sym_DOT_DOT, + ACTIONS(4436), 1, + anon_sym_LBRACE, + STATE(1493), 1, + sym_match_block, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4406), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1833), 2, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4356), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4352), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158129,62 +159734,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51782] = 23, + [51170] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4406), 1, - anon_sym_SEMI, - ACTIONS(4408), 1, - anon_sym_else, - ACTIONS(4038), 2, + STATE(1850), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4042), 14, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4042), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1834), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 10, + anon_sym_DOT_DOT, + ACTIONS(4040), 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, @@ -158195,61 +159778,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51871] = 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, + [51229] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4316), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(3788), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4292), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1835), 2, + ACTIONS(4438), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4308), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158260,62 +159850,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51958] = 23, + [51316] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(337), 1, + anon_sym_RBRACE, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_COMMA, - ACTIONS(4410), 1, - anon_sym_RPAREN, - ACTIONS(4038), 2, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1836), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158326,62 +159916,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52047] = 23, + [51405] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(1291), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4412), 1, - anon_sym_SEMI, - ACTIONS(4414), 1, - anon_sym_else, - ACTIONS(4038), 2, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1837), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158392,199 +159982,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52136] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1838), 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, + [51494] = 17, + ACTIONS(29), 1, 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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52189] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1839), 2, + ACTIONS(4272), 1, + sym_identifier, + ACTIONS(4274), 1, + anon_sym_LBRACE, + ACTIONS(4278), 1, + anon_sym_STAR, + ACTIONS(4284), 1, + anon_sym_COLON_COLON, + ACTIONS(4288), 1, + sym_metavariable, + ACTIONS(4440), 1, + anon_sym_RBRACE, + STATE(2502), 1, + sym_scoped_identifier, + STATE(3365), 1, + sym__use_clause, + STATE(3461), 1, + sym_bracketed_type, + STATE(3618), 1, + sym_generic_type_with_turbofish, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(3806), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_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, - 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, - [52242] = 23, + ACTIONS(4286), 3, + sym_self, + sym_super, + sym_crate, + STATE(2952), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4280), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [51571] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(303), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1840), 2, + ACTIONS(4442), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 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, - [52331] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1841), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3822), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_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, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158595,22 +160107,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, - [52384] = 5, + [51658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1842), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(3962), 15, + ACTIONS(3960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158626,7 +160131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3960), 23, + ACTIONS(3958), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158650,60 +160155,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52437] = 21, + [51711] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4268), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4444), 1, + anon_sym_SEMI, + ACTIONS(4446), 1, + anon_sym_else, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1843), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4102), 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_EQ_GT, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158714,15 +160221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52522] = 5, + [51800] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1844), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158738,7 +160245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3726), 23, + ACTIONS(1451), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158762,56 +160269,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52575] = 19, + [51853] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(299), 1, + anon_sym_RBRACE, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(381), 2, + ACTIONS(4144), 1, anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - STATE(1845), 2, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4102), 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_LBRACE, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158822,62 +160335,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [52656] = 21, + [51942] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3744), 1, + ACTIONS(1053), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4316), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1846), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4102), 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(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158888,62 +160401,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52741] = 23, + [52031] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4368), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4416), 1, - anon_sym_LBRACE, - STATE(481), 1, - sym_match_block, - ACTIONS(4292), 2, + ACTIONS(4448), 1, + anon_sym_SEMI, + ACTIONS(4450), 1, + anon_sym_else, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4370), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1847), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4308), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158954,60 +160467,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52830] = 21, + [52120] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4088), 1, - anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4316), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4452), 1, + anon_sym_RBRACE, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1848), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4086), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159018,60 +160533,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52915] = 21, + [52209] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4092), 1, - anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4316), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4454), 1, + anon_sym_SEMI, + ACTIONS(4456), 1, + anon_sym_else, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1849), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4102), 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, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159082,103 +160599,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53000] = 23, + [52298] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4458), 1, + anon_sym_RBRACE, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1850), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 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, - [53089] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1851), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4020), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4018), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159189,69 +160665,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, - [53142] = 23, + [52387] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(291), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4460), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4462), 1, + anon_sym_else, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159262,43 +160731,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53231] = 10, + [52476] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(303), 1, + anon_sym_RBRACE, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - STATE(1853), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4294), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3860), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4094), 1, anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1866), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159309,52 +160797,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, - [53294] = 13, + [52565] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(1061), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4298), 1, + ACTIONS(4094), 1, + anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4292), 2, + ACTIONS(4098), 1, + anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1854), 2, + ACTIONS(4104), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159365,43 +160863,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, - [53363] = 5, + [52654] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1855), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3848), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4340), 1, anon_sym_CARET, + ACTIONS(4342), 1, anon_sym_AMP, + ACTIONS(4344), 1, anon_sym_PIPE, + ACTIONS(4346), 1, + anon_sym_AMP_AMP, + ACTIONS(4348), 1, + anon_sym_PIPE_PIPE, + ACTIONS(403), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3844), 23, + STATE(1868), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4338), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4356), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(401), 14, anon_sym_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, @@ -159412,52 +160923,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, - [53416] = 12, + [52735] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4292), 2, + ACTIONS(4340), 1, + anon_sym_CARET, + ACTIONS(4342), 1, + anon_sym_AMP, + ACTIONS(4344), 1, + anon_sym_PIPE, + ACTIONS(4346), 1, + anon_sym_AMP_AMP, + ACTIONS(4348), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4360), 1, + anon_sym_DOT_DOT, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1856), 2, + ACTIONS(4358), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4362), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 20, + ACTIONS(4356), 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159468,68 +160989,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, - [53483] = 23, + [52820] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(307), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4340), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4342), 1, + anon_sym_AMP, + ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4346), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4348), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4354), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4464), 1, + anon_sym_LBRACE, + STATE(477), 1, + sym_match_block, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4406), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1857), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4356), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4352), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159540,47 +161055,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53572] = 14, + [52909] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4128), 1, + anon_sym_EQ, + ACTIONS(4340), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4292), 2, + ACTIONS(4344), 1, + anon_sym_PIPE, + ACTIONS(4346), 1, + anon_sym_AMP_AMP, + ACTIONS(4348), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4360), 1, + anon_sym_DOT_DOT, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1858), 2, + ACTIONS(4358), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4362), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3858), 20, + ACTIONS(4356), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4126), 12, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159591,68 +161119,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, - [53643] = 23, + [52994] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4159), 1, + anon_sym_EQ, + ACTIONS(4340), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4342), 1, + anon_sym_AMP, + ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4346), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4348), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4360), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4418), 1, - anon_sym_RBRACE, - ACTIONS(4038), 2, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4362), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1859), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4356), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4157), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159663,54 +161183,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53732] = 17, + [53079] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(305), 1, + anon_sym_RBRACE, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(3860), 2, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - STATE(1860), 2, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3858), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159721,64 +161249,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53809] = 23, + [53168] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, + ACTIONS(291), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1861), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159789,62 +161315,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53898] = 23, + [53257] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4310), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4368), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4420), 1, - anon_sym_LBRACE, - STATE(1745), 1, - sym_match_block, - ACTIONS(4292), 2, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4466), 1, + anon_sym_RPAREN, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4370), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4308), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159855,62 +161381,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53987] = 23, + [53346] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + ACTIONS(4272), 1, + sym_identifier, + ACTIONS(4274), 1, + anon_sym_LBRACE, + ACTIONS(4278), 1, + anon_sym_STAR, + ACTIONS(4284), 1, + anon_sym_COLON_COLON, + ACTIONS(4288), 1, + sym_metavariable, + ACTIONS(4468), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + STATE(2502), 1, + sym_scoped_identifier, + STATE(3365), 1, + sym__use_clause, + STATE(3461), 1, + sym_bracketed_type, + STATE(3618), 1, + sym_generic_type_with_turbofish, + STATE(1876), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4286), 3, + sym_self, + sym_super, + sym_crate, + STATE(2952), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4280), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [53423] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(307), 1, + anon_sym_RBRACE, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1863), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159921,62 +161507,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54076] = 23, + [53512] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4422), 1, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4470), 1, anon_sym_RBRACE, - ACTIONS(4424), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159987,62 +161573,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54165] = 23, + [53601] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1225), 1, - anon_sym_RPAREN, - ACTIONS(3744), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160053,55 +161639,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54254] = 18, + [53690] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4296), 1, + ACTIONS(4340), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4342), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4344), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4346), 1, anon_sym_AMP_AMP, - ACTIONS(3860), 2, + ACTIONS(4348), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4354), 1, anon_sym_EQ, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4472), 1, + anon_sym_LBRACE, + STATE(1791), 1, + sym_match_block, + ACTIONS(4336), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4350), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4358), 2, anon_sym_GT, anon_sym_LT, - STATE(1866), 2, + ACTIONS(4406), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4338), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4356), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3858), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4352), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160112,64 +161705,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [54333] = 23, + [53779] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(315), 1, + ACTIONS(313), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160180,15 +161771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54422] = 5, + [53868] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1868), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(3888), 15, + ACTIONS(3976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160204,7 +161795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3886), 23, + ACTIONS(3974), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160228,62 +161819,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54475] = 23, + [53921] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(1191), 1, + anon_sym_RPAREN, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, + ACTIONS(4094), 1, + anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4098), 1, + anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4104), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1883), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [54010] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(315), 1, + anon_sym_RBRACE, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4426), 1, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4104), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1884), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [54099] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, + anon_sym_CARET, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, + anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4474), 1, anon_sym_RBRACE, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160294,30 +162017,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54564] = 11, + [54188] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4292), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1870), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(3844), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -160326,10 +162039,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(3858), 20, + ACTIONS(3842), 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, @@ -160348,60 +162064,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [54629] = 21, + anon_sym_as, + [54241] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(319), 1, + anon_sym_RBRACE, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4058), 1, - anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4316), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4102), 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(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160412,110 +162131,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54714] = 5, + [54330] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1872), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3892), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3890), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [54767] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(319), 1, + ACTIONS(321), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160526,62 +162197,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54856] = 23, + [54419] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, + ACTIONS(323), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1874), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160592,62 +162263,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54945] = 23, + [54508] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4476), 1, + anon_sym_RBRACE, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160658,62 +162329,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55034] = 23, + [54597] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(327), 1, + anon_sym_RBRACE, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4428), 1, - anon_sym_RBRACE, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1876), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160724,62 +162395,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55123] = 23, + [54686] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(329), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1877), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160790,62 +162461,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55212] = 23, + [54775] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(329), 1, + ACTIONS(331), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1878), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160856,37 +162527,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55301] = 5, + [54864] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1879), 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, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4478), 1, + anon_sym_RBRACE, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4104), 2, 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, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1894), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160897,69 +162593,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, - [55354] = 23, + [54953] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(331), 1, + ACTIONS(335), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1880), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160970,62 +162659,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55443] = 23, + [55042] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4430), 1, - anon_sym_RBRACE, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1881), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161036,62 +162725,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55532] = 23, + [55131] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(335), 1, + ACTIONS(125), 1, anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1882), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161102,62 +162791,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55621] = 23, + [55220] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4416), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4480), 1, + anon_sym_RBRACE, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161168,62 +162857,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55710] = 23, + [55309] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(119), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1884), 2, + ACTIONS(4482), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161234,62 +162922,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55799] = 23, + [55396] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4432), 1, - anon_sym_RBRACE, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1885), 2, + ACTIONS(4484), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161300,60 +162987,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55888] = 21, + [55483] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4066), 1, - anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4298), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4316), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4292), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4306), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4318), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1886), 2, + ACTIONS(4486), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4312), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161364,46 +163052,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55973] = 15, + [55570] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4296), 1, - anon_sym_CARET, - ACTIONS(4298), 1, - anon_sym_AMP, - ACTIONS(4300), 1, - anon_sym_PIPE, - ACTIONS(4292), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4306), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1887), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(4294), 3, + ACTIONS(3984), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3860), 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(3858), 20, + ACTIONS(3982), 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, @@ -161422,56 +163099,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [56046] = 19, + anon_sym_as, + [55623] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4296), 1, + STATE(1903), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3992), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4298), 1, anon_sym_AMP, - ACTIONS(4300), 1, anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4074), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4292), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4306), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4314), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1888), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4294), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4312), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4072), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3990), 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, @@ -161482,23 +163141,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, - [56127] = 8, + anon_sym_as, + [55676] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_QMARK, - ACTIONS(4288), 1, - anon_sym_DOT, - STATE(1889), 2, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 14, + ACTIONS(3996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161512,10 +163170,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(3894), 21, + ACTIONS(3994), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -161535,15 +163196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56186] = 5, + [55729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1890), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(3732), 15, + ACTIONS(3876), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161559,7 +163220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 23, + ACTIONS(3874), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161583,15 +163244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56239] = 5, + [55782] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1891), 2, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(3970), 15, + ACTIONS(4012), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161607,7 +163268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3968), 23, + ACTIONS(4010), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161631,37 +163292,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56292] = 5, + [55835] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1892), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4008), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4200), 1, anon_sym_CARET, + ACTIONS(4202), 1, anon_sym_AMP, + ACTIONS(4204), 1, anon_sym_PIPE, + ACTIONS(4208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4214), 1, + anon_sym_EQ, + ACTIONS(4220), 1, + anon_sym_DOT_DOT, + ACTIONS(4196), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4210), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4218), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4006), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4222), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4198), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4488), 3, + anon_sym_LBRACE, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_SQUOTE, + ACTIONS(4216), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4212), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161672,22 +163356,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, - [56345] = 5, + [55920] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1893), 2, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(4012), 15, + ACTIONS(4016), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161703,7 +163380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4010), 23, + ACTIONS(4014), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161727,15 +163404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56398] = 5, + [55973] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1894), 2, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(3826), 15, + ACTIONS(4020), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161751,7 +163428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3824), 23, + ACTIONS(4018), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161775,60 +163452,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56451] = 21, + [56026] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4268), 1, + ACTIONS(289), 1, + anon_sym_RBRACE, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4340), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4342), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4344), 1, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4346), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1895), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4102), 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(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161839,15 +163518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56536] = 5, + [56115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1896), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(3830), 15, + ACTIONS(3880), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161863,7 +163542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3828), 23, + ACTIONS(3878), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161887,37 +163566,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56589] = 5, + [56168] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1897), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3942), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3790), 1, + anon_sym_LBRACK, + ACTIONS(3794), 1, + anon_sym_QMARK, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, + ACTIONS(4096), 1, anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4144), 1, + anon_sym_EQ, + ACTIONS(4228), 1, + anon_sym_DOT_DOT, + ACTIONS(4490), 1, + anon_sym_SEMI, + ACTIONS(4492), 1, + anon_sym_else, + ACTIONS(4090), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3940), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4230), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1912), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4092), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4102), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161928,22 +163632,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, - [56642] = 5, + [56257] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1898), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(3842), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161959,7 +163656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3840), 23, + ACTIONS(1451), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161983,60 +163680,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56695] = 21, + [56310] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4150), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4152), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4154), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4158), 1, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4164), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4170), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4146), 2, + ACTIONS(4494), 1, + anon_sym_RBRACE, + ACTIONS(4496), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4160), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4168), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4172), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1899), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(4148), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4434), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4166), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4162), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162047,62 +163746,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56780] = 23, + [56399] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(289), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, + ACTIONS(4498), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4500), 1, + anon_sym_else, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1900), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162113,62 +163812,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56869] = 23, + [56488] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + STATE(1916), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3900), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3898), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56541] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4436), 1, - anon_sym_SEMI, - ACTIONS(4438), 1, - anon_sym_else, - ACTIONS(4038), 2, + ACTIONS(4502), 1, + anon_sym_RBRACK, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1901), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162179,62 +163924,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56958] = 23, + [56627] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4440), 1, - anon_sym_RPAREN, - ACTIONS(4442), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4504), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1902), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162245,110 +163988,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57047] = 5, + [56713] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1903), 2, + ACTIONS(4272), 1, + sym_identifier, + ACTIONS(4274), 1, + anon_sym_LBRACE, + ACTIONS(4278), 1, + anon_sym_STAR, + ACTIONS(4284), 1, + anon_sym_COLON_COLON, + ACTIONS(4288), 1, + sym_metavariable, + STATE(2502), 1, + sym_scoped_identifier, + STATE(3461), 1, + sym_bracketed_type, + STATE(3618), 1, + sym_generic_type_with_turbofish, + STATE(3760), 1, + sym__use_clause, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3850), 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, - [57100] = 23, + ACTIONS(4286), 3, + sym_self, + sym_super, + sym_crate, + STATE(2952), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4280), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [56787] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(295), 1, - anon_sym_RBRACE, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4506), 1, + anon_sym_RBRACK, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1904), 2, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162359,60 +164110,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57189] = 22, + [56873] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4444), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4508), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1905), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162423,60 +164174,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57275] = 22, + [56959] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4446), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4510), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1906), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162487,60 +164238,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57361] = 22, + [57045] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4386), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4388), 1, + anon_sym_AMP, + ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4394), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4424), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4512), 1, anon_sym_DOT_DOT, - ACTIONS(4448), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4382), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4414), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4514), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1907), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4384), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4398), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4422), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162551,60 +164301,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57447] = 22, + [57129] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4450), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4516), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1908), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162615,118 +164365,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57533] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4212), 1, - anon_sym_STAR, - ACTIONS(4218), 1, - anon_sym_COLON_COLON, - ACTIONS(4222), 1, - sym_metavariable, - STATE(2516), 1, - sym_scoped_identifier, - STATE(3326), 1, - sym__use_clause, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3688), 1, - sym_bracketed_type, - STATE(1909), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4220), 3, - sym_self, - sym_super, - sym_crate, - STATE(3015), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4214), 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, - [57607] = 22, + [57215] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4452), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4518), 1, + anon_sym_RBRACK, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1910), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162737,117 +164429,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57693] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4212), 1, - anon_sym_STAR, - ACTIONS(4218), 1, - anon_sym_COLON_COLON, - ACTIONS(4222), 1, - sym_metavariable, - STATE(2516), 1, - sym_scoped_identifier, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3679), 1, - sym__use_clause, - STATE(3688), 1, - sym_bracketed_type, - STATE(1911), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4220), 3, - sym_self, - sym_super, - sym_crate, - STATE(3015), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4214), 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, - [57767] = 21, + [57301] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4342), 1, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4454), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4520), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4434), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4456), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1912), 2, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4358), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162858,60 +164493,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57851] = 22, + [57387] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4332), 1, + anon_sym_EQ_GT, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4386), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4388), 1, + anon_sym_AMP, + ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4394), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4424), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4512), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4522), 1, + anon_sym_AMP_AMP, + ACTIONS(4382), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4514), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1913), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4384), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4398), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4422), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162922,60 +164557,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57937] = 22, + [57473] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4458), 1, + ACTIONS(4524), 1, anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1914), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162986,60 +164621,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58023] = 22, + [57559] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4460), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1915), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163050,60 +164685,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58109] = 22, + [57645] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4272), 1, + sym_identifier, + ACTIONS(4274), 1, + anon_sym_LBRACE, + ACTIONS(4278), 1, + anon_sym_STAR, + ACTIONS(4284), 1, + anon_sym_COLON_COLON, + ACTIONS(4288), 1, + sym_metavariable, + STATE(2502), 1, + sym_scoped_identifier, + STATE(3461), 1, + sym_bracketed_type, + STATE(3482), 1, + sym__use_clause, + STATE(3618), 1, + sym_generic_type_with_turbofish, + STATE(1930), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4286), 3, + sym_self, + sym_super, + sym_crate, + STATE(2952), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4280), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [57719] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4526), 1, + anon_sym_RBRACK, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1916), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163114,60 +164807,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58195] = 22, + [57805] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4462), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4528), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1917), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163178,118 +164871,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58281] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4212), 1, - anon_sym_STAR, - ACTIONS(4218), 1, - anon_sym_COLON_COLON, - ACTIONS(4222), 1, - sym_metavariable, - STATE(2516), 1, - sym_scoped_identifier, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3585), 1, - sym__use_clause, - STATE(3688), 1, - sym_bracketed_type, - STATE(1918), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4220), 3, - sym_self, - sym_super, - sym_crate, - STATE(3015), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4214), 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, - [58355] = 22, + [57891] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4464), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4530), 1, + anon_sym_RBRACK, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1919), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163300,60 +164935,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58441] = 22, + [57977] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4364), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(4366), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(4368), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(4370), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4386), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4388), 1, + anon_sym_AMP, + ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4394), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4424), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4512), 1, anon_sym_DOT_DOT, - ACTIONS(4466), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4382), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4396), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4488), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4514), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1920), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4384), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4398), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4422), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163364,60 +164998,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58527] = 22, + [58061] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4468), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4532), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1921), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163428,60 +165062,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58613] = 22, + [58147] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(4272), 1, + sym_identifier, + ACTIONS(4274), 1, + anon_sym_LBRACE, + ACTIONS(4278), 1, + anon_sym_STAR, + ACTIONS(4284), 1, + anon_sym_COLON_COLON, + ACTIONS(4288), 1, + sym_metavariable, + STATE(2502), 1, + sym_scoped_identifier, + STATE(3461), 1, + sym_bracketed_type, + STATE(3584), 1, + sym__use_clause, + STATE(3618), 1, + sym_generic_type_with_turbofish, + STATE(1936), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4286), 3, + sym_self, + sym_super, + sym_crate, + STATE(2952), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4280), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [58221] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4470), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4534), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1922), 2, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163492,60 +165184,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58699] = 22, + [58307] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4472), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4536), 1, + anon_sym_RBRACK, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1923), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163556,60 +165248,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58785] = 22, + [58393] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4474), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4538), 1, + anon_sym_RBRACK, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1924), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163620,60 +165312,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58871] = 22, + [58479] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4476), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4540), 1, + anon_sym_RBRACK, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1925), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163684,60 +165376,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58957] = 22, + [58565] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(4342), 1, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4454), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4478), 1, - anon_sym_AMP_AMP, - ACTIONS(4270), 2, + ACTIONS(4542), 1, + anon_sym_RBRACK, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4456), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1926), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4358), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163748,60 +165440,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59043] = 22, + [58651] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4480), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4544), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1927), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163812,59 +165504,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59129] = 21, + [58737] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4268), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(4274), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(4276), 1, + ACTIONS(3796), 1, + anon_sym_DOT, + ACTIONS(3924), 1, + anon_sym_as, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4278), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4280), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4288), 1, - anon_sym_DOT, - ACTIONS(4290), 1, - anon_sym_as, - ACTIONS(4342), 1, + ACTIONS(4106), 1, + anon_sym_AMP_AMP, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4454), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4270), 2, + ACTIONS(4546), 1, + anon_sym_COMMA, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4282), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4286), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4328), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4456), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1928), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(4272), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4284), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4358), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163875,60 +165568,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59213] = 22, + [58823] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4482), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4548), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1929), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163939,60 +165632,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59299] = 22, + [58909] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4484), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4416), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1930), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164003,60 +165696,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59385] = 22, + [58995] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4486), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4550), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1931), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164067,60 +165760,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59471] = 22, + [59081] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4488), 1, + ACTIONS(4552), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1932), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164131,118 +165824,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59557] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [59167] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4212), 1, - anon_sym_STAR, - ACTIONS(4218), 1, - anon_sym_COLON_COLON, - ACTIONS(4222), 1, - sym_metavariable, - STATE(2516), 1, - sym_scoped_identifier, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3550), 1, - sym__use_clause, - STATE(3688), 1, - sym_bracketed_type, - STATE(1933), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4220), 3, - sym_self, - sym_super, - sym_crate, - STATE(3015), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4214), 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, - [59631] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4490), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, + ACTIONS(4554), 1, + anon_sym_RBRACK, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1934), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164253,44 +165888,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59717] = 16, + [59253] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4206), 1, + ACTIONS(4272), 1, sym_identifier, - ACTIONS(4208), 1, + ACTIONS(4274), 1, anon_sym_LBRACE, - ACTIONS(4212), 1, + ACTIONS(4278), 1, anon_sym_STAR, - ACTIONS(4218), 1, + ACTIONS(4284), 1, anon_sym_COLON_COLON, - ACTIONS(4222), 1, + ACTIONS(4288), 1, sym_metavariable, - STATE(2516), 1, + STATE(2502), 1, sym_scoped_identifier, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3481), 1, + STATE(3365), 1, sym__use_clause, - STATE(3688), 1, + STATE(3461), 1, sym_bracketed_type, - STATE(1935), 2, + STATE(3618), 1, + sym_generic_type_with_turbofish, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(4220), 3, + ACTIONS(4286), 3, sym_self, sym_super, sym_crate, - STATE(3015), 4, + STATE(2952), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4214), 20, + ACTIONS(4280), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164311,124 +165946,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [59791] = 22, + [59327] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4492), 1, - anon_sym_COMMA, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1936), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [59877] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4494), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4556), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1937), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164439,60 +166010,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59963] = 22, + [59413] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4096), 1, + anon_sym_AMP, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4496), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, + ACTIONS(4558), 1, + anon_sym_SEMI, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1938), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164503,124 +166074,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60049] = 22, + [59499] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, + ACTIONS(3790), 1, anon_sym_LBRACK, - ACTIONS(3748), 1, + ACTIONS(3794), 1, anon_sym_QMARK, - ACTIONS(3750), 1, + ACTIONS(3796), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3924), 1, anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, + ACTIONS(4094), 1, anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4498), 1, - anon_sym_RBRACK, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1939), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [60135] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, + ACTIONS(4096), 1, anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, + ACTIONS(4098), 1, anon_sym_PIPE, - ACTIONS(4052), 1, + ACTIONS(4106), 1, anon_sym_AMP_AMP, - ACTIONS(4056), 1, + ACTIONS(4110), 1, anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, + ACTIONS(4144), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4228), 1, anon_sym_DOT_DOT, - ACTIONS(4500), 1, + ACTIONS(4560), 1, anon_sym_SEMI, - ACTIONS(4038), 2, + ACTIONS(4090), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4042), 2, + ACTIONS(4100), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4050), 2, + ACTIONS(4104), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4142), 2, + ACTIONS(4230), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1940), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, + ACTIONS(4092), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4048), 4, + ACTIONS(4102), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4068), 10, + ACTIONS(4142), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164631,111 +166138,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60221] = 22, + [59585] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3744), 1, - anon_sym_LBRACK, - ACTIONS(3748), 1, - anon_sym_QMARK, - ACTIONS(3750), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_as, - ACTIONS(4040), 1, - anon_sym_AMP, - ACTIONS(4044), 1, - anon_sym_CARET, - ACTIONS(4046), 1, - anon_sym_PIPE, - ACTIONS(4052), 1, - anon_sym_AMP_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4070), 1, - anon_sym_EQ, - ACTIONS(4140), 1, - anon_sym_DOT_DOT, - ACTIONS(4502), 1, - anon_sym_SEMI, - ACTIONS(4038), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4042), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4050), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4142), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1941), 2, + ACTIONS(4272), 1, + sym_identifier, + ACTIONS(4274), 1, + anon_sym_LBRACE, + ACTIONS(4278), 1, + anon_sym_STAR, + ACTIONS(4284), 1, + anon_sym_COLON_COLON, + ACTIONS(4288), 1, + sym_metavariable, + STATE(2502), 1, + sym_scoped_identifier, + STATE(3461), 1, + sym_bracketed_type, + STATE(3618), 1, + sym_generic_type_with_turbofish, + STATE(3722), 1, + sym__use_clause, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(4036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4048), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4068), 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, - [60307] = 17, + ACTIONS(4286), 3, + sym_self, + sym_super, + sym_crate, + STATE(2952), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4280), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [59659] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3840), 1, anon_sym_where, - ACTIONS(4504), 1, + ACTIONS(4562), 1, sym_identifier, - ACTIONS(4508), 1, + ACTIONS(4566), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4572), 1, sym_metavariable, - STATE(3125), 1, + STATE(3144), 1, sym_scoped_type_identifier, - STATE(3409), 1, + STATE(3422), 1, sym_generic_type, - STATE(3487), 1, + STATE(3477), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3604), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3631), 1, sym_bracketed_type, - STATE(1942), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3838), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4568), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4570), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4564), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164753,47 +166254,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60382] = 17, + [59734] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3840), 1, anon_sym_where, - ACTIONS(4508), 1, + ACTIONS(4566), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4572), 1, sym_metavariable, - ACTIONS(4516), 1, + ACTIONS(4574), 1, sym_identifier, - STATE(2980), 1, + STATE(3151), 1, sym_scoped_type_identifier, - STATE(3142), 1, + STATE(3438), 1, sym_generic_type, - STATE(3487), 1, + STATE(3477), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3604), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3631), 1, sym_bracketed_type, - STATE(1943), 2, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3838), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4568), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4570), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4564), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164811,47 +166312,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60457] = 17, + [59809] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3840), 1, anon_sym_where, - ACTIONS(4508), 1, + ACTIONS(4566), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4572), 1, sym_metavariable, - ACTIONS(4518), 1, + ACTIONS(4576), 1, sym_identifier, - STATE(2970), 1, + STATE(3045), 1, sym_scoped_type_identifier, - STATE(3146), 1, + STATE(3264), 1, sym_generic_type, - STATE(3487), 1, + STATE(3477), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3604), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3631), 1, sym_bracketed_type, - STATE(1944), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3838), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4568), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4570), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4564), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164869,47 +166370,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60532] = 17, + [59884] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3840), 1, anon_sym_where, - ACTIONS(4508), 1, + ACTIONS(4566), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4572), 1, sym_metavariable, - ACTIONS(4520), 1, + ACTIONS(4578), 1, sym_identifier, - STATE(3113), 1, + STATE(3013), 1, sym_scoped_type_identifier, - STATE(3384), 1, + STATE(3172), 1, sym_generic_type, - STATE(3487), 1, + STATE(3477), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3604), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3631), 1, sym_bracketed_type, - STATE(1945), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3838), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4568), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4570), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4564), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164927,47 +166428,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60607] = 17, + [59959] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3840), 1, anon_sym_where, - ACTIONS(4508), 1, + ACTIONS(4566), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4572), 1, sym_metavariable, - ACTIONS(4522), 1, + ACTIONS(4580), 1, sym_identifier, - STATE(3117), 1, + STATE(3147), 1, sym_scoped_type_identifier, - STATE(3396), 1, + STATE(3430), 1, sym_generic_type, - STATE(3487), 1, + STATE(3477), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3604), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3631), 1, sym_bracketed_type, - STATE(1946), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3838), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4568), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4570), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4564), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164985,47 +166486,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60682] = 17, + [60034] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3840), 1, anon_sym_where, - ACTIONS(4508), 1, + ACTIONS(4566), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4572), 1, sym_metavariable, - ACTIONS(4524), 1, + ACTIONS(4582), 1, sym_identifier, - STATE(2836), 1, + STATE(2947), 1, sym_scoped_type_identifier, - STATE(3309), 1, + STATE(3185), 1, sym_generic_type, - STATE(3487), 1, + STATE(3477), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3604), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3631), 1, sym_bracketed_type, - STATE(1947), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3838), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4568), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4570), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4564), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165043,47 +166544,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60757] = 17, + [60109] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3840), 1, anon_sym_where, - ACTIONS(4508), 1, + ACTIONS(4566), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4572), 1, sym_metavariable, - ACTIONS(4526), 1, + ACTIONS(4584), 1, sym_identifier, - STATE(3121), 1, + STATE(2867), 1, sym_scoped_type_identifier, - STATE(3404), 1, + STATE(3389), 1, sym_generic_type, - STATE(3487), 1, + STATE(3477), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3604), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3631), 1, sym_bracketed_type, - STATE(1948), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3838), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4568), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4570), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4564), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165101,47 +166602,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60832] = 17, + [60184] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, + ACTIONS(3840), 1, anon_sym_where, - ACTIONS(4508), 1, + ACTIONS(4566), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 1, + ACTIONS(4572), 1, sym_metavariable, - ACTIONS(4528), 1, + ACTIONS(4586), 1, sym_identifier, - STATE(3123), 1, + STATE(3148), 1, sym_scoped_type_identifier, - STATE(3406), 1, + STATE(3432), 1, sym_generic_type, - STATE(3487), 1, + STATE(3477), 1, sym_scoped_identifier, - STATE(3597), 1, + STATE(3604), 1, sym_generic_type_with_turbofish, - STATE(3624), 1, + STATE(3631), 1, sym_bracketed_type, - STATE(1949), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 3, + ACTIONS(3838), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4510), 3, + ACTIONS(4568), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4512), 3, + ACTIONS(4570), 3, sym_self, sym_super, sym_crate, - ACTIONS(4506), 17, + ACTIONS(4564), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165159,19 +166660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60907] = 5, + [60259] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1950), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(4532), 3, + ACTIONS(4590), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4530), 29, + ACTIONS(4588), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165201,19 +166702,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [60954] = 5, + [60306] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1951), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(4536), 3, + ACTIONS(4594), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4534), 29, + ACTIONS(4592), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165243,19 +166744,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [61001] = 5, + [60353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1952), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4540), 3, + ACTIONS(4598), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4538), 29, + ACTIONS(4596), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165285,35 +166786,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [61048] = 13, + [60400] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(2184), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4600), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4606), 1, sym_metavariable, - STATE(2350), 1, + STATE(2348), 1, sym_scoped_identifier, - STATE(3441), 1, + STATE(3554), 1, + sym_attribute, + STATE(3695), 1, sym_bracketed_type, - STATE(3467), 1, + STATE(3765), 1, sym_generic_type_with_turbofish, - STATE(3678), 1, - sym_attribute, - STATE(1953), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4604), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4602), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165334,35 +166835,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61110] = 13, + [60462] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(2184), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4600), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4606), 1, sym_metavariable, - STATE(2350), 1, + STATE(2348), 1, sym_scoped_identifier, - STATE(3441), 1, + STATE(3560), 1, + sym_attribute, + STATE(3695), 1, sym_bracketed_type, - STATE(3467), 1, + STATE(3765), 1, sym_generic_type_with_turbofish, - STATE(3672), 1, - sym_attribute, - STATE(1954), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4604), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4602), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165383,35 +166884,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61172] = 13, + [60524] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(2184), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4600), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4606), 1, sym_metavariable, - STATE(2350), 1, + STATE(2348), 1, sym_scoped_identifier, - STATE(3441), 1, + STATE(3695), 1, sym_bracketed_type, - STATE(3467), 1, - sym_generic_type_with_turbofish, - STATE(3722), 1, + STATE(3709), 1, sym_attribute, - STATE(1955), 2, + STATE(3765), 1, + sym_generic_type_with_turbofish, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4604), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4602), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165432,35 +166933,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61234] = 13, + [60586] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(2184), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4600), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4606), 1, sym_metavariable, - STATE(2350), 1, + STATE(2348), 1, sym_scoped_identifier, - STATE(3441), 1, + STATE(3619), 1, + sym_attribute, + STATE(3695), 1, sym_bracketed_type, - STATE(3467), 1, + STATE(3765), 1, sym_generic_type_with_turbofish, - STATE(3714), 1, - sym_attribute, - STATE(1956), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4604), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4602), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165481,35 +166982,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61296] = 13, + [60648] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(2184), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4600), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4606), 1, sym_metavariable, - STATE(2350), 1, + STATE(2348), 1, sym_scoped_identifier, - STATE(3441), 1, - sym_bracketed_type, - STATE(3442), 1, + STATE(3468), 1, sym_attribute, - STATE(3467), 1, + STATE(3695), 1, + sym_bracketed_type, + STATE(3765), 1, sym_generic_type_with_turbofish, - STATE(1957), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4604), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4602), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165530,35 +167031,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61358] = 13, + [60710] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(2184), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4600), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4606), 1, sym_metavariable, - STATE(2350), 1, + STATE(2348), 1, sym_scoped_identifier, - STATE(3441), 1, + STATE(3492), 1, + sym_attribute, + STATE(3695), 1, sym_bracketed_type, - STATE(3467), 1, + STATE(3765), 1, sym_generic_type_with_turbofish, - STATE(3510), 1, - sym_attribute, - STATE(1958), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4604), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4602), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165579,35 +167080,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61420] = 13, + [60772] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(2184), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4600), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4606), 1, sym_metavariable, - STATE(2350), 1, + STATE(2348), 1, sym_scoped_identifier, - STATE(3441), 1, + STATE(3512), 1, + sym_attribute, + STATE(3695), 1, sym_bracketed_type, - STATE(3467), 1, + STATE(3765), 1, sym_generic_type_with_turbofish, - STATE(3625), 1, - sym_attribute, - STATE(1959), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4604), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4602), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165628,35 +167129,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61482] = 13, + [60834] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(2184), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4600), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4606), 1, sym_metavariable, - STATE(2350), 1, + STATE(2348), 1, sym_scoped_identifier, - STATE(3441), 1, + STATE(3558), 1, + sym_attribute, + STATE(3695), 1, sym_bracketed_type, - STATE(3467), 1, + STATE(3765), 1, sym_generic_type_with_turbofish, - STATE(3560), 1, - sym_attribute, - STATE(1960), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4604), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4602), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165677,35 +167178,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61544] = 13, + [60896] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2554), 1, + ACTIONS(2184), 1, anon_sym_COLON_COLON, - ACTIONS(4542), 1, + ACTIONS(4600), 1, sym_identifier, - ACTIONS(4548), 1, + ACTIONS(4606), 1, sym_metavariable, - STATE(2350), 1, + STATE(2348), 1, sym_scoped_identifier, - STATE(3441), 1, + STATE(3647), 1, + sym_attribute, + STATE(3695), 1, sym_bracketed_type, - STATE(3467), 1, + STATE(3765), 1, sym_generic_type_with_turbofish, - STATE(3473), 1, - sym_attribute, - STATE(1961), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4546), 3, + ACTIONS(4604), 3, sym_self, sym_super, sym_crate, - ACTIONS(4544), 20, + ACTIONS(4602), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165726,33 +167227,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61606] = 12, + [60958] = 12, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4550), 1, + ACTIONS(4608), 1, sym_identifier, - ACTIONS(4554), 1, + ACTIONS(4612), 1, anon_sym_COLON_COLON, - ACTIONS(4558), 1, + ACTIONS(4616), 1, sym_metavariable, - STATE(3218), 1, + STATE(3364), 1, sym_scoped_identifier, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3688), 1, + STATE(3461), 1, sym_bracketed_type, - STATE(1962), 2, + STATE(3618), 1, + sym_generic_type_with_turbofish, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4556), 3, + ACTIONS(4614), 3, sym_self, sym_super, sym_crate, - ACTIONS(4552), 20, + ACTIONS(4610), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165773,33 +167274,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61665] = 12, + [61017] = 12, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, + ACTIONS(4612), 1, anon_sym_COLON_COLON, - ACTIONS(4560), 1, + ACTIONS(4618), 1, sym_identifier, - ACTIONS(4566), 1, + ACTIONS(4624), 1, sym_metavariable, - STATE(3213), 1, + STATE(3189), 1, sym_scoped_identifier, - STATE(3465), 1, - sym_generic_type_with_turbofish, - STATE(3688), 1, + STATE(3461), 1, sym_bracketed_type, - STATE(1963), 2, + STATE(3618), 1, + sym_generic_type_with_turbofish, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(4564), 3, + ACTIONS(4622), 3, sym_self, sym_super, sym_crate, - ACTIONS(4562), 20, + ACTIONS(4620), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165820,17 +167321,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [61724] = 5, + [61076] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, + ACTIONS(911), 1, anon_sym_DOT_DOT, - STATE(1964), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(1005), 20, + ACTIONS(913), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165851,17 +167352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [61760] = 5, + [61112] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1017), 1, + ACTIONS(919), 1, anon_sym_DOT_DOT, - STATE(1965), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(1019), 20, + ACTIONS(921), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165882,119 +167383,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [61796] = 11, + [61148] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3356), 1, - anon_sym_COLON, - 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, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, - STATE(1966), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3352), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [61844] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3419), 1, - anon_sym_COLON, - ACTIONS(3423), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - STATE(1967), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3417), 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_LT2, - [61881] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_COLON, - ACTIONS(3459), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - STATE(1968), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3453), 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_LT2, - [61918] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3411), 1, + ACTIONS(3485), 1, anon_sym_COLON, - ACTIONS(3415), 2, + ACTIONS(3489), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1969), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3409), 17, + ACTIONS(3483), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166012,59 +167414,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [61955] = 14, + [61185] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4578), 1, - anon_sym_LPAREN, - ACTIONS(4580), 1, - anon_sym_LBRACE, - ACTIONS(4582), 1, - anon_sym_COLON, - ACTIONS(4584), 1, - anon_sym_AT, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(4590), 1, - anon_sym_COLON_COLON, - STATE(1999), 1, - sym_type_arguments, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1970), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4576), 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, - [62008] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3435), 1, + ACTIONS(3504), 1, anon_sym_COLON, - ACTIONS(3439), 2, + ACTIONS(3508), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1971), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 17, + ACTIONS(3502), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166082,63 +167445,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [62045] = 10, + [61222] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, - anon_sym_COLON, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4592), 1, - anon_sym_COLON_COLON, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, - STATE(1972), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3370), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62090] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3366), 1, - anon_sym_COLON, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4592), 1, + ACTIONS(3512), 1, + anon_sym_COLON, + ACTIONS(3516), 2, + anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, - STATE(1973), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(3364), 14, + ACTIONS(3510), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -166150,30 +167472,26 @@ 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, - [62135] = 10, + anon_sym_LT2, + [61259] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3383), 1, + ACTIONS(3496), 1, anon_sym_COLON, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4592), 1, + ACTIONS(3500), 2, + anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, - STATE(1974), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3381), 14, + ACTIONS(3494), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -166185,81 +167503,94 @@ 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, - [62180] = 8, + anon_sym_LT2, + [61296] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, + ACTIONS(4628), 1, anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4630), 1, + anon_sym_LBRACE, + ACTIONS(4632), 1, + anon_sym_COLON, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4636), 1, + anon_sym_AT, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(4642), 1, + anon_sym_COLON_COLON, + ACTIONS(4644), 1, anon_sym_LT2, - STATE(1993), 1, - sym_type_arguments, STATE(2006), 1, - sym_parameters, - STATE(1975), 2, + sym_type_arguments, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 15, + ACTIONS(4626), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [62220] = 6, + anon_sym_in, + [61349] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1976), 2, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, + STATE(2079), 1, + sym_parameters, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3439), 14, + ACTIONS(3442), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [62256] = 5, + [61393] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3674), 1, + ACTIONS(3680), 1, anon_sym_COLON, - STATE(1977), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 18, + ACTIONS(3678), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166278,49 +167609,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62290] = 8, + [61427] = 5, 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, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, - STATE(1978), 2, + ACTIONS(3712), 1, + anon_sym_COLON, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3441), 15, + ACTIONS(3710), 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, - [62330] = 5, + anon_sym_in, + [61461] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3664), 1, + ACTIONS(3694), 1, anon_sym_COLON, - STATE(1979), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3662), 18, + ACTIONS(3692), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166339,22 +167667,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62364] = 6, + [61495] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 2, + ACTIONS(3498), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1980), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3409), 3, + ACTIONS(3494), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3415), 14, + ACTIONS(3500), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166369,22 +167697,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62400] = 6, + [61531] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 2, + ACTIONS(3514), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1981), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 3, + ACTIONS(3510), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3459), 14, + ACTIONS(3516), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166399,207 +167727,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62436] = 5, + [61567] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3682), 1, + ACTIONS(3506), 2, anon_sym_COLON, - STATE(1982), 2, + anon_sym_DOT_DOT, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3680), 18, + ACTIONS(3502), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3508), 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, - [62470] = 5, + [61603] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3650), 1, + ACTIONS(3487), 2, anon_sym_COLON, - STATE(1983), 2, + anon_sym_DOT_DOT, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 18, + ACTIONS(3483), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3489), 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, - [62504] = 8, + [61639] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, anon_sym_LT2, - STATE(1993), 1, - sym_type_arguments, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, STATE(2006), 1, + sym_type_arguments, + STATE(2079), 1, sym_parameters, - STATE(1984), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3429), 15, + ACTIONS(3424), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [62544] = 6, + [61683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 2, + ACTIONS(3704), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1985), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(3417), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3423), 14, + ACTIONS(3702), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, anon_sym_in, - [62580] = 8, + [61717] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, anon_sym_LT2, - STATE(1993), 1, - sym_type_arguments, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, STATE(2006), 1, + sym_type_arguments, + STATE(2079), 1, sym_parameters, - STATE(1986), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(3449), 15, + ACTIONS(3436), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [62620] = 14, + [61761] = 14, ACTIONS(37), 1, anon_sym_SQUOTE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1241), 1, + ACTIONS(1209), 1, anon_sym_DASH, - ACTIONS(1289), 1, + ACTIONS(1259), 1, aux_sym_string_literal_token1, - ACTIONS(1299), 1, + ACTIONS(1269), 1, sym__raw_string_literal_start, - ACTIONS(1601), 1, + ACTIONS(1603), 1, anon_sym_LBRACE, - ACTIONS(4594), 1, + ACTIONS(4650), 1, sym_identifier, - STATE(3709), 1, + STATE(3732), 1, sym_label, - ACTIONS(1291), 2, + ACTIONS(1261), 2, anon_sym_true, anon_sym_false, - STATE(1987), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(1617), 3, + ACTIONS(1629), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(3070), 3, + STATE(2886), 3, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - STATE(3163), 3, + STATE(3177), 3, sym_block, sym__literal, sym_negative_literal, - [62671] = 5, + [61812] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 2, + ACTIONS(3487), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1988), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3459), 16, + ACTIONS(3489), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166616,18 +167949,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62704] = 5, + [61845] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 2, + ACTIONS(3506), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1989), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3423), 16, + ACTIONS(3508), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166644,18 +167977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62737] = 5, + [61878] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 2, + ACTIONS(3514), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1990), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(3415), 16, + ACTIONS(3516), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166672,15 +168005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62770] = 4, + [61911] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1991), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3409), 18, + ACTIONS(3483), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166699,18 +168032,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [62801] = 5, + [61942] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, + STATE(2079), 1, + sym_parameters, + STATE(1999), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3453), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [61983] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 2, + ACTIONS(3498), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1992), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(3439), 16, + ACTIONS(3500), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166727,44 +168092,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [62834] = 5, + [62016] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3604), 1, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4656), 1, anon_sym_COLON, - STATE(1993), 2, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4660), 1, + anon_sym_DOT_DOT, + ACTIONS(4664), 1, + anon_sym_COLON_COLON, + STATE(2003), 1, + sym_type_arguments, + ACTIONS(4662), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3602), 16, + ACTIONS(4654), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [62866] = 5, + anon_sym_in, + [62060] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4668), 1, + anon_sym_const, + ACTIONS(4670), 1, + anon_sym_enum, + ACTIONS(4672), 1, + anon_sym_fn, + ACTIONS(4674), 1, + anon_sym_mod, + ACTIONS(4676), 1, + anon_sym_static, + ACTIONS(4678), 1, + anon_sym_struct, + ACTIONS(4680), 1, + anon_sym_trait, + ACTIONS(4682), 1, + anon_sym_type, + ACTIONS(4684), 1, + anon_sym_union, + ACTIONS(4686), 1, + anon_sym_unsafe, + ACTIONS(4688), 1, + anon_sym_use, + ACTIONS(4690), 1, + anon_sym_extern, + STATE(2250), 1, + sym_extern_modifier, + STATE(2278), 1, + aux_sym_function_modifiers_repeat1, + STATE(3485), 1, + sym_function_modifiers, + ACTIONS(4666), 2, + anon_sym_async, + anon_sym_default, + STATE(2002), 2, + sym_line_comment, + sym_block_comment, + [62120] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3588), 1, + ACTIONS(3618), 1, anon_sym_COLON, - STATE(1994), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(3586), 16, + ACTIONS(3616), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166781,166 +168193,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [62898] = 12, + [62152] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(4598), 1, + ACTIONS(4656), 1, anon_sym_COLON, - ACTIONS(4600), 1, + ACTIONS(4658), 1, anon_sym_BANG, - ACTIONS(4602), 1, + ACTIONS(4660), 1, anon_sym_DOT_DOT, - ACTIONS(4606), 1, + ACTIONS(4692), 1, anon_sym_COLON_COLON, - STATE(1994), 1, + STATE(2003), 1, sym_type_arguments, - ACTIONS(4604), 2, + ACTIONS(4662), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1995), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 3, + ACTIONS(4654), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3530), 6, + ACTIONS(3562), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [62944] = 19, + [62198] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4610), 1, + ACTIONS(4694), 1, anon_sym_const, - ACTIONS(4612), 1, + ACTIONS(4696), 1, anon_sym_enum, - ACTIONS(4614), 1, + ACTIONS(4698), 1, anon_sym_fn, - ACTIONS(4616), 1, + ACTIONS(4700), 1, anon_sym_mod, - ACTIONS(4618), 1, + ACTIONS(4702), 1, anon_sym_static, - ACTIONS(4620), 1, + ACTIONS(4704), 1, anon_sym_struct, - ACTIONS(4622), 1, + ACTIONS(4706), 1, anon_sym_trait, - ACTIONS(4624), 1, + ACTIONS(4708), 1, anon_sym_type, - ACTIONS(4626), 1, + ACTIONS(4710), 1, anon_sym_union, - ACTIONS(4628), 1, + ACTIONS(4712), 1, anon_sym_unsafe, - ACTIONS(4630), 1, + ACTIONS(4714), 1, anon_sym_use, - ACTIONS(4632), 1, + ACTIONS(4716), 1, anon_sym_extern, - STATE(2209), 1, + STATE(2261), 1, sym_extern_modifier, - STATE(2252), 1, + STATE(2278), 1, aux_sym_function_modifiers_repeat1, - STATE(3558), 1, + STATE(3754), 1, sym_function_modifiers, - ACTIONS(4608), 2, + ACTIONS(4666), 2, anon_sym_async, anon_sym_default, - STATE(1996), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - [63004] = 19, + [62258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_const, - ACTIONS(4636), 1, - anon_sym_enum, - ACTIONS(4638), 1, - anon_sym_fn, - ACTIONS(4640), 1, - anon_sym_mod, - ACTIONS(4642), 1, - anon_sym_static, - ACTIONS(4644), 1, - anon_sym_struct, - ACTIONS(4646), 1, - anon_sym_trait, - ACTIONS(4648), 1, - anon_sym_type, - ACTIONS(4650), 1, - anon_sym_union, - ACTIONS(4652), 1, - anon_sym_unsafe, - ACTIONS(4654), 1, - anon_sym_use, - ACTIONS(4656), 1, - anon_sym_extern, - STATE(2197), 1, - sym_extern_modifier, - STATE(2252), 1, - aux_sym_function_modifiers_repeat1, - STATE(3727), 1, - sym_function_modifiers, - ACTIONS(4608), 2, - anon_sym_async, - anon_sym_default, - STATE(1997), 2, + ACTIONS(3630), 1, + anon_sym_COLON, + STATE(2006), 2, sym_line_comment, sym_block_comment, - [63064] = 11, + ACTIONS(3628), 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, + [62290] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(4598), 1, - anon_sym_COLON, - ACTIONS(4600), 1, - anon_sym_BANG, - ACTIONS(4602), 1, - anon_sym_DOT_DOT, - ACTIONS(4658), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2008), 1, sym_type_arguments, - ACTIONS(4604), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1998), 2, + STATE(2071), 1, + sym_parameters, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 9, + ACTIONS(3518), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [63108] = 5, + [62328] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3600), 1, + ACTIONS(3634), 1, anon_sym_COLON, - STATE(1999), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3598), 16, + ACTIONS(3632), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166957,46 +168352,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [63140] = 6, + [62360] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - STATE(2000), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2008), 1, + sym_type_arguments, + STATE(2071), 1, + sym_parameters, + STATE(2009), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3526), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [62398] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2008), 1, + sym_type_arguments, + STATE(2071), 1, + sym_parameters, + STATE(2010), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3522), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [62436] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2008), 1, + sym_type_arguments, + STATE(2071), 1, + sym_parameters, + STATE(2011), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3532), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [62474] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3441), 14, + ACTIONS(3696), 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, - [63173] = 6, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [62503] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4718), 1, + anon_sym_LPAREN, + STATE(2013), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4150), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [62534] = 17, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3436), 1, + anon_sym_PLUS, + ACTIONS(4626), 1, + anon_sym_PIPE, + ACTIONS(4630), 1, + anon_sym_LBRACE, + ACTIONS(4632), 1, + anon_sym_COLON, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4636), 1, + anon_sym_AT, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4720), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, + STATE(2079), 1, + sym_parameters, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4722), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2014), 2, + sym_line_comment, + sym_block_comment, + [62589] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3427), 1, + ACTIONS(3534), 1, anon_sym_COLON, - ACTIONS(4660), 1, + ACTIONS(4727), 1, anon_sym_COLON_COLON, - STATE(2001), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 14, + ACTIONS(3532), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167011,17 +168558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63206] = 5, + [62622] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4662), 1, - anon_sym_DASH_GT, - STATE(2002), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3642), 15, + ACTIONS(3706), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167033,57 +168578,57 @@ 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, - [63237] = 17, + [62651] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3352), 1, - anon_sym_PLUS, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4576), 1, + ACTIONS(4626), 1, anon_sym_PIPE, - ACTIONS(4580), 1, + ACTIONS(4630), 1, anon_sym_LBRACE, - ACTIONS(4582), 1, + ACTIONS(4632), 1, anon_sym_COLON, - ACTIONS(4584), 1, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4636), 1, anon_sym_AT, - ACTIONS(4586), 1, + ACTIONS(4638), 1, anon_sym_DOT_DOT, - ACTIONS(4664), 1, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4729), 1, anon_sym_LPAREN, - ACTIONS(4669), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - STATE(1999), 1, + STATE(2006), 1, sym_type_arguments, - STATE(2017), 1, + STATE(2079), 1, sym_parameters, - ACTIONS(4588), 2, + ACTIONS(4640), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4666), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2003), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - [63292] = 4, + ACTIONS(3436), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [62704] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2004), 2, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 16, + ACTIONS(1043), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167100,19 +168645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [63321] = 6, + [62733] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3427), 1, + ACTIONS(3528), 1, anon_sym_COLON, - ACTIONS(4671), 1, + ACTIONS(4727), 1, anon_sym_COLON_COLON, - STATE(2005), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 14, + ACTIONS(3526), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167127,17 +168672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63354] = 5, + [62766] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4673), 1, - anon_sym_DASH_GT, - STATE(2006), 2, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(1477), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167153,46 +168696,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63385] = 4, + anon_sym_in, + [62795] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2007), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3666), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3520), 1, 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, - [63414] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2008), 2, + ACTIONS(4733), 1, + anon_sym_COLON_COLON, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(1051), 16, + ACTIONS(3518), 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, @@ -167202,16 +168724,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [63443] = 4, + [62828] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2009), 2, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(1471), 16, + ACTIONS(1469), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167228,17 +168749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [63472] = 5, + [62857] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_DASH_GT, - STATE(2010), 2, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(3714), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167250,44 +168769,47 @@ 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, - [63503] = 4, + [62886] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2011), 2, + ACTIONS(3520), 1, + anon_sym_COLON, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 16, + ACTIONS(3518), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [63532] = 4, + [62919] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2012), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3626), 16, + ACTIONS(3682), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167304,21 +168826,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63561] = 4, + [62948] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2013), 2, + ACTIONS(3524), 1, + anon_sym_COLON, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(1437), 16, + ACTIONS(3522), 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, @@ -167328,16 +168853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [63590] = 4, + [62981] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2014), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3676), 16, + ACTIONS(3656), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167354,144 +168878,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63619] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4677), 1, - anon_sym_LPAREN, - STATE(2015), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4102), 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, - [63650] = 10, + [63010] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4658), 1, anon_sym_BANG, - ACTIONS(4578), 1, - anon_sym_LPAREN, - ACTIONS(4582), 1, - anon_sym_COLON, - ACTIONS(4586), 1, + ACTIONS(4660), 1, anon_sym_DOT_DOT, - ACTIONS(4679), 1, + ACTIONS(4735), 1, anon_sym_COLON_COLON, - ACTIONS(4588), 2, + STATE(2003), 1, + sym_type_arguments, + ACTIONS(4662), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2016), 2, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 9, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4654), 3, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [63691] = 5, + ACTIONS(3562), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [63053] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4681), 1, - anon_sym_DASH_GT, - STATE(2017), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3612), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4630), 1, 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, - [63722] = 16, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4570), 1, + ACTIONS(4634), 1, anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4576), 1, - anon_sym_PIPE, - ACTIONS(4580), 1, - anon_sym_LBRACE, - ACTIONS(4582), 1, - anon_sym_COLON, - ACTIONS(4584), 1, + ACTIONS(4636), 1, anon_sym_AT, - ACTIONS(4586), 1, + ACTIONS(4638), 1, anon_sym_DOT_DOT, - ACTIONS(4683), 1, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4722), 1, + anon_sym_RBRACK, + ACTIONS(4737), 1, anon_sym_LPAREN, - ACTIONS(4685), 1, + ACTIONS(4739), 1, anon_sym_COLON_COLON, - STATE(1999), 1, + STATE(2006), 1, sym_type_arguments, - STATE(2017), 1, + STATE(2079), 1, sym_parameters, - ACTIONS(4588), 2, + ACTIONS(3436), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4626), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4640), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2018), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [63775] = 6, + [63106] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3451), 1, - anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - STATE(2019), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(3449), 14, + ACTIONS(1039), 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, @@ -167501,106 +168971,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63808] = 4, + anon_sym_in, + [63135] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2020), 2, + ACTIONS(3520), 1, + anon_sym_COLON, + ACTIONS(4741), 1, + anon_sym_COLON_COLON, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3652), 16, + ACTIONS(3518), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [63837] = 16, + [63168] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, + ACTIONS(4628), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, + anon_sym_COLON, + ACTIONS(4634), 1, anon_sym_BANG, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4580), 1, - anon_sym_LBRACE, - ACTIONS(4584), 1, - anon_sym_AT, - ACTIONS(4586), 1, + ACTIONS(4638), 1, anon_sym_DOT_DOT, - ACTIONS(4666), 1, - anon_sym_RBRACK, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4743), 1, anon_sym_COLON_COLON, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, - ACTIONS(3352), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4576), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4588), 2, + ACTIONS(4640), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2021), 2, - sym_line_comment, - sym_block_comment, - [63890] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3431), 1, - anon_sym_COLON, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - STATE(2022), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(3429), 14, + ACTIONS(4626), 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, - [63923] = 5, + anon_sym_in, + [63209] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4691), 1, - anon_sym_DASH_GT, - STATE(2023), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3656), 15, + ACTIONS(3862), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167616,17 +169054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63954] = 5, + [63237] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4693), 1, - anon_sym_DASH_GT, - STATE(2024), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3636), 15, + ACTIONS(3818), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167642,76 +169078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63985] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3427), 1, - anon_sym_COLON, - ACTIONS(4695), 1, - anon_sym_COLON_COLON, - STATE(2025), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3425), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [64018] = 11, - 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(4602), 1, - anon_sym_DOT_DOT, - ACTIONS(4697), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, - ACTIONS(4604), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2026), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4596), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3530), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64061] = 5, + [63265] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4699), 1, - anon_sym_DASH_GT, - STATE(2027), 2, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(3606), 15, + ACTIONS(3822), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167727,15 +169102,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64092] = 4, + [63293] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2028), 2, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(3850), 15, + ACTIONS(3826), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167751,15 +169126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64120] = 4, + [63321] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2029), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3836), 15, + ACTIONS(3926), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167775,15 +169150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64148] = 4, + [63349] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2030), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 15, + ACTIONS(3930), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167799,15 +169174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64176] = 4, + [63377] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2031), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(4113), 15, + ACTIONS(4138), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -167823,63 +169198,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [64204] = 4, + [63405] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2032), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 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, - [64232] = 4, + ACTIONS(4130), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [63433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2033), 2, + ACTIONS(4745), 1, + anon_sym_COLON_COLON, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 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, - [64260] = 4, + ACTIONS(4155), 14, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + [63463] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2034), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, + ACTIONS(3970), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167895,39 +169271,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64288] = 4, + [63491] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2035), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3449), 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, - [64316] = 4, + ACTIONS(4146), 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, + [63519] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2036), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3752), 15, + ACTIONS(3934), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167943,15 +169319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64344] = 4, + [63547] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2037), 2, + STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, + ACTIONS(3938), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167967,15 +169343,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64372] = 4, + [63575] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2038), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3756), 15, + ACTIONS(3942), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167991,15 +169367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64400] = 4, + [63603] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2039), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3738), 15, + ACTIONS(3946), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168015,15 +169391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64428] = 4, + [63631] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2040), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3902), 15, + ACTIONS(3518), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168039,63 +169415,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64456] = 4, + [63659] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2041), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4654), 1, + anon_sym_PIPE, + ACTIONS(4656), 1, + anon_sym_COLON, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4660), 1, + anon_sym_DOT_DOT, + ACTIONS(4747), 1, + anon_sym_COLON_COLON, + STATE(2003), 1, + sym_type_arguments, + ACTIONS(4662), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(4109), 15, + ACTIONS(3562), 6, 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, - [64484] = 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(3906), 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, - [64512] = 4, + [63703] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2043), 2, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3760), 15, + ACTIONS(3886), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168111,15 +169471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64540] = 4, + [63731] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2044), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3808), 15, + ACTIONS(3754), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168135,15 +169495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64568] = 4, + [63759] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2045), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3910), 15, + ACTIONS(3890), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168159,15 +169519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64596] = 4, + [63787] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2046), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3734), 15, + ACTIONS(3894), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168183,15 +169543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64624] = 4, + [63815] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2047), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3429), 15, + ACTIONS(3762), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168207,17 +169567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64652] = 5, + [63843] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 1, + ACTIONS(4056), 1, anon_sym_COLON_COLON, - STATE(2048), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(4107), 14, + ACTIONS(4155), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -168232,15 +169592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [64682] = 4, + [63873] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2049), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, + ACTIONS(3522), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168256,15 +169616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64710] = 4, + [63901] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2050), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3930), 15, + ACTIONS(3986), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168280,15 +169640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64738] = 4, + [63929] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2051), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(4006), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168304,15 +169664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64766] = 4, + [63957] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3926), 15, + ACTIONS(3746), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168328,15 +169688,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64794] = 4, + [63985] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2053), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3850), 15, + ACTIONS(3532), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168352,15 +169712,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64822] = 4, + [64013] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2054), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3850), 15, + ACTIONS(3846), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168376,15 +169736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64850] = 4, + [64041] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2055), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3868), 15, + ACTIONS(3850), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168400,15 +169760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64878] = 4, + [64069] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2056), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3776), 15, + ACTIONS(3854), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168424,39 +169784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64906] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2057), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4122), 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, - [64934] = 4, + [64097] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2058), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(3526), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168472,15 +169808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64962] = 4, + [64125] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 15, + ACTIONS(3858), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168496,15 +169832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64990] = 4, + [64153] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2060), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(3954), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168520,15 +169856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65018] = 4, + [64181] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2061), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(3866), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168544,15 +169880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65046] = 4, + [64209] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2062), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3764), 15, + ACTIONS(3870), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168568,15 +169904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65074] = 4, + [64237] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2063), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(3838), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168592,47 +169928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65102] = 12, + [64265] = 4, 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(1994), 1, - sym_type_arguments, - ACTIONS(4604), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2064), 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, - [65146] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2065), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3922), 15, + ACTIONS(3950), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168648,68 +169952,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65174] = 4, + [64293] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2066), 2, + ACTIONS(4749), 1, + anon_sym_DASH_GT, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3441), 15, + ACTIONS(3648), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [65202] = 5, + [64322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_COLON_COLON, - STATE(2067), 2, + ACTIONS(907), 1, + anon_sym_DOT_DOT, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(4107), 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, - [65232] = 6, + ACTIONS(909), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64351] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4707), 1, + ACTIONS(4753), 1, anon_sym_pat, - STATE(162), 1, + STATE(146), 1, sym_fragment_specifier, - STATE(2068), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(4705), 12, + ACTIONS(4751), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -168722,44 +170025,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [65263] = 8, + [64382] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4598), 1, - anon_sym_COLON, - ACTIONS(4602), 1, + ACTIONS(4757), 1, anon_sym_DOT_DOT, - ACTIONS(4658), 1, - anon_sym_COLON_COLON, - ACTIONS(4604), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2069), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 9, + ACTIONS(4755), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65298] = 5, + [64411] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4711), 1, + ACTIONS(915), 1, anon_sym_DOT_DOT, - STATE(2070), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(4709), 13, + ACTIONS(917), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168773,154 +170073,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65327] = 5, + [64440] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, - anon_sym_DOT_DOT, - STATE(2071), 2, + ACTIONS(4759), 1, + anon_sym_DASH_GT, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(999), 13, + ACTIONS(3672), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, anon_sym_else, - anon_sym_in, - [65356] = 5, + [64469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1009), 1, - anon_sym_DOT_DOT, - STATE(2072), 2, + ACTIONS(4761), 1, + anon_sym_DASH_GT, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(1011), 13, + ACTIONS(3660), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [64498] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4656), 1, + anon_sym_COLON, + ACTIONS(4660), 1, + anon_sym_DOT_DOT, + ACTIONS(4664), 1, + anon_sym_COLON_COLON, + ACTIONS(4662), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + STATE(2078), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4654), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65385] = 14, + [64533] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, + ACTIONS(4763), 1, + anon_sym_DASH_GT, + STATE(2079), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3642), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [64562] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4765), 1, + anon_sym_DASH_GT, + STATE(2080), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3636), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [64591] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4767), 1, + anon_sym_DASH_GT, + STATE(2081), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3666), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [64620] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4769), 1, + anon_sym_DASH_GT, + STATE(2082), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3686), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [64649] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3498), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2083), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3494), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4771), 3, anon_sym_LPAREN, - ACTIONS(4570), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3500), 5, anon_sym_BANG, - ACTIONS(4572), 1, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4574), 1, + [64681] = 14, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(4713), 1, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, + ACTIONS(4774), 1, anon_sym_COLON, - ACTIONS(4715), 1, + ACTIONS(4776), 1, anon_sym_EQ, - STATE(1999), 1, + STATE(2006), 1, sym_type_arguments, - STATE(2017), 1, + STATE(2462), 1, sym_parameters, - STATE(2960), 1, + STATE(3099), 1, sym_trait_bounds, - ACTIONS(3352), 2, + ACTIONS(3436), 2, anon_sym_PLUS, anon_sym_as, - ACTIONS(4717), 2, + ACTIONS(4778), 2, anon_sym_GT, anon_sym_COMMA, - STATE(2073), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - [65431] = 5, + [64727] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4721), 1, + ACTIONS(4780), 1, + anon_sym_LPAREN, + ACTIONS(3506), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2074), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(4719), 12, - anon_sym_SEMI, + ACTIONS(3502), 5, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3508), 5, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65459] = 13, + anon_sym_COLON_COLON, + [64759] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(3487), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2086), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3483), 3, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4723), 1, + ACTIONS(4783), 3, anon_sym_LPAREN, - ACTIONS(4725), 1, - anon_sym_LBRACE, - ACTIONS(4727), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3489), 5, anon_sym_BANG, - ACTIONS(4729), 1, - anon_sym_AT, - ACTIONS(4731), 1, - anon_sym_DOT_DOT, - ACTIONS(4735), 1, - anon_sym_COLON_COLON, - STATE(1999), 1, - sym_type_arguments, - ACTIONS(4733), 2, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2075), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4576), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [65503] = 6, + anon_sym_COLON_COLON, + [64791] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, + ACTIONS(4638), 1, anon_sym_DOT_DOT, - ACTIONS(4588), 2, + ACTIONS(4640), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2076), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 10, + ACTIONS(4626), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168931,916 +170375,591 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65533] = 7, + [64821] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, + ACTIONS(3514), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4737), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2077), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 4, - anon_sym_SEMI, + ACTIONS(3510), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3459), 6, + ACTIONS(4786), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3516), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [65565] = 7, + [64853] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 2, + ACTIONS(3506), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2078), 2, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 3, + ACTIONS(3502), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4737), 3, + ACTIONS(4780), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3459), 5, + ACTIONS(3508), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65597] = 7, + [64885] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 1, + ACTIONS(3514), 1, anon_sym_DOT_DOT, - ACTIONS(4740), 2, + ACTIONS(4786), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2079), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3417), 4, + ACTIONS(3510), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3423), 6, + ACTIONS(3516), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [65629] = 7, + [64917] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 1, + ACTIONS(3498), 1, anon_sym_DOT_DOT, - ACTIONS(4743), 2, + ACTIONS(4771), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2080), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3409), 4, + ACTIONS(3494), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3415), 6, + ACTIONS(3500), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [65661] = 7, + [64949] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, + ACTIONS(3506), 1, anon_sym_DOT_DOT, - ACTIONS(4746), 2, + ACTIONS(4780), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2081), 2, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 4, + ACTIONS(3502), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3439), 6, + ACTIONS(3508), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [65693] = 7, + [64981] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4743), 1, + ACTIONS(4771), 1, anon_sym_LPAREN, - ACTIONS(3413), 2, + ACTIONS(3498), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2082), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3409), 5, + ACTIONS(3494), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3415), 5, + ACTIONS(3500), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65725] = 7, + [65013] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4746), 1, + ACTIONS(4783), 1, anon_sym_LPAREN, - ACTIONS(3437), 2, + ACTIONS(3487), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2083), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 5, + ACTIONS(3483), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3439), 5, + ACTIONS(3489), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65757] = 7, + [65045] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4737), 1, + ACTIONS(4786), 1, anon_sym_LPAREN, - ACTIONS(3457), 2, + ACTIONS(3514), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2084), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 5, + ACTIONS(3510), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3459), 5, + ACTIONS(3516), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [65789] = 7, + [65077] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 2, - anon_sym_COLON, + ACTIONS(4791), 1, anon_sym_DOT_DOT, - STATE(2085), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3409), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4743), 3, - anon_sym_LPAREN, + ACTIONS(4789), 12, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - ACTIONS(3415), 5, + anon_sym_else, + anon_sym_in, + [65105] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4793), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, + anon_sym_LBRACE, + ACTIONS(4797), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(4799), 1, + anon_sym_AT, + ACTIONS(4801), 1, + anon_sym_DOT_DOT, + ACTIONS(4805), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, + ACTIONS(4803), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [65821] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4740), 1, - anon_sym_LPAREN, - ACTIONS(3421), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2086), 2, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(3417), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3423), 5, - anon_sym_BANG, + ACTIONS(4626), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [65853] = 7, + anon_sym_if, + [65149] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 2, - anon_sym_COLON, + ACTIONS(3487), 1, anon_sym_DOT_DOT, - STATE(2087), 2, + ACTIONS(4783), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3417), 3, + ACTIONS(3483), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4740), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3423), 5, + ACTIONS(3489), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [65885] = 7, + [65181] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 2, + ACTIONS(4809), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2088), 2, + ACTIONS(3910), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4746), 3, - anon_sym_LPAREN, + ACTIONS(4807), 9, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3439), 5, - anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [65917] = 13, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65210] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3068), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4811), 1, sym_identifier, - ACTIONS(4751), 1, + ACTIONS(4813), 1, anon_sym_GT, - ACTIONS(4753), 1, + ACTIONS(4815), 1, anon_sym_const, - ACTIONS(4755), 1, + ACTIONS(4817), 1, sym_metavariable, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2127), 1, + STATE(2138), 1, aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, + STATE(2816), 1, sym_lifetime, - STATE(2089), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - STATE(3385), 3, + STATE(3390), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [65960] = 10, + [65253] = 10, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(4622), 1, + ACTIONS(4680), 1, anon_sym_trait, - ACTIONS(4757), 1, + ACTIONS(4819), 1, anon_sym_impl, - STATE(418), 1, + STATE(397), 1, sym_block, - STATE(3676), 1, + STATE(3532), 1, sym_label, - STATE(2090), 2, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(3562), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65997] = 13, + [65290] = 6, 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(4759), 1, - anon_sym_GT, - STATE(1494), 1, - sym_attribute_item, - STATE(2127), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, - sym_lifetime, - STATE(2091), 2, + ACTIONS(4809), 1, + anon_sym_COLON, + ACTIONS(3776), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2102), 2, sym_line_comment, sym_block_comment, - STATE(3385), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [66040] = 13, + ACTIONS(4807), 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, + [65319] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3068), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4811), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4815), 1, anon_sym_const, - ACTIONS(4755), 1, + ACTIONS(4817), 1, sym_metavariable, - ACTIONS(4761), 1, + ACTIONS(4821), 1, anon_sym_GT, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2127), 1, + STATE(2138), 1, aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, + STATE(2816), 1, sym_lifetime, - STATE(2092), 2, + STATE(2103), 2, sym_line_comment, sym_block_comment, - STATE(3385), 3, + STATE(3390), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66083] = 13, + [65362] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3068), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4811), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4815), 1, anon_sym_const, - ACTIONS(4755), 1, + ACTIONS(4817), 1, sym_metavariable, - ACTIONS(4763), 1, + ACTIONS(4823), 1, anon_sym_GT, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2127), 1, + STATE(2138), 1, aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, + STATE(2816), 1, sym_lifetime, - STATE(2093), 2, + STATE(2104), 2, sym_line_comment, sym_block_comment, - STATE(3385), 3, + STATE(3390), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66126] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4767), 1, - anon_sym_COLON, - ACTIONS(3846), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2094), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4765), 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, - [66155] = 13, + [65405] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3068), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4811), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4815), 1, anon_sym_const, - ACTIONS(4755), 1, + ACTIONS(4817), 1, sym_metavariable, - ACTIONS(4769), 1, + ACTIONS(4825), 1, anon_sym_GT, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2127), 1, + STATE(2138), 1, aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, + STATE(2816), 1, sym_lifetime, - STATE(2095), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - STATE(3385), 3, + STATE(3390), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66198] = 13, + [65448] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3068), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4811), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4815), 1, anon_sym_const, - ACTIONS(4755), 1, + ACTIONS(4817), 1, sym_metavariable, - ACTIONS(4771), 1, + ACTIONS(4827), 1, anon_sym_GT, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2127), 1, + STATE(2138), 1, aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, + STATE(2816), 1, sym_lifetime, - STATE(2096), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - STATE(3385), 3, + STATE(3390), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66241] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4767), 1, - anon_sym_COLON, - ACTIONS(3884), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2097), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4765), 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, - [66270] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1289), 1, - aux_sym_string_literal_token1, - ACTIONS(4775), 1, - sym_crate, - STATE(2259), 1, - sym_string_literal, - STATE(2098), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4773), 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, - [66300] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4779), 1, - anon_sym_COLON, - ACTIONS(4781), 1, - anon_sym_COLON_COLON, - STATE(2099), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4777), 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, - [66328] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2100), 2, - sym_line_comment, - sym_block_comment, - 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, - [66352] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1289), 1, - aux_sym_string_literal_token1, - ACTIONS(4783), 1, - sym_crate, - STATE(2259), 1, - sym_string_literal, - STATE(2101), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4773), 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, - [66382] = 12, + [65491] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3068), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4811), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4815), 1, anon_sym_const, - ACTIONS(4755), 1, + ACTIONS(4817), 1, sym_metavariable, - STATE(1494), 1, + ACTIONS(4829), 1, + anon_sym_GT, + STATE(1115), 1, sym_attribute_item, - STATE(2127), 1, + STATE(2138), 1, aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, + STATE(2816), 1, sym_lifetime, - STATE(2102), 2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - STATE(3385), 3, + STATE(3390), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66422] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4779), 1, - anon_sym_COLON, - ACTIONS(4785), 1, - anon_sym_COLON_COLON, - STATE(2103), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4777), 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, - [66450] = 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(2104), 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, - [66478] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4781), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_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, - [66506] = 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(2106), 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, - [66534] = 6, + [65534] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4785), 1, + ACTIONS(4745), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(4833), 1, anon_sym_COLON, - STATE(2107), 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, - [66562] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(1395), 11, + ACTIONS(4831), 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, - [66586] = 11, + [65562] = 6, 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, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4839), 1, anon_sym_COLON_COLON, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4797), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66624] = 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(4799), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, - STATE(2110), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3352), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66662] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4801), 1, - sym_identifier, - ACTIONS(4803), 1, - anon_sym_RBRACE, - ACTIONS(4805), 1, - anon_sym_DOT_DOT, - ACTIONS(4807), 1, - anon_sym_COMMA, - ACTIONS(4809), 1, - sym_integer_literal, - STATE(1494), 1, - sym_attribute_item, - STATE(2561), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2111), 2, - sym_line_comment, - sym_block_comment, - STATE(2854), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66702] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2112), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1413), 11, + ACTIONS(4835), 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, - [66726] = 4, + [65590] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2113), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(1383), 11, + ACTIONS(1431), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169852,44 +170971,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66750] = 9, + [65614] = 9, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(4811), 1, - anon_sym_move, - STATE(404), 1, + ACTIONS(4841), 1, + sym_identifier, + STATE(411), 1, sym_block, - STATE(3676), 1, + STATE(3532), 1, sym_label, - STATE(2114), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(4843), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66784] = 6, + [65648] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_COLON_COLON, - ACTIONS(4815), 1, + ACTIONS(4847), 1, anon_sym_COLON, - STATE(2115), 2, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 9, + ACTIONS(4845), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169899,90 +171018,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66812] = 6, + [65676] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4785), 1, - anon_sym_COLON_COLON, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(4811), 1, + sym_identifier, ACTIONS(4815), 1, - anon_sym_COLON, - STATE(2116), 2, + anon_sym_const, + ACTIONS(4851), 1, + sym_metavariable, + STATE(1115), 1, + sym_attribute_item, + STATE(2117), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66840] = 11, + STATE(3034), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [65716] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4598), 1, - anon_sym_COLON, - ACTIONS(4600), 1, - anon_sym_BANG, - ACTIONS(4602), 1, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4853), 1, + sym_identifier, + ACTIONS(4855), 1, + anon_sym_RBRACE, + ACTIONS(4857), 1, anon_sym_DOT_DOT, - ACTIONS(4606), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, - ACTIONS(4604), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2117), 2, + ACTIONS(4859), 1, + anon_sym_COMMA, + ACTIONS(4861), 1, + sym_integer_literal, + STATE(1115), 1, + sym_attribute_item, + STATE(2554), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [66878] = 6, + STATE(3112), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [65756] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_COLON_COLON, - ACTIONS(4819), 1, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3438), 1, anon_sym_COLON, - STATE(2118), 2, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, + STATE(2462), 1, + sym_parameters, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(4817), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(3436), 4, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66906] = 6, + anon_sym_as, + [65794] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4781), 1, + ACTIONS(4839), 1, anon_sym_COLON_COLON, - ACTIONS(4815), 1, + ACTIONS(4865), 1, anon_sym_COLON, - STATE(2119), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 9, + ACTIONS(4863), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -169992,126 +171123,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66934] = 12, + [65822] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3068), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4811), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4815), 1, anon_sym_const, - ACTIONS(4821), 1, + ACTIONS(4867), 1, sym_metavariable, - STATE(1074), 1, + STATE(1079), 1, aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2686), 1, + STATE(2816), 1, sym_lifetime, - STATE(2120), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - STATE(2966), 3, + STATE(3031), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66974] = 12, + [65862] = 11, 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(4823), 1, - sym_metavariable, - STATE(1494), 1, - sym_attribute_item, - STATE(2120), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, - sym_lifetime, - STATE(2121), 2, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, + ACTIONS(4869), 1, + anon_sym_for, + STATE(2006), 1, + sym_type_arguments, + STATE(2079), 1, + sym_parameters, + STATE(2118), 2, sym_line_comment, sym_block_comment, - STATE(2872), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67014] = 11, + ACTIONS(3436), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65900] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4570), 1, + ACTIONS(3438), 1, + anon_sym_COLON, + ACTIONS(4634), 1, anon_sym_BANG, - ACTIONS(4572), 1, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, anon_sym_COLON_COLON, - ACTIONS(4574), 1, + ACTIONS(4871), 1, + anon_sym_EQ, + STATE(2403), 1, + sym_type_arguments, + STATE(2462), 1, + sym_parameters, + STATE(2119), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3436), 3, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [65940] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(4825), 1, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, + ACTIONS(4873), 1, anon_sym_for, - STATE(1999), 1, + STATE(2006), 1, sym_type_arguments, - STATE(2017), 1, + STATE(2079), 1, sym_parameters, - STATE(2122), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 4, + ACTIONS(3436), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67052] = 12, + [65978] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3068), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4811), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4815), 1, anon_sym_const, - ACTIONS(4827), 1, + ACTIONS(4875), 1, sym_metavariable, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2128), 1, + STATE(2122), 1, aux_sym_enum_variant_list_repeat1, - STATE(2686), 1, + STATE(2816), 1, sym_lifetime, - STATE(2123), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - STATE(3120), 3, + STATE(3078), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [67092] = 4, + [66018] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2124), 2, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(4811), 1, + sym_identifier, + ACTIONS(4815), 1, + anon_sym_const, + ACTIONS(4877), 1, + sym_metavariable, + STATE(1079), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1115), 1, + sym_attribute_item, + STATE(2816), 1, + sym_lifetime, + STATE(2122), 2, + sym_line_comment, + sym_block_comment, + STATE(2872), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66058] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(1391), 11, + ACTIONS(1427), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170123,154 +171309,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67116] = 12, + [66082] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3356), 1, + ACTIONS(4833), 1, anon_sym_COLON, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4572), 1, + ACTIONS(4879), 1, anon_sym_COLON_COLON, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4829), 1, + STATE(2124), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4831), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, anon_sym_EQ, - STATE(2017), 1, - sym_parameters, - STATE(2366), 1, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66110] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3428), 1, + anon_sym_COLON, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, sym_type_arguments, + STATE(2462), 1, + sym_parameters, STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 3, + ACTIONS(3424), 4, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, - [67156] = 12, + anon_sym_as, + [66148] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4801), 1, - sym_identifier, - ACTIONS(4805), 1, - anon_sym_DOT_DOT, - ACTIONS(4809), 1, - sym_integer_literal, - ACTIONS(4831), 1, + ACTIONS(4865), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_COLON_COLON, + STATE(2126), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4863), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(4833), 1, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - STATE(1494), 1, - sym_attribute_item, - STATE(2561), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2126), 2, + anon_sym_else, + anon_sym_in, + [66176] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3487), 1, + anon_sym_DOT_DOT, + ACTIONS(3483), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2127), 2, sym_line_comment, sym_block_comment, - STATE(2824), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67196] = 12, + ACTIONS(3489), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [66204] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, + ACTIONS(4881), 1, + anon_sym_for, + STATE(2006), 1, + sym_type_arguments, + STATE(2079), 1, + sym_parameters, + STATE(2128), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3436), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66242] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3068), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4811), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4815), 1, anon_sym_const, - ACTIONS(4835), 1, + ACTIONS(4851), 1, sym_metavariable, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2686), 1, + STATE(2117), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2816), 1, sym_lifetime, - STATE(2127), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - STATE(3323), 3, + STATE(3034), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [67236] = 12, + [66282] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(3046), 1, + ACTIONS(3068), 1, anon_sym_SQUOTE, - ACTIONS(4749), 1, + ACTIONS(4811), 1, sym_identifier, - ACTIONS(4753), 1, + ACTIONS(4815), 1, anon_sym_const, - ACTIONS(4837), 1, + ACTIONS(4817), 1, sym_metavariable, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2686), 1, + STATE(2138), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2816), 1, sym_lifetime, - STATE(2128), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - STATE(2853), 3, + STATE(3390), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [67276] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1289), 1, - aux_sym_string_literal_token1, - ACTIONS(4839), 1, - sym_crate, - STATE(2259), 1, - sym_string_literal, - STATE(2129), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4773), 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, - [67306] = 6, + [66322] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, + ACTIONS(4849), 1, anon_sym_COLON_COLON, - ACTIONS(4843), 1, + ACTIONS(4885), 1, anon_sym_COLON, - STATE(2130), 2, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(4841), 9, + ACTIONS(4883), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170280,173 +171507,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67334] = 7, + [66350] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1289), 1, - aux_sym_string_literal_token1, - ACTIONS(4845), 1, - sym_crate, - STATE(2259), 1, - sym_string_literal, - STATE(2131), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4773), 8, - anon_sym_SEMI, + ACTIONS(3506), 1, + anon_sym_DOT_DOT, + ACTIONS(3502), 2, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67364] = 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(4847), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67402] = 6, + ACTIONS(3508), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [66378] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_COLON_COLON, - ACTIONS(4779), 1, - anon_sym_COLON, STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(4777), 9, + ACTIONS(1419), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67430] = 11, + [66402] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, 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(4849), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(4887), 1, + anon_sym_move, + STATE(410), 1, + sym_block, + STATE(3532), 1, + sym_label, STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67468] = 11, + ACTIONS(3562), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66436] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4570), 1, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4656), 1, + anon_sym_COLON, + ACTIONS(4658), 1, anon_sym_BANG, - ACTIONS(4572), 1, + ACTIONS(4660), 1, + anon_sym_DOT_DOT, + ACTIONS(4692), 1, anon_sym_COLON_COLON, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4851), 1, - anon_sym_for, - STATE(1999), 1, + STATE(2003), 1, sym_type_arguments, - STATE(2017), 1, - sym_parameters, + ACTIONS(4662), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67506] = 11, + ACTIONS(4654), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [66474] = 6, 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, + ACTIONS(4833), 1, + anon_sym_COLON, + ACTIONS(4839), 1, anon_sym_COLON_COLON, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4853), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 4, + ACTIONS(4831), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67544] = 6, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66502] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, + ACTIONS(3514), 1, anon_sym_DOT_DOT, - ACTIONS(3453), 2, + ACTIONS(3510), 2, anon_sym_LBRACE, anon_sym_LT2, STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(3459), 8, + ACTIONS(3516), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -170455,314 +171645,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [67572] = 6, + [66530] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 1, - anon_sym_DOT_DOT, - ACTIONS(3417), 2, - anon_sym_LBRACE, - anon_sym_LT2, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(3068), 1, + anon_sym_SQUOTE, + ACTIONS(4811), 1, + sym_identifier, + ACTIONS(4815), 1, + anon_sym_const, + ACTIONS(4889), 1, + sym_metavariable, + STATE(1079), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1115), 1, + sym_attribute_item, + STATE(2816), 1, + sym_lifetime, STATE(2138), 2, sym_line_comment, sym_block_comment, - 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, - [67600] = 6, + STATE(3269), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [66570] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 1, - anon_sym_DOT_DOT, - ACTIONS(3409), 2, - anon_sym_LBRACE, - anon_sym_LT2, + ACTIONS(4837), 1, + anon_sym_COLON, + ACTIONS(4879), 1, + anon_sym_COLON_COLON, STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(3415), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(4835), 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, - [67628] = 11, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66598] = 4, 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(4855), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, - STATE(2017), 1, - sym_parameters, STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 4, + ACTIONS(1423), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67666] = 6, + 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, + [66622] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, - anon_sym_DOT_DOT, - ACTIONS(3433), 2, - anon_sym_LBRACE, - anon_sym_LT2, + ACTIONS(1259), 1, + aux_sym_string_literal_token1, + ACTIONS(4893), 1, + sym_crate, + STATE(2270), 1, + sym_string_literal, STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(3439), 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, - [67694] = 9, - ACTIONS(19), 1, + ACTIONS(4891), 8, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66652] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4857), 1, - sym_identifier, - STATE(405), 1, - sym_block, - STATE(3676), 1, - sym_label, + ACTIONS(1259), 1, + aux_sym_string_literal_token1, + ACTIONS(4895), 1, + sym_crate, + STATE(2270), 1, + sym_string_literal, STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(4859), 6, + ACTIONS(4891), 8, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67728] = 12, + [66682] = 11, 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(4823), 1, - sym_metavariable, - STATE(1494), 1, - sym_attribute_item, - STATE(2120), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2529), 1, - sym_lifetime, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, + ACTIONS(4897), 1, + anon_sym_for, + STATE(2006), 1, + sym_type_arguments, + STATE(2079), 1, + sym_parameters, STATE(2143), 2, sym_line_comment, sym_block_comment, - STATE(2872), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67768] = 4, + ACTIONS(3436), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66720] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1259), 1, + aux_sym_string_literal_token1, + ACTIONS(4899), 1, + sym_crate, + STATE(2270), 1, + sym_string_literal, STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 10, + ACTIONS(4891), 8, 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, - [67791] = 4, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66750] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4745), 1, + anon_sym_COLON_COLON, + ACTIONS(4865), 1, + anon_sym_COLON, STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 10, + ACTIONS(4863), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67814] = 4, + [66778] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3498), 1, + anon_sym_DOT_DOT, + ACTIONS(3494), 2, + anon_sym_LBRACE, + anon_sym_LT2, STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(4865), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(3500), 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, - [67837] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [66806] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1259), 1, + aux_sym_string_literal_token1, + ACTIONS(4901), 1, + sym_crate, + STATE(2270), 1, + sym_string_literal, STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(4867), 10, + ACTIONS(4891), 8, 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, - [67860] = 4, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66836] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, + ACTIONS(4903), 1, + anon_sym_for, + STATE(2006), 1, + sym_type_arguments, + STATE(2079), 1, + sym_parameters, STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(4869), 10, + ACTIONS(3436), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67883] = 13, - ACTIONS(69), 1, - anon_sym_pub, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66874] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4873), 1, - anon_sym_RBRACE, - ACTIONS(4875), 1, - anon_sym_COMMA, - ACTIONS(4877), 1, - sym_crate, - STATE(1494), 1, - sym_attribute_item, - STATE(2271), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2849), 1, - sym_enum_variant, - STATE(3484), 1, - sym_visibility_modifier, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, + ACTIONS(4905), 1, + anon_sym_for, + STATE(2006), 1, + sym_type_arguments, + STATE(2079), 1, + sym_parameters, STATE(2149), 2, sym_line_comment, sym_block_comment, - [67924] = 4, + ACTIONS(3436), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66912] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, + ACTIONS(4907), 1, + anon_sym_for, + STATE(2006), 1, + sym_type_arguments, + STATE(2079), 1, + sym_parameters, STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 10, + ACTIONS(3436), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67947] = 4, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66950] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4745), 1, + anon_sym_COLON_COLON, + ACTIONS(4837), 1, + anon_sym_COLON, STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(4879), 10, + ACTIONS(4835), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67970] = 4, + [66978] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -170770,7 +171989,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(4881), 10, + ACTIONS(1435), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170778,95 +171997,115 @@ 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, - [67993] = 4, + [67002] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + anon_sym_for, + STATE(2006), 1, + sym_type_arguments, + STATE(2079), 1, + sym_parameters, STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(4883), 10, + ACTIONS(3436), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68016] = 9, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67040] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(3444), 1, + anon_sym_COLON, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1993), 1, - sym_type_arguments, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4648), 1, + anon_sym_COLON_COLON, STATE(2006), 1, + sym_type_arguments, + STATE(2462), 1, sym_parameters, STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3442), 4, anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - [68049] = 8, + anon_sym_as, + [67078] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - ACTIONS(3572), 1, - anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_BANG, - STATE(1106), 1, - sym_type_arguments, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4853), 1, + sym_identifier, + ACTIONS(4857), 1, + anon_sym_DOT_DOT, + ACTIONS(4861), 1, + sym_integer_literal, + ACTIONS(4911), 1, + anon_sym_RBRACE, + ACTIONS(4913), 1, + anon_sym_COMMA, + STATE(1115), 1, + sym_attribute_item, + STATE(2554), 1, + aux_sym_enum_variant_list_repeat1, STATE(2155), 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, - [68080] = 4, + STATE(3062), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67118] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + ACTIONS(4917), 1, + anon_sym_COLON, STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(4889), 10, + ACTIONS(4915), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68103] = 4, + [67146] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -170874,7 +172113,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 10, + ACTIONS(4919), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170885,71 +172124,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68126] = 13, + [67169] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(4871), 1, + ACTIONS(4921), 1, sym_identifier, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4893), 1, + ACTIONS(4923), 1, anon_sym_RBRACE, - ACTIONS(4895), 1, + ACTIONS(4925), 1, anon_sym_COMMA, - STATE(1494), 1, + ACTIONS(4927), 1, + sym_crate, + STATE(1115), 1, sym_attribute_item, - STATE(2279), 1, + STATE(2268), 1, aux_sym_enum_variant_list_repeat1, - STATE(2848), 1, + STATE(2866), 1, sym_enum_variant, - STATE(3484), 1, + STATE(3551), 1, sym_visibility_modifier, STATE(2158), 2, sym_line_comment, sym_block_comment, - [68167] = 13, + [67210] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2159), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4929), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67233] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(4877), 1, + ACTIONS(4927), 1, sym_crate, - ACTIONS(4897), 1, + ACTIONS(4931), 1, sym_identifier, - ACTIONS(4899), 1, + ACTIONS(4933), 1, anon_sym_RBRACE, - ACTIONS(4901), 1, + ACTIONS(4935), 1, anon_sym_COMMA, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2280), 1, + STATE(2273), 1, aux_sym_enum_variant_list_repeat1, - STATE(2858), 1, + STATE(2878), 1, sym_field_declaration, - STATE(3658), 1, + STATE(3627), 1, sym_visibility_modifier, - STATE(2159), 2, + STATE(2160), 2, sym_line_comment, sym_block_comment, - [68208] = 4, + [67274] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2160), 2, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(4777), 10, + ACTIONS(4937), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170960,15 +172218,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68231] = 4, + [67297] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2161), 2, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4921), 1, + sym_identifier, + ACTIONS(4927), 1, + sym_crate, + ACTIONS(4939), 1, + anon_sym_RBRACE, + ACTIONS(4941), 1, + anon_sym_COMMA, + STATE(1115), 1, + sym_attribute_item, + STATE(2311), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3105), 1, + sym_enum_variant, + STATE(3551), 1, + sym_visibility_modifier, + STATE(2162), 2, + sym_line_comment, + sym_block_comment, + [67338] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 10, + ACTIONS(4863), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170979,93 +172265,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68254] = 11, + [67361] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4853), 1, sym_identifier, - ACTIONS(4805), 1, + ACTIONS(4857), 1, anon_sym_DOT_DOT, - ACTIONS(4809), 1, + ACTIONS(4861), 1, sym_integer_literal, - ACTIONS(4905), 1, + ACTIONS(4943), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2561), 1, + STATE(2554), 1, aux_sym_enum_variant_list_repeat1, - STATE(2162), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - STATE(3379), 3, + STATE(3188), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [68291] = 11, + [67398] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2165), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1499), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67421] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4853), 1, sym_identifier, - ACTIONS(4805), 1, + ACTIONS(4857), 1, anon_sym_DOT_DOT, - ACTIONS(4809), 1, + ACTIONS(4861), 1, sym_integer_literal, - ACTIONS(4907), 1, + ACTIONS(4945), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2561), 1, + STATE(2554), 1, aux_sym_enum_variant_list_repeat1, - STATE(2163), 2, + STATE(2166), 2, sym_line_comment, sym_block_comment, - STATE(3379), 3, + STATE(3188), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [68328] = 11, + [67458] = 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(4947), 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, + [67481] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4853), 1, sym_identifier, - ACTIONS(4805), 1, + ACTIONS(4857), 1, anon_sym_DOT_DOT, - ACTIONS(4809), 1, + ACTIONS(4861), 1, sym_integer_literal, - ACTIONS(4909), 1, + ACTIONS(4949), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2561), 1, + STATE(2554), 1, aux_sym_enum_variant_list_repeat1, - STATE(2164), 2, + STATE(2168), 2, sym_line_comment, sym_block_comment, - STATE(3379), 3, + STATE(3188), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [68365] = 4, + [67518] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2165), 2, + STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(4911), 10, + ACTIONS(4951), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171076,15 +172400,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68388] = 4, + [67541] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2166), 2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(4913), 10, + ACTIONS(4626), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171095,38 +172419,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68411] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(2172), 1, - sym_block, - STATE(3709), 1, - sym_label, - STATE(2167), 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] = 4, + [67564] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2168), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 10, + ACTIONS(4953), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171137,96 +172438,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68465] = 8, + [67587] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4084), 1, + ACTIONS(4124), 1, anon_sym_LT2, - ACTIONS(4200), 1, + ACTIONS(4290), 1, anon_sym_COLON_COLON, - ACTIONS(4915), 1, + ACTIONS(4955), 1, anon_sym_BANG, - STATE(1682), 1, + STATE(1643), 1, sym_type_arguments, - STATE(2169), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(3562), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68496] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - ACTIONS(4917), 1, - anon_sym_RBRACE, - ACTIONS(4919), 1, - anon_sym_COMMA, - STATE(1494), 1, - sym_attribute_item, - STATE(2261), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3046), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, - STATE(2170), 2, - sym_line_comment, - sym_block_comment, - [68537] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2171), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4921), 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, - [68560] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2172), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1481), 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, - [68583] = 4, + [67618] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -171234,7 +172469,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(4923), 10, + ACTIONS(4957), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171245,7 +172480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68606] = 4, + [67641] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -171253,7 +172488,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(4925), 10, + ACTIONS(4959), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171264,30 +172499,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68629] = 8, + [67664] = 4, 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(4695), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, STATE(2175), 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, - [68660] = 4, + sym_block_comment, + ACTIONS(4961), 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, + [67687] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -171295,7 +172526,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(4927), 10, + ACTIONS(4963), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171306,7 +172537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68683] = 4, + [67710] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -171314,7 +172545,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 10, + ACTIONS(4835), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171325,7 +172556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68706] = 4, + [67733] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -171333,7 +172564,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 10, + ACTIONS(4965), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171344,7 +172575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68729] = 4, + [67756] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -171352,7 +172583,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(4933), 10, + ACTIONS(4967), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171363,7 +172594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68752] = 4, + [67779] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -171371,7 +172602,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 10, + ACTIONS(4969), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171382,7 +172613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68775] = 4, + [67802] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -171390,7 +172621,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(4937), 10, + ACTIONS(4971), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171401,7 +172632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68798] = 4, + [67825] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -171409,7 +172640,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(4939), 10, + ACTIONS(4973), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171420,7 +172651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68821] = 4, + [67848] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -171428,7 +172659,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(4941), 10, + ACTIONS(4975), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171439,7 +172670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68844] = 4, + [67871] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -171447,7 +172678,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(4943), 10, + ACTIONS(4977), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171458,34 +172689,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68867] = 4, + [67894] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4979), 1, + anon_sym_LBRACE, + STATE(2008), 1, + sym_type_arguments, + STATE(2071), 1, + sym_parameters, STATE(2185), 2, sym_line_comment, sym_block_comment, - ACTIONS(4945), 10, + ACTIONS(3518), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68890] = 4, + [67927] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3455), 1, + anon_sym_COLON, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, + STATE(2462), 1, + sym_parameters, STATE(2186), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 10, + ACTIONS(3453), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [67962] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2187), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4981), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171496,15 +172757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68913] = 4, + [67985] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2187), 2, + STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(4949), 10, + ACTIONS(4983), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171515,15 +172776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68936] = 4, + [68008] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2188), 2, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 10, + ACTIONS(4985), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171534,15 +172795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68959] = 4, + [68031] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2189), 2, + STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 10, + ACTIONS(4987), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171553,15 +172814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68982] = 4, + [68054] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2190), 2, + STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(4953), 10, + ACTIONS(4989), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171572,65 +172833,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69005] = 10, + [68077] = 8, 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_LPAREN, - ACTIONS(4582), 1, - anon_sym_COLON, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(4955), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2191), 2, + ACTIONS(1603), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(2165), 1, + sym_block, + STATE(3732), 1, + sym_label, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [69040] = 10, + ACTIONS(3562), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68108] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(4600), 1, + ACTIONS(4991), 1, anon_sym_BANG, - ACTIONS(4602), 1, + ACTIONS(4993), 1, anon_sym_DOT_DOT, - ACTIONS(4697), 1, + ACTIONS(4997), 1, anon_sym_COLON_COLON, - STATE(1994), 1, + STATE(2003), 1, sym_type_arguments, - ACTIONS(4604), 2, + ACTIONS(4995), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2192), 2, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 3, - anon_sym_RBRACK, + ACTIONS(4654), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_COMMA, - [69075] = 4, + anon_sym_if, + [68143] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2193), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 10, + ACTIONS(4999), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171641,558 +172900,535 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69098] = 11, + [68166] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(4801), 1, + ACTIONS(4927), 1, + sym_crate, + ACTIONS(4931), 1, sym_identifier, - ACTIONS(4805), 1, - anon_sym_DOT_DOT, - ACTIONS(4809), 1, - sym_integer_literal, - ACTIONS(4959), 1, + ACTIONS(5001), 1, anon_sym_RBRACE, - STATE(1494), 1, + ACTIONS(5003), 1, + anon_sym_COMMA, + STATE(1115), 1, sym_attribute_item, - STATE(2561), 1, + STATE(2266), 1, aux_sym_enum_variant_list_repeat1, - STATE(2194), 2, - sym_line_comment, - sym_block_comment, - STATE(3379), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [69135] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4961), 1, - anon_sym_BANG, - ACTIONS(4963), 1, - anon_sym_DOT_DOT, - ACTIONS(4967), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, - ACTIONS(4965), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + STATE(2850), 1, + sym_field_declaration, + STATE(3627), 1, + sym_visibility_modifier, STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [69170] = 5, + [68207] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, - anon_sym_DOT_DOT, STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(3459), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(5005), 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, - [69194] = 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [68230] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4969), 1, - anon_sym_SEMI, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1131), 1, - sym_declaration_list, + ACTIONS(3434), 1, + anon_sym_LT2, + ACTIONS(3602), 1, + anon_sym_COLON_COLON, + ACTIONS(4658), 1, + anon_sym_BANG, + STATE(1123), 1, + sym_type_arguments, STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(3562), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69222] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - ACTIONS(4973), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2260), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, - STATE(2198), 2, - sym_line_comment, - sym_block_comment, - [69260] = 7, + [68261] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, + ACTIONS(4124), 1, anon_sym_LT2, - ACTIONS(4975), 1, + ACTIONS(4290), 1, anon_sym_COLON_COLON, - STATE(1106), 1, + ACTIONS(4658), 1, + anon_sym_BANG, + STATE(1643), 1, sym_type_arguments, - STATE(2199), 2, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(3562), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69288] = 9, + [68292] = 4, 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(4977), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, - STATE(2200), 2, + STATE(2199), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(5007), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69320] = 9, + 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, + [68315] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, + ACTIONS(4628), 1, anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4979), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, + ACTIONS(4632), 1, + anon_sym_COLON, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5009), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2200), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4626), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [68350] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4853), 1, + sym_identifier, + ACTIONS(4857), 1, + anon_sym_DOT_DOT, + ACTIONS(4861), 1, + sym_integer_literal, + ACTIONS(5011), 1, + anon_sym_RBRACE, + STATE(1115), 1, + sym_attribute_item, + STATE(2554), 1, + aux_sym_enum_variant_list_repeat1, STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69352] = 12, + STATE(3188), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68387] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4981), 1, - anon_sym_SEMI, - ACTIONS(4983), 1, - anon_sym_LPAREN, - ACTIONS(4985), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1170), 1, - sym_field_declaration_list, - STATE(2327), 1, - sym_type_parameters, - STATE(2868), 1, - sym_ordered_field_declaration_list, - STATE(3313), 1, - sym_where_clause, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4660), 1, + anon_sym_DOT_DOT, + ACTIONS(4735), 1, + anon_sym_COLON_COLON, + STATE(2003), 1, + sym_type_arguments, + ACTIONS(4662), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2202), 2, sym_line_comment, sym_block_comment, - [69390] = 7, + ACTIONS(4654), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [68422] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4991), 1, - anon_sym_SEMI, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(663), 1, - sym_declaration_list, + ACTIONS(3434), 1, + anon_sym_LT2, + ACTIONS(3602), 1, + anon_sym_COLON_COLON, + ACTIONS(5013), 1, + anon_sym_BANG, + STATE(1123), 1, + sym_type_arguments, STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(3562), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69418] = 6, + [68453] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4997), 1, - anon_sym_PLUS, - STATE(2236), 1, - aux_sym_trait_bounds_repeat1, STATE(2204), 2, sym_line_comment, sym_block_comment, - ACTIONS(4995), 7, + ACTIONS(5015), 10, anon_sym_SEMI, - anon_sym_LBRACE, + 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_SQUOTE, - anon_sym_where, - [69444] = 10, + anon_sym_else, + anon_sym_in, + [68476] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4801), 1, - sym_identifier, - ACTIONS(4805), 1, - anon_sym_DOT_DOT, - ACTIONS(4809), 1, - sym_integer_literal, - STATE(1494), 1, - sym_attribute_item, - STATE(2561), 1, - aux_sym_enum_variant_list_repeat1, STATE(2205), 2, sym_line_comment, sym_block_comment, - STATE(3379), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [69478] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(5017), 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, + [68499] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4999), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2247), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, - sym_enum_variant, - STATE(3484), 1, - sym_visibility_modifier, STATE(2206), 2, sym_line_comment, sym_block_comment, - [69516] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(5019), 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, + [68522] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - ACTIONS(5001), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2260), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, STATE(2207), 2, sym_line_comment, sym_block_comment, - [69554] = 5, + ACTIONS(5021), 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, + [68545] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3421), 1, - anon_sym_DOT_DOT, STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(3423), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(4831), 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, - [69578] = 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [68568] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5003), 1, - anon_sym_SEMI, - STATE(689), 1, - sym_declaration_list, 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, - [69606] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(5023), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [68591] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(5005), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2247), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, - sym_enum_variant, - STATE(3484), 1, - sym_visibility_modifier, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_COLON_COLON, + STATE(2003), 1, + sym_type_arguments, STATE(2210), 2, sym_line_comment, sym_block_comment, - [69644] = 9, + ACTIONS(3562), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68622] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - 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(2211), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 3, + ACTIONS(5025), 10, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [69676] = 7, + anon_sym_else, + anon_sym_in, + [68645] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(5007), 1, + ACTIONS(4654), 1, + anon_sym_PIPE, + ACTIONS(4656), 1, + anon_sym_COLON, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4660), 1, + anon_sym_DOT_DOT, + ACTIONS(4747), 1, anon_sym_COLON_COLON, - STATE(1994), 1, + STATE(2003), 1, sym_type_arguments, + ACTIONS(4662), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2212), 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, - [69704] = 12, + [68681] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(4877), 1, + ACTIONS(4927), 1, sym_crate, - ACTIONS(4897), 1, + ACTIONS(4931), 1, sym_identifier, - ACTIONS(5009), 1, + ACTIONS(5027), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2260), 1, + STATE(2297), 1, aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, + STATE(3397), 1, sym_field_declaration, - STATE(3658), 1, + STATE(3627), 1, sym_visibility_modifier, STATE(2213), 2, sym_line_comment, sym_block_comment, - [69742] = 12, + [68719] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(4871), 1, + ACTIONS(4921), 1, sym_identifier, - ACTIONS(4877), 1, + ACTIONS(4927), 1, sym_crate, - ACTIONS(5011), 1, + ACTIONS(5029), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2247), 1, + STATE(2299), 1, aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, + STATE(3392), 1, sym_enum_variant, - STATE(3484), 1, + STATE(3551), 1, sym_visibility_modifier, STATE(2214), 2, sym_line_comment, sym_block_comment, - [69780] = 12, + [68757] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(4877), 1, + ACTIONS(4927), 1, sym_crate, - ACTIONS(4897), 1, + ACTIONS(4931), 1, sym_identifier, - ACTIONS(5013), 1, + ACTIONS(5031), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1115), 1, sym_attribute_item, - STATE(2260), 1, + STATE(2297), 1, aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, + STATE(3397), 1, sym_field_declaration, - STATE(3658), 1, + STATE(3627), 1, sym_visibility_modifier, STATE(2215), 2, sym_line_comment, sym_block_comment, - [69818] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [68795] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2008), 1, + sym_type_arguments, + STATE(2441), 1, + sym_parameters, + STATE(2216), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3518), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [68825] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - ACTIONS(5015), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2260), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, - STATE(2216), 2, + ACTIONS(5033), 1, + anon_sym_SEMI, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + STATE(1187), 1, + sym_field_declaration_list, + STATE(2366), 1, + sym_type_parameters, + STATE(2885), 1, + sym_ordered_field_declaration_list, + STATE(3241), 1, + sym_where_clause, + STATE(2217), 2, sym_line_comment, sym_block_comment, - [69856] = 5, + [68863] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, + ACTIONS(3487), 1, anon_sym_DOT_DOT, - STATE(2217), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(3439), 8, + ACTIONS(3489), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -172201,1205 +173437,1179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [69880] = 9, + [68887] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4723), 1, - anon_sym_LPAREN, - ACTIONS(4727), 1, - anon_sym_BANG, - ACTIONS(4731), 1, + ACTIONS(3506), 1, anon_sym_DOT_DOT, - ACTIONS(5017), 1, - anon_sym_COLON_COLON, - ACTIONS(4733), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2218), 2, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 3, + ACTIONS(3508), 8, + anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_if, - [69912] = 7, + [68911] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4084), 1, + ACTIONS(4124), 1, anon_sym_LT2, - ACTIONS(5019), 1, + ACTIONS(5043), 1, anon_sym_COLON_COLON, - STATE(1682), 1, + STATE(1643), 1, sym_type_arguments, - STATE(2219), 2, + STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(3530), 6, + ACTIONS(3562), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69940] = 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, - 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(5021), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2220), 2, - sym_line_comment, - sym_block_comment, - [69974] = 9, + [68939] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LPAREN, - ACTIONS(5029), 1, - anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_LBRACE, - STATE(3451), 1, - sym_token_tree_pattern, - STATE(3519), 1, - sym_macro_rule, - ACTIONS(5027), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4927), 1, + sym_crate, + ACTIONS(4931), 1, + sym_identifier, + ACTIONS(5045), 1, anon_sym_RBRACE, - STATE(2221), 3, + STATE(1115), 1, + sym_attribute_item, + STATE(2297), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3397), 1, + sym_field_declaration, + STATE(3627), 1, + sym_visibility_modifier, + STATE(2221), 2, sym_line_comment, sym_block_comment, - aux_sym_macro_definition_repeat1, - [70006] = 9, + [68977] = 5, 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(5035), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, - STATE(2222), 2, + ACTIONS(5049), 1, + anon_sym_PLUS, + STATE(2222), 3, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + aux_sym_trait_bounds_repeat1, + ACTIONS(5047), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_where, - [70038] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [69001] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(5037), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2247), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, - sym_enum_variant, - STATE(3484), 1, - sym_visibility_modifier, + ACTIONS(3434), 1, + anon_sym_LT2, + ACTIONS(5052), 1, + anon_sym_COLON_COLON, + STATE(1123), 1, + sym_type_arguments, STATE(2223), 2, sym_line_comment, sym_block_comment, - [70076] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3562), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69029] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - ACTIONS(5039), 1, + ACTIONS(5054), 1, + anon_sym_LPAREN, + ACTIONS(5059), 1, + anon_sym_LBRACK, + ACTIONS(5062), 1, + anon_sym_LBRACE, + STATE(3502), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, + ACTIONS(5057), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2260), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, - STATE(2224), 2, + STATE(2224), 3, sym_line_comment, sym_block_comment, - [70114] = 12, + aux_sym_macro_definition_repeat1, + [69061] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5041), 1, - anon_sym_SEMI, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(716), 1, - sym_field_declaration_list, - STATE(2301), 1, - sym_type_parameters, - STATE(2924), 1, - sym_ordered_field_declaration_list, - STATE(3261), 1, - sym_where_clause, + ACTIONS(3518), 1, + anon_sym_PLUS, + ACTIONS(4654), 1, + anon_sym_PIPE, + ACTIONS(4656), 1, + anon_sym_COLON, + ACTIONS(4660), 1, + anon_sym_DOT_DOT, + ACTIONS(4692), 1, + anon_sym_COLON_COLON, + ACTIONS(4662), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5065), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2225), 2, sym_line_comment, sym_block_comment, - [70152] = 6, + [69095] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4997), 1, - anon_sym_PLUS, - STATE(2204), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(5068), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(2071), 1, + sym_parameters, STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 7, + ACTIONS(3518), 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, - [70178] = 6, + [69127] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5047), 1, + ACTIONS(4660), 1, + anon_sym_DOT_DOT, + ACTIONS(4735), 1, + anon_sym_COLON_COLON, + ACTIONS(5065), 1, + anon_sym_RBRACK, + ACTIONS(3518), 2, + anon_sym_SEMI, anon_sym_PLUS, - STATE(2204), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(4654), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4662), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2227), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70204] = 6, + [69159] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5049), 1, - anon_sym_PLUS, - STATE(2204), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(4654), 1, + anon_sym_PIPE, + ACTIONS(4656), 1, + anon_sym_COLON, + ACTIONS(4660), 1, + anon_sym_DOT_DOT, + ACTIONS(4747), 1, + anon_sym_COLON_COLON, + ACTIONS(4662), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(3518), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70230] = 7, + [69191] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(5051), 1, - anon_sym_SEMI, - STATE(1104), 1, - sym_declaration_list, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2008), 1, + sym_type_arguments, + STATE(2441), 1, + sym_parameters, STATE(2229), 2, 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, - [70258] = 11, + ACTIONS(3522), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [69221] = 10, 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, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4853), 1, + sym_identifier, + ACTIONS(4857), 1, anon_sym_DOT_DOT, - ACTIONS(4701), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, - ACTIONS(4604), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4861), 1, + sym_integer_literal, + STATE(1115), 1, + sym_attribute_item, + STATE(2554), 1, + aux_sym_enum_variant_list_repeat1, STATE(2230), 2, sym_line_comment, sym_block_comment, - [70294] = 12, + STATE(3188), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [69255] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5043), 1, - anon_sym_LBRACE, - ACTIONS(5053), 1, - anon_sym_SEMI, - STATE(675), 1, - sym_field_declaration_list, - STATE(2313), 1, - sym_type_parameters, - STATE(3033), 1, - sym_ordered_field_declaration_list, - STATE(3248), 1, - sym_where_clause, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5070), 1, + anon_sym_COLON_COLON, + STATE(2003), 1, + sym_type_arguments, STATE(2231), 2, sym_line_comment, sym_block_comment, - [70332] = 9, + ACTIONS(3562), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69283] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(5055), 1, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(5072), 1, anon_sym_for, - STATE(1993), 1, + STATE(2008), 1, sym_type_arguments, - STATE(2006), 1, + STATE(2071), 1, sym_parameters, STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(3518), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70364] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [69315] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(5057), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2247), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, - sym_enum_variant, - STATE(3484), 1, - sym_visibility_modifier, + ACTIONS(3498), 1, + anon_sym_DOT_DOT, STATE(2233), 2, sym_line_comment, sym_block_comment, - [70402] = 9, + ACTIONS(3500), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [69339] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4602), 1, - anon_sym_DOT_DOT, - ACTIONS(4697), 1, - anon_sym_COLON_COLON, - ACTIONS(5021), 1, - anon_sym_RBRACK, - ACTIONS(3425), 2, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5074), 1, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4596), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4604), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(773), 1, + sym_field_declaration_list, + STATE(2347), 1, + sym_type_parameters, + STATE(2930), 1, + sym_ordered_field_declaration_list, + STATE(3254), 1, + sym_where_clause, STATE(2234), 2, sym_line_comment, sym_block_comment, - [70434] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [69377] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(5059), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2247), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, - sym_enum_variant, - STATE(3484), 1, - sym_visibility_modifier, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2008), 1, + sym_type_arguments, + STATE(2441), 1, + sym_parameters, STATE(2235), 2, sym_line_comment, sym_block_comment, - [70472] = 5, + ACTIONS(3532), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [69407] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5063), 1, - anon_sym_PLUS, - STATE(2236), 3, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(5078), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(2071), 1, + sym_parameters, + STATE(2236), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(5061), 7, + ACTIONS(3518), 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, - [70496] = 9, + [69439] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4578), 1, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, anon_sym_LPAREN, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5066), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + STATE(2008), 1, + sym_type_arguments, + STATE(2441), 1, + sym_parameters, STATE(2237), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 3, - anon_sym_RBRACK, - anon_sym_PIPE, + ACTIONS(3526), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - [70528] = 9, + anon_sym_as, + [69469] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5068), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4921), 1, + sym_identifier, + ACTIONS(4927), 1, + sym_crate, + ACTIONS(5080), 1, + anon_sym_RBRACE, + STATE(1115), 1, + sym_attribute_item, + STATE(2299), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3392), 1, + sym_enum_variant, + STATE(3551), 1, + sym_visibility_modifier, STATE(2238), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70560] = 12, + [69507] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, + ACTIONS(4793), 1, anon_sym_LPAREN, - ACTIONS(4985), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5070), 1, - anon_sym_SEMI, - STATE(1124), 1, - sym_field_declaration_list, - STATE(2312), 1, - sym_type_parameters, - STATE(3127), 1, - sym_ordered_field_declaration_list, - STATE(3418), 1, - sym_where_clause, + ACTIONS(4797), 1, + anon_sym_BANG, + ACTIONS(4801), 1, + anon_sym_DOT_DOT, + ACTIONS(5082), 1, + anon_sym_COLON_COLON, + ACTIONS(4803), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2239), 2, sym_line_comment, sym_block_comment, - [70598] = 9, + ACTIONS(4626), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [69539] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5072), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, + ACTIONS(5086), 1, + anon_sym_PLUS, + STATE(2248), 1, + aux_sym_trait_bounds_repeat1, STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(5084), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_where, - [70630] = 9, + [69565] = 12, + ACTIONS(69), 1, + anon_sym_pub, 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(5074), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4921), 1, + sym_identifier, + ACTIONS(4927), 1, + sym_crate, + ACTIONS(5088), 1, + anon_sym_RBRACE, + STATE(1115), 1, + sym_attribute_item, + STATE(2299), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3392), 1, + sym_enum_variant, + STATE(3551), 1, + sym_visibility_modifier, STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70662] = 9, + [69603] = 6, 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(5076), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2006), 1, - sym_parameters, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5090), 1, + anon_sym_PLUS, + STATE(2248), 1, + aux_sym_trait_bounds_repeat1, STATE(2242), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(5084), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_where, - [70694] = 5, + [69629] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3413), 1, - anon_sym_DOT_DOT, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4921), 1, + sym_identifier, + ACTIONS(4927), 1, + sym_crate, + ACTIONS(5092), 1, + anon_sym_RBRACE, + STATE(1115), 1, + sym_attribute_item, + STATE(2299), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3392), 1, + sym_enum_variant, + STATE(3551), 1, + sym_visibility_modifier, STATE(2243), 2, sym_line_comment, sym_block_comment, - ACTIONS(3415), 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, - [70718] = 11, + [69667] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5078), 1, - anon_sym_SEMI, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - STATE(687), 1, - sym_block, - STATE(2531), 1, - sym_where_clause, - STATE(3713), 1, - sym_label, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4927), 1, + sym_crate, + ACTIONS(4931), 1, + sym_identifier, + ACTIONS(5094), 1, + anon_sym_RBRACE, + STATE(1115), 1, + sym_attribute_item, + STATE(2297), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3397), 1, + sym_field_declaration, + STATE(3627), 1, + sym_visibility_modifier, STATE(2244), 2, sym_line_comment, sym_block_comment, - [70753] = 11, + [69705] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5084), 1, - anon_sym_SEMI, - ACTIONS(5086), 1, - anon_sym_DASH_GT, - STATE(766), 1, - sym_block, - STATE(2493), 1, - sym_where_clause, - STATE(3713), 1, - sym_label, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4927), 1, + sym_crate, + ACTIONS(4931), 1, + sym_identifier, + ACTIONS(5096), 1, + anon_sym_RBRACE, + STATE(1115), 1, + sym_attribute_item, + STATE(2297), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3397), 1, + sym_field_declaration, + STATE(3627), 1, + sym_visibility_modifier, STATE(2245), 2, sym_line_comment, sym_block_comment, - [70788] = 11, + [69743] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5088), 1, + ACTIONS(5098), 1, anon_sym_SEMI, - ACTIONS(5090), 1, - anon_sym_DASH_GT, - STATE(643), 1, - sym_block, - STATE(2465), 1, - sym_where_clause, - STATE(3713), 1, - sym_label, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(1121), 1, + sym_declaration_list, STATE(2246), 2, sym_line_comment, sym_block_comment, - [70823] = 11, + ACTIONS(3562), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69771] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, + ACTIONS(3058), 1, anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, + ACTIONS(4927), 1, sym_crate, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, + ACTIONS(4931), 1, + sym_identifier, + ACTIONS(5102), 1, + anon_sym_RBRACE, + STATE(1115), 1, sym_attribute_item, - STATE(3354), 1, - sym_enum_variant, - STATE(3484), 1, + STATE(2297), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3397), 1, + sym_field_declaration, + STATE(3627), 1, sym_visibility_modifier, STATE(2247), 2, sym_line_comment, sym_block_comment, - [70858] = 11, + [69809] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5092), 1, - anon_sym_SEMI, - ACTIONS(5094), 1, - anon_sym_DASH_GT, - STATE(731), 1, - sym_block, - STATE(2562), 1, - sym_where_clause, - STATE(3713), 1, - sym_label, + ACTIONS(5086), 1, + anon_sym_PLUS, + STATE(2222), 1, + aux_sym_trait_bounds_repeat1, STATE(2248), 2, sym_line_comment, sym_block_comment, - [70893] = 11, + ACTIONS(5104), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [69835] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5096), 1, - anon_sym_SEMI, - ACTIONS(5098), 1, - anon_sym_DASH_GT, - STATE(547), 1, - sym_block, - STATE(2545), 1, - sym_where_clause, - STATE(3713), 1, - sym_label, + ACTIONS(4628), 1, + anon_sym_LPAREN, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5106), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2249), 2, sym_line_comment, sym_block_comment, - [70928] = 10, + ACTIONS(4626), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [69867] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5102), 1, - anon_sym_RBRACE, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5106), 1, - anon_sym_COMMA, ACTIONS(5108), 1, - anon_sym_ref, + anon_sym_SEMI, ACTIONS(5110), 1, - sym_mutable_specifier, + anon_sym_LBRACE, + STATE(667), 1, + sym_declaration_list, STATE(2250), 2, sym_line_comment, sym_block_comment, - STATE(2838), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70961] = 11, + ACTIONS(3562), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69895] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, ACTIONS(5112), 1, - anon_sym_SEMI, - STATE(578), 1, - sym_block, - STATE(2523), 1, - sym_where_clause, - STATE(3713), 1, - sym_label, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(2071), 1, + sym_parameters, STATE(2251), 2, sym_line_comment, sym_block_comment, - [70996] = 8, + ACTIONS(3518), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [69927] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4921), 1, + sym_identifier, + ACTIONS(4927), 1, + sym_crate, ACTIONS(5114), 1, - anon_sym_fn, - ACTIONS(5116), 1, - anon_sym_extern, - STATE(2278), 1, - aux_sym_function_modifiers_repeat1, - STATE(2447), 1, - sym_extern_modifier, + anon_sym_RBRACE, + STATE(1115), 1, + sym_attribute_item, + STATE(2299), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3392), 1, + sym_enum_variant, + STATE(3551), 1, + sym_visibility_modifier, STATE(2252), 2, sym_line_comment, sym_block_comment, - ACTIONS(4608), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [71025] = 10, + [69965] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5118), 1, - anon_sym_RBRACE, - ACTIONS(5120), 1, - anon_sym_COMMA, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(5116), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(2071), 1, + sym_parameters, STATE(2253), 2, sym_line_comment, sym_block_comment, - STATE(2864), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71058] = 11, + ACTIONS(3518), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [69997] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5122), 1, - anon_sym_SEMI, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(1235), 1, - sym_block, - STATE(2467), 1, - sym_where_clause, - STATE(3716), 1, - sym_label, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(5118), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(2071), 1, + sym_parameters, STATE(2254), 2, sym_line_comment, sym_block_comment, - [71093] = 11, + ACTIONS(3518), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70029] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5080), 1, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5126), 1, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5120), 1, anon_sym_SEMI, - STATE(590), 1, - sym_block, - STATE(2548), 1, + STATE(1141), 1, + sym_field_declaration_list, + STATE(2372), 1, + sym_type_parameters, + STATE(3085), 1, + sym_ordered_field_declaration_list, + STATE(3338), 1, sym_where_clause, - STATE(3713), 1, - sym_label, STATE(2255), 2, sym_line_comment, sym_block_comment, - [71128] = 11, + [70067] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5130), 1, - anon_sym_LT, - STATE(1163), 1, - sym_declaration_list, - STATE(2385), 1, - sym_type_parameters, - STATE(2757), 1, - sym_trait_bounds, - STATE(3301), 1, - sym_where_clause, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(2071), 1, + sym_parameters, STATE(2256), 2, sym_line_comment, sym_block_comment, - [71163] = 11, + ACTIONS(3518), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70099] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5124), 1, + ACTIONS(5076), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(5124), 1, anon_sym_SEMI, - ACTIONS(5134), 1, - anon_sym_DASH_GT, - STATE(1265), 1, - sym_block, - STATE(2471), 1, + STATE(643), 1, + sym_field_declaration_list, + STATE(2333), 1, + sym_type_parameters, + STATE(2905), 1, + sym_ordered_field_declaration_list, + STATE(3168), 1, sym_where_clause, - STATE(3716), 1, - sym_label, STATE(2257), 2, sym_line_comment, sym_block_comment, - [71198] = 11, + [70137] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5136), 1, - anon_sym_SEMI, - STATE(601), 1, - sym_block, - STATE(2476), 1, - sym_where_clause, - STATE(3713), 1, - sym_label, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4921), 1, + sym_identifier, + ACTIONS(4927), 1, + sym_crate, + ACTIONS(5126), 1, + anon_sym_RBRACE, + STATE(1115), 1, + sym_attribute_item, + STATE(2299), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3392), 1, + sym_enum_variant, + STATE(3551), 1, + sym_visibility_modifier, STATE(2258), 2, sym_line_comment, sym_block_comment, - [71233] = 4, + [70175] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5128), 1, + anon_sym_SEMI, + STATE(585), 1, + sym_declaration_list, STATE(2259), 2, sym_line_comment, sym_block_comment, - ACTIONS(5138), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3562), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71254] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [70203] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(3397), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, + ACTIONS(3514), 1, + anon_sym_DOT_DOT, STATE(2260), 2, sym_line_comment, sym_block_comment, - [71289] = 11, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3516), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [70227] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(2874), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5130), 1, + anon_sym_SEMI, + STATE(1148), 1, + sym_declaration_list, STATE(2261), 2, sym_line_comment, sym_block_comment, - [71324] = 11, + ACTIONS(3562), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70255] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5140), 1, - anon_sym_SEMI, - ACTIONS(5142), 1, - anon_sym_DASH_GT, - STATE(1279), 1, - sym_block, - STATE(2472), 1, - sym_where_clause, - STATE(3716), 1, - sym_label, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(5132), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(2071), 1, + sym_parameters, STATE(2262), 2, sym_line_comment, sym_block_comment, - [71359] = 11, + ACTIONS(3518), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70287] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5144), 1, + ACTIONS(5134), 1, anon_sym_SEMI, - STATE(537), 1, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5138), 1, + anon_sym_DASH_GT, + STATE(496), 1, sym_block, - STATE(2564), 1, + STATE(2532), 1, sym_where_clause, - STATE(3713), 1, + STATE(3736), 1, sym_label, STATE(2263), 2, sym_line_comment, sym_block_comment, - [71394] = 4, + [70322] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2264), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5061), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3230), 1, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3420), 1, anon_sym_SQUOTE, + ACTIONS(5041), 1, anon_sym_where, - [71415] = 4, + ACTIONS(5140), 1, + anon_sym_SEMI, + ACTIONS(5142), 1, + anon_sym_LBRACE, + STATE(1379), 1, + sym_block, + STATE(2538), 1, + sym_where_clause, + STATE(3739), 1, + sym_label, + STATE(2264), 2, + sym_line_comment, + sym_block_comment, + [70357] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2265), 2, + ACTIONS(5147), 1, + anon_sym_fn, + ACTIONS(5149), 1, + anon_sym_extern, + STATE(2459), 1, + sym_extern_modifier, + STATE(2265), 3, sym_line_comment, sym_block_comment, - ACTIONS(5061), 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, - [71436] = 10, + aux_sym_function_modifiers_repeat1, + ACTIONS(5144), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [70384] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5146), 1, - anon_sym_RBRACE, - ACTIONS(5148), 1, - anon_sym_COMMA, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4927), 1, + sym_crate, + ACTIONS(4931), 1, + sym_identifier, + STATE(1079), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1115), 1, + sym_attribute_item, + STATE(2966), 1, + sym_field_declaration, + STATE(3627), 1, + sym_visibility_modifier, STATE(2266), 2, sym_line_comment, sym_block_comment, - STATE(2958), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71469] = 11, + [70419] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5128), 1, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5152), 1, anon_sym_COLON, - ACTIONS(5130), 1, + ACTIONS(5154), 1, anon_sym_LT, - ACTIONS(5150), 1, - anon_sym_SEMI, - ACTIONS(5152), 1, - anon_sym_EQ, - STATE(2359), 1, + STATE(739), 1, + sym_declaration_list, + STATE(2467), 1, sym_type_parameters, - STATE(3049), 1, + STATE(2643), 1, sym_trait_bounds, - STATE(3265), 1, + STATE(3407), 1, sym_where_clause, STATE(2267), 2, sym_line_comment, sym_block_comment, - [71504] = 11, + [70454] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5130), 1, - anon_sym_LT, - ACTIONS(5154), 1, - anon_sym_SEMI, - ACTIONS(5156), 1, - anon_sym_EQ, - STATE(2420), 1, - sym_type_parameters, - STATE(2991), 1, - sym_trait_bounds, - STATE(3293), 1, - sym_where_clause, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4921), 1, + sym_identifier, + ACTIONS(4927), 1, + sym_crate, + STATE(1079), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1115), 1, + sym_attribute_item, + STATE(2913), 1, + sym_enum_variant, + STATE(3551), 1, + sym_visibility_modifier, STATE(2268), 2, sym_line_comment, sym_block_comment, - [71539] = 11, + [70489] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5124), 1, + ACTIONS(5136), 1, anon_sym_LBRACE, - ACTIONS(5158), 1, + ACTIONS(5156), 1, anon_sym_SEMI, - STATE(1287), 1, + STATE(542), 1, sym_block, - STATE(2475), 1, + STATE(2494), 1, sym_where_clause, - STATE(3716), 1, + STATE(3736), 1, sym_label, STATE(2269), 2, sym_line_comment, sym_block_comment, - [71574] = 4, + [70524] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -173407,421 +174617,393 @@ static const uint16_t ts_small_parse_table[] = { STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(5061), 8, + ACTIONS(5158), 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, - [71595] = 11, - ACTIONS(69), 1, - anon_sym_pub, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70545] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, - sym_crate, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(3100), 1, - sym_enum_variant, - STATE(3484), 1, - sym_visibility_modifier, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5160), 1, + anon_sym_SEMI, + STATE(1391), 1, + sym_block, + STATE(2539), 1, + sym_where_clause, + STATE(3739), 1, + sym_label, STATE(2271), 2, sym_line_comment, sym_block_comment, - [71630] = 11, + [70580] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5160), 1, - anon_sym_SEMI, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5154), 1, + anon_sym_LT, ACTIONS(5162), 1, - anon_sym_DASH_GT, - STATE(1184), 1, - sym_block, - STATE(2556), 1, + anon_sym_SEMI, + ACTIONS(5164), 1, + anon_sym_EQ, + STATE(2458), 1, + sym_type_parameters, + STATE(2953), 1, + sym_trait_bounds, + STATE(3299), 1, sym_where_clause, - STATE(3716), 1, - sym_label, STATE(2272), 2, sym_line_comment, sym_block_comment, - [71665] = 10, + [70615] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(4576), 1, - anon_sym_PIPE, - ACTIONS(4578), 1, - anon_sym_LPAREN, - ACTIONS(4582), 1, - anon_sym_COLON, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5164), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4927), 1, + sym_crate, + ACTIONS(4931), 1, + sym_identifier, + STATE(1079), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1115), 1, + sym_attribute_item, + STATE(2920), 1, + sym_field_declaration, + STATE(3627), 1, + sym_visibility_modifier, STATE(2273), 2, sym_line_comment, sym_block_comment, - [71698] = 6, + [70650] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4646), 1, - anon_sym_trait, - ACTIONS(5166), 1, - anon_sym_impl, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4921), 1, + sym_identifier, + ACTIONS(4927), 1, + sym_crate, + STATE(1115), 1, + sym_attribute_item, + STATE(2299), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3392), 1, + sym_enum_variant, + STATE(3551), 1, + sym_visibility_modifier, STATE(2274), 2, 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, - [71723] = 11, + [70685] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5136), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5130), 1, - anon_sym_LT, - STATE(676), 1, - sym_declaration_list, - STATE(2444), 1, - sym_type_parameters, - STATE(2623), 1, - sym_trait_bounds, - STATE(3257), 1, + ACTIONS(5166), 1, + anon_sym_SEMI, + ACTIONS(5168), 1, + anon_sym_DASH_GT, + STATE(704), 1, + sym_block, + STATE(2582), 1, sym_where_clause, + STATE(3736), 1, + sym_label, STATE(2275), 2, sym_line_comment, sym_block_comment, - [71758] = 10, + [70720] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5168), 1, - anon_sym_RBRACE, - ACTIONS(5170), 1, - anon_sym_COMMA, STATE(2276), 2, sym_line_comment, sym_block_comment, - STATE(2837), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71791] = 11, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(5047), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70741] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, - sym_crate, - STATE(1494), 1, - sym_attribute_item, - STATE(2247), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3240), 1, - sym_enum_variant, - STATE(3484), 1, - sym_visibility_modifier, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5170), 1, + anon_sym_SEMI, + STATE(1402), 1, + sym_block, + STATE(2540), 1, + sym_where_clause, + STATE(3739), 1, + sym_label, STATE(2277), 2, sym_line_comment, sym_block_comment, - [71826] = 7, + [70776] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, + ACTIONS(5172), 1, anon_sym_fn, - ACTIONS(5177), 1, + ACTIONS(5174), 1, anon_sym_extern, - STATE(2447), 1, + STATE(2265), 1, + aux_sym_function_modifiers_repeat1, + STATE(2459), 1, sym_extern_modifier, - STATE(2278), 3, + STATE(2278), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5172), 4, + ACTIONS(4666), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [71853] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [70805] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4871), 1, - sym_identifier, - ACTIONS(4877), 1, - sym_crate, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(2895), 1, - sym_enum_variant, - STATE(3484), 1, - sym_visibility_modifier, + ACTIONS(4706), 1, + anon_sym_trait, + ACTIONS(5176), 1, + anon_sym_impl, STATE(2279), 2, sym_line_comment, sym_block_comment, - [71888] = 11, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3562), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70830] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(2910), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5178), 1, + anon_sym_SEMI, + ACTIONS(5180), 1, + anon_sym_DASH_GT, + STATE(657), 1, + sym_block, + STATE(2518), 1, + sym_where_clause, + STATE(3736), 1, + sym_label, STATE(2280), 2, sym_line_comment, sym_block_comment, - [71923] = 11, + [70865] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5136), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5130), 1, - anon_sym_LT, - STATE(666), 1, - sym_declaration_list, - STATE(2367), 1, - sym_type_parameters, - STATE(2710), 1, - sym_trait_bounds, - STATE(3154), 1, + ACTIONS(5182), 1, + anon_sym_SEMI, + STATE(553), 1, + sym_block, + STATE(2503), 1, sym_where_clause, + STATE(3736), 1, + sym_label, STATE(2281), 2, sym_line_comment, sym_block_comment, - [71958] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [70900] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_crate, - ACTIONS(4897), 1, - sym_identifier, - STATE(1494), 1, - sym_attribute_item, - STATE(2260), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3172), 1, - sym_field_declaration, - STATE(3658), 1, - sym_visibility_modifier, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5184), 1, + anon_sym_SEMI, + STATE(605), 1, + sym_block, + STATE(2477), 1, + sym_where_clause, + STATE(3736), 1, + sym_label, STATE(2282), 2, sym_line_comment, sym_block_comment, - [71993] = 11, + [70935] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5124), 1, + ACTIONS(5136), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, + ACTIONS(5186), 1, anon_sym_SEMI, - STATE(1322), 1, + ACTIONS(5188), 1, + anon_sym_DASH_GT, + STATE(683), 1, sym_block, - STATE(2477), 1, + STATE(2528), 1, sym_where_clause, - STATE(3716), 1, + STATE(3736), 1, sym_label, STATE(2283), 2, sym_line_comment, sym_block_comment, - [72028] = 11, + [70970] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5124), 1, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(5182), 1, + ACTIONS(5190), 1, anon_sym_SEMI, - ACTIONS(5184), 1, - anon_sym_DASH_GT, - STATE(1332), 1, + STATE(1252), 1, sym_block, - STATE(2478), 1, + STATE(2584), 1, sym_where_clause, - STATE(3716), 1, + STATE(3739), 1, sym_label, STATE(2284), 2, sym_line_comment, sym_block_comment, - [72063] = 11, + [71005] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5080), 1, + ACTIONS(5136), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5192), 1, anon_sym_SEMI, - ACTIONS(5188), 1, - anon_sym_DASH_GT, - STATE(742), 1, + STATE(529), 1, sym_block, - STATE(2560), 1, + STATE(2489), 1, sym_where_clause, - STATE(3713), 1, + STATE(3736), 1, sym_label, STATE(2285), 2, sym_line_comment, sym_block_comment, - [72098] = 11, + [71040] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5136), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5130), 1, - anon_sym_LT, - STATE(652), 1, - sym_declaration_list, - STATE(2406), 1, - sym_type_parameters, - STATE(2811), 1, - sym_trait_bounds, - STATE(3188), 1, + ACTIONS(5194), 1, + anon_sym_SEMI, + ACTIONS(5196), 1, + anon_sym_DASH_GT, + STATE(572), 1, + sym_block, + STATE(2569), 1, sym_where_clause, + STATE(3736), 1, + sym_label, STATE(2286), 2, sym_line_comment, sym_block_comment, - [72133] = 11, + [71075] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5130), 1, - anon_sym_LT, - STATE(1125), 1, - sym_declaration_list, - STATE(2417), 1, - sym_type_parameters, - STATE(2677), 1, - sym_trait_bounds, - STATE(3419), 1, - sym_where_clause, STATE(2287), 2, sym_line_comment, sym_block_comment, - [72168] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2288), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5061), 8, + ACTIONS(5047), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -173830,3817 +175012,3921 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [72189] = 11, + [71096] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_SEMI, - ACTIONS(5192), 1, - anon_sym_DASH_GT, - STATE(1216), 1, - sym_block, - STATE(2461), 1, - sym_where_clause, - STATE(3716), 1, - sym_label, + ACTIONS(1259), 1, + aux_sym_string_literal_token1, + STATE(2270), 1, + sym_string_literal, + STATE(2288), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4891), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71121] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5198), 1, + sym_identifier, + ACTIONS(5200), 1, + anon_sym_RBRACE, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + ACTIONS(5204), 1, + anon_sym_COMMA, + ACTIONS(5206), 1, + anon_sym_ref, + ACTIONS(5208), 1, + sym_mutable_specifier, STATE(2289), 2, sym_line_comment, sym_block_comment, - [72224] = 11, + STATE(2982), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71154] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5080), 1, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(5194), 1, + ACTIONS(5210), 1, anon_sym_SEMI, - ACTIONS(5196), 1, + ACTIONS(5212), 1, anon_sym_DASH_GT, - STATE(519), 1, + STATE(1201), 1, sym_block, - STATE(2546), 1, + STATE(2527), 1, sym_where_clause, - STATE(3713), 1, + STATE(3739), 1, sym_label, STATE(2290), 2, sym_line_comment, sym_block_comment, - [72259] = 4, + [71189] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5198), 1, + sym_identifier, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + ACTIONS(5206), 1, + anon_sym_ref, + ACTIONS(5208), 1, + sym_mutable_specifier, + ACTIONS(5214), 1, + anon_sym_RBRACE, + ACTIONS(5216), 1, + anon_sym_COMMA, STATE(2291), 2, sym_line_comment, sym_block_comment, - ACTIONS(5061), 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, - [72280] = 11, + STATE(2851), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71222] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5128), 1, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5152), 1, anon_sym_COLON, - ACTIONS(5130), 1, + ACTIONS(5154), 1, anon_sym_LT, - STATE(1225), 1, + STATE(581), 1, sym_declaration_list, - STATE(2448), 1, + STATE(2438), 1, sym_type_parameters, - STATE(2747), 1, + STATE(2723), 1, sym_trait_bounds, - STATE(3238), 1, + STATE(3192), 1, sym_where_clause, STATE(2292), 2, sym_line_comment, sym_block_comment, - [72315] = 11, + [71257] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5124), 1, - anon_sym_LBRACE, ACTIONS(5198), 1, - anon_sym_SEMI, - STATE(1362), 1, - sym_block, - STATE(2479), 1, - sym_where_clause, - STATE(3716), 1, - sym_label, + sym_identifier, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + ACTIONS(5206), 1, + anon_sym_ref, + ACTIONS(5208), 1, + sym_mutable_specifier, + ACTIONS(5218), 1, + anon_sym_RBRACE, + ACTIONS(5220), 1, + anon_sym_COMMA, STATE(2293), 2, sym_line_comment, sym_block_comment, - [72350] = 11, + STATE(2853), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71290] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5124), 1, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(5200), 1, + ACTIONS(5222), 1, anon_sym_SEMI, - STATE(1374), 1, + ACTIONS(5224), 1, + anon_sym_DASH_GT, + STATE(1282), 1, sym_block, - STATE(2480), 1, + STATE(2533), 1, sym_where_clause, - STATE(3716), 1, + STATE(3739), 1, sym_label, STATE(2294), 2, sym_line_comment, - sym_block_comment, - [72385] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1289), 1, - aux_sym_string_literal_token1, - STATE(2259), 1, - sym_string_literal, - STATE(2295), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4773), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72410] = 11, + sym_block_comment, + [71325] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5124), 1, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(5202), 1, + ACTIONS(5226), 1, anon_sym_SEMI, - ACTIONS(5204), 1, - anon_sym_DASH_GT, - STATE(1143), 1, + STATE(1339), 1, sym_block, - STATE(2532), 1, + STATE(2536), 1, sym_where_clause, - STATE(3716), 1, + STATE(3739), 1, sym_label, - STATE(2296), 2, + STATE(2295), 2, sym_line_comment, sym_block_comment, - [72445] = 11, + [71360] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5124), 1, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(5206), 1, + ACTIONS(5228), 1, anon_sym_SEMI, - STATE(1385), 1, + ACTIONS(5230), 1, + anon_sym_DASH_GT, + STATE(1296), 1, sym_block, - STATE(2481), 1, + STATE(2534), 1, sym_where_clause, - STATE(3716), 1, + STATE(3739), 1, sym_label, + STATE(2296), 2, + sym_line_comment, + sym_block_comment, + [71395] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4927), 1, + sym_crate, + ACTIONS(4931), 1, + sym_identifier, + STATE(1079), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1115), 1, + sym_attribute_item, + STATE(3372), 1, + sym_field_declaration, + STATE(3627), 1, + sym_visibility_modifier, STATE(2297), 2, sym_line_comment, sym_block_comment, - [72480] = 6, + [71430] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_COLON_COLON, - ACTIONS(4961), 1, - anon_sym_BANG, + ACTIONS(5198), 1, + sym_identifier, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + ACTIONS(5206), 1, + anon_sym_ref, + ACTIONS(5208), 1, + sym_mutable_specifier, + ACTIONS(5232), 1, + anon_sym_RBRACE, + ACTIONS(5234), 1, + anon_sym_COMMA, STATE(2298), 2, 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, - [72505] = 11, + STATE(2897), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71463] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5208), 1, - anon_sym_SEMI, - STATE(499), 1, - sym_block, - STATE(2536), 1, - sym_where_clause, - STATE(3713), 1, - sym_label, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4921), 1, + sym_identifier, + ACTIONS(4927), 1, + sym_crate, + STATE(1079), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1115), 1, + sym_attribute_item, + STATE(3206), 1, + sym_enum_variant, + STATE(3551), 1, + sym_visibility_modifier, STATE(2299), 2, sym_line_comment, sym_block_comment, - [72540] = 7, + [71498] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5210), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5236), 1, + anon_sym_SEMI, + ACTIONS(5238), 1, + anon_sym_DASH_GT, + STATE(1349), 1, + sym_block, + STATE(2537), 1, + sym_where_clause, + STATE(3739), 1, + sym_label, STATE(2300), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [72566] = 10, + [71533] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5043), 1, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(5212), 1, + ACTIONS(5240), 1, anon_sym_SEMI, - STATE(649), 1, - sym_field_declaration_list, - STATE(2961), 1, - sym_ordered_field_declaration_list, - STATE(3137), 1, + ACTIONS(5242), 1, + anon_sym_DASH_GT, + STATE(1233), 1, + sym_block, + STATE(2531), 1, sym_where_clause, + STATE(3739), 1, + sym_label, STATE(2301), 2, sym_line_comment, sym_block_comment, - [72598] = 9, + [71568] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5214), 1, - anon_sym_RBRACE, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5244), 1, + anon_sym_SEMI, + STATE(703), 1, + sym_block, + STATE(2550), 1, + sym_where_clause, + STATE(3736), 1, + sym_label, STATE(2302), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72628] = 10, + [71603] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_RPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3195), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, + ACTIONS(5246), 1, + anon_sym_SEMI, + ACTIONS(5248), 1, + anon_sym_DASH_GT, + STATE(593), 1, + sym_block, + STATE(2568), 1, + sym_where_clause, + STATE(3736), 1, + sym_label, STATE(2303), 2, sym_line_comment, sym_block_comment, - [72660] = 10, + [71638] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5218), 1, - anon_sym_RBRACK, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, anon_sym_LBRACE, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3198), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5154), 1, + anon_sym_LT, + STATE(1242), 1, + sym_declaration_list, + STATE(2423), 1, + sym_type_parameters, + STATE(2676), 1, + sym_trait_bounds, + STATE(3236), 1, + sym_where_clause, STATE(2304), 2, sym_line_comment, sym_block_comment, - [72692] = 10, + [71673] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(5224), 1, - anon_sym_RBRACE, - STATE(2316), 1, - aux_sym_macro_definition_repeat1, - STATE(3155), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5154), 1, + anon_sym_LT, + STATE(1142), 1, + sym_declaration_list, + STATE(2442), 1, + sym_type_parameters, + STATE(2637), 1, + sym_trait_bounds, + STATE(3342), 1, + sym_where_clause, STATE(2305), 2, sym_line_comment, sym_block_comment, - [72724] = 10, + [71708] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5226), 1, - anon_sym_RBRACE, - STATE(2317), 1, - aux_sym_macro_definition_repeat1, - STATE(3185), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5154), 1, + anon_sym_LT, + ACTIONS(5250), 1, + anon_sym_SEMI, + ACTIONS(5252), 1, + anon_sym_EQ, + STATE(2443), 1, + sym_type_parameters, + STATE(3097), 1, + sym_trait_bounds, + STATE(3349), 1, + sym_where_clause, STATE(2306), 2, sym_line_comment, sym_block_comment, - [72756] = 10, + [71743] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5136), 1, anon_sym_LBRACE, - ACTIONS(5228), 1, - anon_sym_RBRACE, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3203), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, + ACTIONS(5254), 1, + anon_sym_SEMI, + STATE(772), 1, + sym_block, + STATE(2578), 1, + sym_where_clause, + STATE(3736), 1, + sym_label, STATE(2307), 2, sym_line_comment, sym_block_comment, - [72788] = 10, + [71778] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5230), 1, - anon_sym_RPAREN, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3224), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4927), 1, + sym_crate, + ACTIONS(4931), 1, + sym_identifier, + STATE(1115), 1, + sym_attribute_item, + STATE(2297), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3397), 1, + sym_field_declaration, + STATE(3627), 1, + sym_visibility_modifier, STATE(2308), 2, sym_line_comment, sym_block_comment, - [72820] = 7, + [71813] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4963), 1, + ACTIONS(4626), 1, + anon_sym_PIPE, + ACTIONS(4628), 1, + anon_sym_LPAREN, + ACTIONS(4632), 1, + anon_sym_COLON, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(4638), 1, anon_sym_DOT_DOT, - ACTIONS(4967), 1, + ACTIONS(5256), 1, anon_sym_COLON_COLON, - ACTIONS(4965), 2, + ACTIONS(4640), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2309), 2, sym_line_comment, sym_block_comment, - ACTIONS(4596), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [72846] = 10, + [71846] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5230), 1, - anon_sym_RBRACK, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3225), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5154), 1, + anon_sym_LT, + STATE(646), 1, + sym_declaration_list, + STATE(2475), 1, + sym_type_parameters, + STATE(2678), 1, + sym_trait_bounds, + STATE(3239), 1, + sym_where_clause, STATE(2310), 2, sym_line_comment, sym_block_comment, - [72878] = 10, + [71881] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5232), 1, - anon_sym_RBRACE, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3226), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, + ACTIONS(3058), 1, + anon_sym_POUND, + ACTIONS(4921), 1, + sym_identifier, + ACTIONS(4927), 1, + sym_crate, + STATE(1079), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1115), 1, + sym_attribute_item, + STATE(3111), 1, + sym_enum_variant, + STATE(3551), 1, + sym_visibility_modifier, STATE(2311), 2, sym_line_comment, sym_block_comment, - [72910] = 10, + [71916] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, - anon_sym_LPAREN, - ACTIONS(4985), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5234), 1, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5258), 1, anon_sym_SEMI, - STATE(1152), 1, - sym_field_declaration_list, - STATE(2859), 1, - sym_ordered_field_declaration_list, - STATE(3245), 1, + ACTIONS(5260), 1, + anon_sym_DASH_GT, + STATE(1160), 1, + sym_block, + STATE(2522), 1, sym_where_clause, + STATE(3739), 1, + sym_label, STATE(2312), 2, sym_line_comment, sym_block_comment, - [72942] = 10, + [71951] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, + STATE(2313), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5047), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_where, - ACTIONS(5043), 1, + [71972] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5262), 1, anon_sym_SEMI, - STATE(749), 1, - sym_field_declaration_list, - STATE(3055), 1, - sym_ordered_field_declaration_list, - STATE(3423), 1, + STATE(1304), 1, + sym_block, + STATE(2535), 1, sym_where_clause, - STATE(2313), 2, + STATE(3739), 1, + sym_label, + STATE(2314), 2, sym_line_comment, sym_block_comment, - [72974] = 9, + [72007] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5041), 1, + anon_sym_where, ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5238), 1, - anon_sym_RBRACE, - STATE(2314), 2, + anon_sym_LBRACE, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5154), 1, + anon_sym_LT, + STATE(1180), 1, + sym_declaration_list, + STATE(2424), 1, + sym_type_parameters, + STATE(2657), 1, + sym_trait_bounds, + STATE(3195), 1, + sym_where_clause, + STATE(2315), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73004] = 5, + [72042] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5240), 1, - sym_identifier, - STATE(2315), 2, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + ACTIONS(4991), 1, + anon_sym_BANG, + STATE(2316), 2, sym_line_comment, sym_block_comment, - ACTIONS(4859), 6, + ACTIONS(3562), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [73026] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5242), 1, - anon_sym_RBRACE, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3405), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, - STATE(2316), 2, - sym_line_comment, - sym_block_comment, - [73058] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5244), 1, - anon_sym_RBRACE, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3410), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, - STATE(2317), 2, - sym_line_comment, - sym_block_comment, - [73090] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5246), 1, - anon_sym_RBRACE, - STATE(2318), 2, - sym_line_comment, - sym_block_comment, - STATE(3262), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73120] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4983), 1, - anon_sym_LPAREN, - ACTIONS(4985), 1, - anon_sym_LBRACE, - ACTIONS(5250), 1, - anon_sym_EQ, - ACTIONS(5248), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2319), 2, - sym_line_comment, - sym_block_comment, - STATE(3096), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [73148] = 9, + [72067] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5202), 1, anon_sym_DOT_DOT, - ACTIONS(5108), 1, + ACTIONS(5206), 1, anon_sym_ref, - ACTIONS(5110), 1, + ACTIONS(5208), 1, sym_mutable_specifier, - ACTIONS(5252), 1, + ACTIONS(5264), 1, anon_sym_RBRACE, - STATE(2320), 2, + STATE(2317), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, + STATE(3244), 2, sym_field_pattern, sym_remaining_field_pattern, - [73178] = 9, + [72097] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5254), 1, + ACTIONS(5266), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LBRACK, + ACTIONS(5270), 1, + anon_sym_RBRACK, + ACTIONS(5272), 1, + anon_sym_LBRACE, + STATE(2356), 1, + aux_sym_macro_definition_repeat1, + STATE(3373), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, + STATE(2318), 2, + sym_line_comment, + sym_block_comment, + [72129] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5266), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LBRACK, + ACTIONS(5272), 1, + anon_sym_LBRACE, + ACTIONS(5274), 1, anon_sym_RBRACE, - STATE(2321), 2, + STATE(2373), 1, + aux_sym_macro_definition_repeat1, + STATE(3395), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, + STATE(2319), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73208] = 10, + [72161] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5266), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5268), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(5256), 1, + ACTIONS(5276), 1, anon_sym_RPAREN, STATE(2329), 1, aux_sym_macro_definition_repeat1, - STATE(3329), 1, + STATE(3425), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3564), 1, sym_token_tree_pattern, - STATE(2322), 2, + STATE(2320), 2, sym_line_comment, sym_block_comment, - [73240] = 10, + [72193] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5266), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5268), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(5256), 1, + ACTIONS(5276), 1, anon_sym_RBRACK, - STATE(2330), 1, + STATE(2337), 1, aux_sym_macro_definition_repeat1, - STATE(3331), 1, + STATE(3427), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3564), 1, sym_token_tree_pattern, - STATE(2323), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - [73272] = 10, + [72225] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5266), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5268), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(5258), 1, - anon_sym_RPAREN, - STATE(2331), 1, + ACTIONS(5278), 1, + anon_sym_RBRACE, + STATE(2326), 1, aux_sym_macro_definition_repeat1, - STATE(3332), 1, + STATE(3167), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3564), 1, sym_token_tree_pattern, - STATE(2324), 2, + STATE(2322), 2, sym_line_comment, sym_block_comment, - [73304] = 10, + [72257] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5266), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5268), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(5258), 1, - anon_sym_RBRACK, - STATE(2332), 1, + ACTIONS(5280), 1, + anon_sym_RBRACE, + STATE(2369), 1, aux_sym_macro_definition_repeat1, - STATE(3333), 1, + STATE(3431), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3564), 1, sym_token_tree_pattern, - STATE(2325), 2, + STATE(2323), 2, sym_line_comment, sym_block_comment, - [73336] = 5, + [72289] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5260), 1, - sym_identifier, - STATE(2326), 2, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5282), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2324), 2, sym_line_comment, sym_block_comment, - ACTIONS(4859), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73358] = 10, + ACTIONS(3518), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [72315] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, + ACTIONS(5035), 1, anon_sym_LPAREN, - ACTIONS(4985), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5262), 1, - anon_sym_SEMI, - STATE(1222), 1, + ACTIONS(5286), 1, + anon_sym_EQ, + ACTIONS(5284), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2325), 2, + sym_line_comment, + sym_block_comment, + STATE(3142), 2, sym_field_declaration_list, - STATE(2917), 1, sym_ordered_field_declaration_list, - STATE(3234), 1, - sym_where_clause, + [72343] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5266), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LBRACK, + ACTIONS(5272), 1, + anon_sym_LBRACE, + ACTIONS(5288), 1, + anon_sym_RBRACE, + STATE(2224), 1, + aux_sym_macro_definition_repeat1, + STATE(3232), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, + STATE(2326), 2, + sym_line_comment, + sym_block_comment, + [72375] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5290), 1, + aux_sym_line_comment_token1, + ACTIONS(5292), 1, + aux_sym_line_comment_token3, + ACTIONS(5294), 1, + anon_sym_BANG2, + ACTIONS(5296), 1, + anon_sym_SLASH2, + STATE(3524), 1, + sym__line_doc_comment_marker, + STATE(3539), 1, + sym__inner_line_doc_comment_marker, + STATE(3568), 1, + sym__outer_line_doc_comment_marker, STATE(2327), 2, sym_line_comment, sym_block_comment, - [73390] = 9, + [72407] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5202), 1, anon_sym_DOT_DOT, - ACTIONS(5108), 1, + ACTIONS(5206), 1, anon_sym_ref, - ACTIONS(5110), 1, + ACTIONS(5208), 1, sym_mutable_specifier, - ACTIONS(5264), 1, + ACTIONS(5298), 1, anon_sym_RBRACE, STATE(2328), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, + STATE(3244), 2, sym_field_pattern, sym_remaining_field_pattern, - [73420] = 10, + [72437] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5266), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5268), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(5266), 1, + ACTIONS(5300), 1, anon_sym_RPAREN, - STATE(2221), 1, + STATE(2224), 1, aux_sym_macro_definition_repeat1, - STATE(3348), 1, + STATE(3230), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3564), 1, sym_token_tree_pattern, STATE(2329), 2, sym_line_comment, sym_block_comment, - [73452] = 10, + [72469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5266), 1, - anon_sym_RBRACK, - STATE(2221), 1, - aux_sym_macro_definition_repeat1, - STATE(3349), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, + ACTIONS(5302), 1, + sym_identifier, STATE(2330), 2, sym_line_comment, sym_block_comment, - [73484] = 10, + ACTIONS(4843), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72491] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5266), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5268), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, + ACTIONS(5304), 1, anon_sym_RPAREN, - STATE(2221), 1, + STATE(2374), 1, aux_sym_macro_definition_repeat1, - STATE(3350), 1, + STATE(3330), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3564), 1, sym_token_tree_pattern, STATE(2331), 2, sym_line_comment, sym_block_comment, - [73516] = 10, + [72523] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5266), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5268), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, + ACTIONS(5304), 1, anon_sym_RBRACK, - STATE(2221), 1, + STATE(2346), 1, aux_sym_macro_definition_repeat1, - STATE(3351), 1, + STATE(3332), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3564), 1, sym_token_tree_pattern, STATE(2332), 2, sym_line_comment, sym_block_comment, - [73548] = 8, + [72555] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5272), 1, - anon_sym_COLON, - ACTIONS(5274), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5270), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5076), 1, + anon_sym_LBRACE, + ACTIONS(5306), 1, + anon_sym_SEMI, + STATE(728), 1, + sym_field_declaration_list, + STATE(2890), 1, + sym_ordered_field_declaration_list, + STATE(3393), 1, + sym_where_clause, STATE(2333), 2, sym_line_comment, sym_block_comment, - [73576] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5274), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2334), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3425), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [73602] = 8, + [72587] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5210), 1, - anon_sym_COLON_COLON, + ACTIONS(5266), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LBRACK, ACTIONS(5272), 1, - anon_sym_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5270), 2, + anon_sym_LBRACE, + ACTIONS(5308), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2335), 2, + STATE(2350), 1, + aux_sym_macro_definition_repeat1, + STATE(3334), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, + STATE(2334), 2, sym_line_comment, sym_block_comment, - [73630] = 10, + [72619] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, + ACTIONS(5266), 1, anon_sym_LPAREN, - ACTIONS(5278), 1, + ACTIONS(5268), 1, anon_sym_LBRACK, - ACTIONS(5280), 1, - anon_sym_RBRACK, - ACTIONS(5282), 1, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(5284), 1, - anon_sym_EQ, - STATE(3669), 1, - sym_delim_token_tree, - STATE(2336), 2, + ACTIONS(5308), 1, + anon_sym_RBRACK, + STATE(2352), 1, + aux_sym_macro_definition_repeat1, + STATE(3336), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, + STATE(2335), 2, sym_line_comment, sym_block_comment, - [73662] = 9, + [72651] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5198), 1, sym_identifier, - ACTIONS(5104), 1, + ACTIONS(5202), 1, anon_sym_DOT_DOT, - ACTIONS(5108), 1, + ACTIONS(5206), 1, anon_sym_ref, - ACTIONS(5110), 1, + ACTIONS(5208), 1, sym_mutable_specifier, - ACTIONS(5286), 1, + ACTIONS(5310), 1, anon_sym_RBRACE, - STATE(2337), 2, + STATE(2336), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, + STATE(3244), 2, sym_field_pattern, sym_remaining_field_pattern, - [73692] = 10, + [72681] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, + ACTIONS(5266), 1, anon_sym_LPAREN, - ACTIONS(5220), 1, + ACTIONS(5268), 1, anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(5288), 1, - anon_sym_RPAREN, - STATE(2303), 1, + ACTIONS(5300), 1, + anon_sym_RBRACK, + STATE(2224), 1, aux_sym_macro_definition_repeat1, - STATE(3216), 1, + STATE(3231), 1, sym_macro_rule, - STATE(3451), 1, + STATE(3564), 1, sym_token_tree_pattern, - STATE(2338), 2, + STATE(2337), 2, sym_line_comment, sym_block_comment, - [73724] = 10, + [72713] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, + ACTIONS(4274), 1, anon_sym_LBRACE, - ACTIONS(5288), 1, - anon_sym_RBRACK, - STATE(2304), 1, - aux_sym_macro_definition_repeat1, - STATE(3228), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5314), 1, + anon_sym_STAR, + STATE(2861), 1, + sym_use_list, + STATE(3605), 1, + sym_type_arguments, + ACTIONS(5312), 2, + sym_identifier, + sym_super, + STATE(2338), 2, + sym_line_comment, + sym_block_comment, + [72743] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5316), 1, + sym_identifier, STATE(2339), 2, sym_line_comment, sym_block_comment, - [73756] = 10, + ACTIONS(4843), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72765] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5290), 1, + ACTIONS(5198), 1, + sym_identifier, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + ACTIONS(5206), 1, + anon_sym_ref, + ACTIONS(5208), 1, + sym_mutable_specifier, + ACTIONS(5318), 1, anon_sym_RBRACE, - STATE(2307), 1, - aux_sym_macro_definition_repeat1, - STATE(3230), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, STATE(2340), 2, sym_line_comment, sym_block_comment, - [73788] = 10, + STATE(3244), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72795] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5292), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym_macro_definition_repeat1, - STATE(3233), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5320), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2341), 2, sym_line_comment, sym_block_comment, - [73820] = 10, + ACTIONS(3518), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [72821] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5292), 1, - anon_sym_RBRACK, - STATE(2310), 1, - aux_sym_macro_definition_repeat1, - STATE(3237), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, + ACTIONS(5322), 1, + sym_identifier, STATE(2342), 2, sym_line_comment, sym_block_comment, - [73852] = 10, + ACTIONS(4843), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72843] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - anon_sym_LPAREN, - ACTIONS(5220), 1, - anon_sym_LBRACK, - ACTIONS(5222), 1, - anon_sym_LBRACE, - ACTIONS(5294), 1, - anon_sym_RBRACE, - STATE(2311), 1, - aux_sym_macro_definition_repeat1, - STATE(3243), 1, - sym_macro_rule, - STATE(3451), 1, - sym_token_tree_pattern, + ACTIONS(4993), 1, + anon_sym_DOT_DOT, + ACTIONS(4997), 1, + anon_sym_COLON_COLON, + ACTIONS(4995), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2343), 2, sym_line_comment, sym_block_comment, - [73884] = 9, + ACTIONS(4654), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [72869] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5298), 1, - anon_sym_STAR, - STATE(2845), 1, - sym_use_list, - STATE(3554), 1, - sym_type_arguments, - ACTIONS(5296), 2, - sym_identifier, - sym_super, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(5328), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5324), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2344), 2, sym_line_comment, sym_block_comment, - [73914] = 9, + [72897] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, - anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, - ACTIONS(5300), 1, - anon_sym_RBRACE, + ACTIONS(5266), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LBRACK, + ACTIONS(5270), 1, + anon_sym_RPAREN, + ACTIONS(5272), 1, + anon_sym_LBRACE, + STATE(2359), 1, + aux_sym_macro_definition_repeat1, + STATE(3367), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, STATE(2345), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73944] = 8, + [72929] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, + ACTIONS(5266), 1, anon_sym_LPAREN, - ACTIONS(4985), 1, + ACTIONS(5268), 1, + anon_sym_LBRACK, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(5304), 1, - anon_sym_EQ, - ACTIONS(5302), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5330), 1, + anon_sym_RBRACK, + STATE(2224), 1, + aux_sym_macro_definition_repeat1, + STATE(3355), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, STATE(2346), 2, sym_line_comment, sym_block_comment, - STATE(3043), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [73972] = 5, + [72961] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_trait, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5076), 1, + anon_sym_LBRACE, + ACTIONS(5332), 1, + anon_sym_SEMI, + STATE(578), 1, + sym_field_declaration_list, + STATE(3081), 1, + sym_ordered_field_declaration_list, + STATE(3315), 1, + sym_where_clause, STATE(2347), 2, 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, - [73994] = 10, + [72993] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4781), 1, + ACTIONS(4839), 1, anon_sym_COLON_COLON, - ACTIONS(5276), 1, + ACTIONS(5334), 1, anon_sym_LPAREN, - ACTIONS(5278), 1, + ACTIONS(5336), 1, anon_sym_LBRACK, - ACTIONS(5282), 1, - anon_sym_LBRACE, - ACTIONS(5308), 1, + ACTIONS(5338), 1, anon_sym_RBRACK, - ACTIONS(5310), 1, + ACTIONS(5340), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, anon_sym_EQ, - STATE(3674), 1, + STATE(3466), 1, sym_delim_token_tree, STATE(2348), 2, sym_line_comment, sym_block_comment, - [74026] = 10, + [73025] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, - anon_sym_LPAREN, - ACTIONS(5278), 1, - anon_sym_LBRACK, - ACTIONS(5282), 1, - anon_sym_LBRACE, - ACTIONS(5308), 1, - anon_sym_RBRACK, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3674), 1, - sym_delim_token_tree, + ACTIONS(5198), 1, + sym_identifier, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + ACTIONS(5206), 1, + anon_sym_ref, + ACTIONS(5208), 1, + sym_mutable_specifier, + ACTIONS(5344), 1, + anon_sym_RBRACE, STATE(2349), 2, sym_line_comment, sym_block_comment, - [74058] = 10, + STATE(3244), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73055] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4785), 1, - anon_sym_COLON_COLON, - ACTIONS(5276), 1, + ACTIONS(5266), 1, anon_sym_LPAREN, - ACTIONS(5278), 1, + ACTIONS(5268), 1, anon_sym_LBRACK, - ACTIONS(5282), 1, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(5308), 1, - anon_sym_RBRACK, - ACTIONS(5310), 1, - anon_sym_EQ, - STATE(3674), 1, - sym_delim_token_tree, + ACTIONS(5346), 1, + anon_sym_RPAREN, + STATE(2224), 1, + aux_sym_macro_definition_repeat1, + STATE(3356), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, STATE(2350), 2, sym_line_comment, sym_block_comment, - [74090] = 7, + [73087] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5312), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5348), 1, + anon_sym_trait, STATE(2351), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [74116] = 9, + ACTIONS(3562), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73109] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, + ACTIONS(5266), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LBRACK, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5298), 1, - anon_sym_STAR, - STATE(2845), 1, - sym_use_list, - STATE(3659), 1, - sym_type_arguments, - ACTIONS(5296), 2, - sym_identifier, - sym_super, + ACTIONS(5346), 1, + anon_sym_RBRACK, + STATE(2224), 1, + aux_sym_macro_definition_repeat1, + STATE(3357), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, STATE(2352), 2, sym_line_comment, sym_block_comment, - [74146] = 10, - ACTIONS(3), 1, + [73141] = 8, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5314), 1, - aux_sym_line_comment_token1, - ACTIONS(5316), 1, - aux_sym_line_comment_token3, - ACTIONS(5318), 1, - anon_sym_BANG2, - ACTIONS(5320), 1, - anon_sym_SLASH2, - STATE(3561), 1, - sym__line_doc_comment_marker, - STATE(3571), 1, - sym__inner_line_doc_comment_marker, - STATE(3598), 1, - sym__outer_line_doc_comment_marker, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5352), 1, + anon_sym_COLON, + ACTIONS(5354), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5350), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2353), 2, sym_line_comment, sym_block_comment, - [74178] = 5, + [73169] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5322), 1, - anon_sym_trait, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5354), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2354), 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, - [74200] = 5, + ACTIONS(3518), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [73195] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5324), 1, - sym_identifier, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5358), 1, + anon_sym_EQ, + ACTIONS(5356), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2355), 2, sym_line_comment, sym_block_comment, - ACTIONS(4859), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74222] = 5, + STATE(3109), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [73223] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5326), 1, - sym_identifier, + ACTIONS(5266), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LBRACK, + ACTIONS(5272), 1, + anon_sym_LBRACE, + ACTIONS(5360), 1, + anon_sym_RBRACK, + STATE(2224), 1, + aux_sym_macro_definition_repeat1, + STATE(3207), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, STATE(2356), 2, sym_line_comment, sym_block_comment, - ACTIONS(4859), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74244] = 8, + [73255] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5330), 1, - anon_sym_COLON, - ACTIONS(5332), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5328), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5266), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LBRACK, + ACTIONS(5272), 1, + anon_sym_LBRACE, + ACTIONS(5362), 1, + anon_sym_RBRACE, + STATE(2224), 1, + aux_sym_macro_definition_repeat1, + STATE(3302), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, STATE(2357), 2, sym_line_comment, sym_block_comment, - [74272] = 9, + [73287] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5266), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LBRACK, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5334), 1, - anon_sym_SEMI, - STATE(1209), 1, - sym_declaration_list, - STATE(2911), 1, - sym_where_clause, + ACTIONS(5364), 1, + anon_sym_RBRACE, + STATE(2357), 1, + aux_sym_macro_definition_repeat1, + STATE(3421), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, STATE(2358), 2, sym_line_comment, sym_block_comment, - [74301] = 9, + [73319] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5336), 1, - anon_sym_SEMI, - ACTIONS(5338), 1, - anon_sym_EQ, - STATE(3104), 1, - sym_trait_bounds, - STATE(3367), 1, - sym_where_clause, + ACTIONS(5266), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LBRACK, + ACTIONS(5272), 1, + anon_sym_LBRACE, + ACTIONS(5360), 1, + anon_sym_RPAREN, + STATE(2224), 1, + aux_sym_macro_definition_repeat1, + STATE(3204), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, STATE(2359), 2, sym_line_comment, sym_block_comment, - [74330] = 9, + [73351] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + ACTIONS(5334), 1, + anon_sym_LPAREN, + ACTIONS(5336), 1, + anon_sym_LBRACK, ACTIONS(5340), 1, - anon_sym_SEMI, - STATE(1317), 1, - sym_declaration_list, - STATE(2956), 1, - sym_where_clause, + anon_sym_LBRACE, + ACTIONS(5366), 1, + anon_sym_RBRACK, + ACTIONS(5368), 1, + anon_sym_EQ, + STATE(3464), 1, + sym_delim_token_tree, STATE(2360), 2, sym_line_comment, sym_block_comment, - [74359] = 9, + [73383] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(4274), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5342), 1, - anon_sym_SEMI, - STATE(1295), 1, - sym_declaration_list, - STATE(2948), 1, - sym_where_clause, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5314), 1, + anon_sym_STAR, + STATE(2861), 1, + sym_use_list, + STATE(3759), 1, + sym_type_arguments, + ACTIONS(5312), 2, + sym_identifier, + sym_super, STATE(2361), 2, sym_line_comment, sym_block_comment, - [74388] = 9, + [73413] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5344), 1, - anon_sym_SEMI, - STATE(738), 1, - sym_declaration_list, - STATE(2973), 1, - sym_where_clause, + ACTIONS(5198), 1, + sym_identifier, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + ACTIONS(5206), 1, + anon_sym_ref, + ACTIONS(5208), 1, + sym_mutable_specifier, + ACTIONS(5370), 1, + anon_sym_RBRACE, STATE(2362), 2, sym_line_comment, sym_block_comment, - [74417] = 9, + STATE(3244), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73443] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5346), 1, - anon_sym_SEMI, - STATE(1297), 1, - sym_declaration_list, - STATE(2949), 1, - sym_where_clause, + ACTIONS(5198), 1, + sym_identifier, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + ACTIONS(5206), 1, + anon_sym_ref, + ACTIONS(5208), 1, + sym_mutable_specifier, + ACTIONS(5372), 1, + anon_sym_RBRACE, STATE(2363), 2, sym_line_comment, sym_block_comment, - [74446] = 9, + STATE(3244), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73473] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5348), 1, - anon_sym_SEMI, - STATE(528), 1, - sym_declaration_list, - STATE(2914), 1, - sym_where_clause, + ACTIONS(5198), 1, + sym_identifier, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + ACTIONS(5206), 1, + anon_sym_ref, + ACTIONS(5208), 1, + sym_mutable_specifier, + ACTIONS(5374), 1, + anon_sym_RBRACE, STATE(2364), 2, sym_line_comment, sym_block_comment, - [74475] = 5, + STATE(3244), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73503] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_DOT_DOT, + ACTIONS(5376), 1, + sym_identifier, STATE(2365), 2, sym_line_comment, sym_block_comment, - ACTIONS(1005), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74496] = 6, + ACTIONS(4843), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73525] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3600), 1, - anon_sym_COLON, - ACTIONS(5350), 1, - anon_sym_EQ, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5378), 1, + anon_sym_SEMI, + STATE(1239), 1, + sym_field_declaration_list, + STATE(2926), 1, + sym_ordered_field_declaration_list, + STATE(3225), 1, + sym_where_clause, STATE(2366), 2, sym_line_comment, sym_block_comment, - ACTIONS(3598), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [74519] = 9, + [73557] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(781), 1, - sym_declaration_list, - STATE(2582), 1, - sym_trait_bounds, - STATE(3308), 1, - sym_where_clause, + ACTIONS(5380), 1, + anon_sym_trait, STATE(2367), 2, sym_line_comment, sym_block_comment, - [74548] = 9, + ACTIONS(3562), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73579] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5043), 1, + ACTIONS(4745), 1, + anon_sym_COLON_COLON, + ACTIONS(5334), 1, + anon_sym_LPAREN, + ACTIONS(5336), 1, + anon_sym_LBRACK, + ACTIONS(5338), 1, + anon_sym_RBRACK, + ACTIONS(5340), 1, anon_sym_LBRACE, - STATE(772), 1, - sym_field_declaration_list, - STATE(2647), 1, - sym_type_parameters, - STATE(3365), 1, - sym_where_clause, + ACTIONS(5342), 1, + anon_sym_EQ, + STATE(3466), 1, + sym_delim_token_tree, STATE(2368), 2, sym_line_comment, sym_block_comment, - [74577] = 9, + [73611] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5266), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LBRACK, + ACTIONS(5272), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5352), 1, - anon_sym_SEMI, - STATE(530), 1, - sym_declaration_list, - STATE(2932), 1, - sym_where_clause, + ACTIONS(5382), 1, + anon_sym_RBRACE, + STATE(2224), 1, + aux_sym_macro_definition_repeat1, + STATE(3307), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, STATE(2369), 2, sym_line_comment, sym_block_comment, - [74606] = 8, + [73643] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5104), 1, + ACTIONS(4638), 1, anon_sym_DOT_DOT, - ACTIONS(5108), 1, - anon_sym_ref, - ACTIONS(5110), 1, - sym_mutable_specifier, + ACTIONS(5282), 1, + anon_sym_COLON_COLON, + ACTIONS(5352), 1, + anon_sym_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5350), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2370), 2, sym_line_comment, sym_block_comment, - STATE(3262), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [74633] = 9, + [73671] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_PLUS, - ACTIONS(5356), 1, - anon_sym_GT, - ACTIONS(5358), 1, - anon_sym_COMMA, - STATE(2883), 1, - sym_trait_bounds, - STATE(2884), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4879), 1, + anon_sym_COLON_COLON, + ACTIONS(5334), 1, + anon_sym_LPAREN, + ACTIONS(5336), 1, + anon_sym_LBRACK, + ACTIONS(5338), 1, + anon_sym_RBRACK, + ACTIONS(5340), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + anon_sym_EQ, + STATE(3466), 1, + sym_delim_token_tree, STATE(2371), 2, sym_line_comment, sym_block_comment, - [74662] = 9, + [73703] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, - anon_sym_PLUS, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5356), 1, - anon_sym_GT, - ACTIONS(5358), 1, - anon_sym_COMMA, - STATE(2883), 1, - sym_trait_bounds, - STATE(2884), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5035), 1, + anon_sym_LPAREN, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5384), 1, + anon_sym_SEMI, + STATE(1169), 1, + sym_field_declaration_list, + STATE(2879), 1, + sym_ordered_field_declaration_list, + STATE(3423), 1, + sym_where_clause, STATE(2372), 2, sym_line_comment, sym_block_comment, - [74691] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, + [73735] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5360), 1, - anon_sym_if, - STATE(3676), 1, - sym_label, - STATE(413), 2, - sym_if_expression, - sym_block, + ACTIONS(5266), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LBRACK, + ACTIONS(5272), 1, + anon_sym_LBRACE, + ACTIONS(5386), 1, + anon_sym_RBRACE, + STATE(2224), 1, + aux_sym_macro_definition_repeat1, + STATE(3209), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, STATE(2373), 2, sym_line_comment, sym_block_comment, - [74718] = 5, + [73767] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1009), 1, - anon_sym_DOT_DOT, + ACTIONS(5266), 1, + anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_LBRACK, + ACTIONS(5272), 1, + anon_sym_LBRACE, + ACTIONS(5330), 1, + anon_sym_RPAREN, + STATE(2224), 1, + aux_sym_macro_definition_repeat1, + STATE(3354), 1, + sym_macro_rule, + STATE(3564), 1, + sym_token_tree_pattern, STATE(2374), 2, sym_line_comment, sym_block_comment, - ACTIONS(1011), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74739] = 8, + [73799] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5362), 1, - anon_sym_if, - STATE(3664), 1, - sym_label, - STATE(1493), 2, - sym_if_expression, - sym_block, + ACTIONS(5388), 1, + anon_sym_SEMI, + STATE(762), 1, + sym_declaration_list, + STATE(3135), 1, + sym_where_clause, STATE(2375), 2, sym_line_comment, sym_block_comment, - [74766] = 9, + [73828] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5364), 1, + ACTIONS(5390), 1, anon_sym_SEMI, - STATE(532), 1, + STATE(1334), 1, sym_declaration_list, - STATE(2936), 1, + STATE(2963), 1, sym_where_clause, STATE(2376), 2, sym_line_comment, sym_block_comment, - [74795] = 9, + [73857] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(5366), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5392), 1, anon_sym_SEMI, - STATE(1354), 1, + STATE(1162), 1, sym_declaration_list, - STATE(2962), 1, + STATE(2874), 1, sym_where_clause, STATE(2377), 2, sym_line_comment, sym_block_comment, - [74824] = 5, + [73886] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5394), 1, + anon_sym_LBRACE, + STATE(1183), 1, + sym_enum_variant_list, + STATE(2659), 1, + sym_type_parameters, + STATE(3223), 1, + sym_where_clause, STATE(2378), 2, sym_line_comment, sym_block_comment, - ACTIONS(3652), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [74845] = 9, + [73915] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5368), 1, - anon_sym_SEMI, - STATE(1188), 1, - sym_declaration_list, - STATE(2902), 1, - sym_where_clause, + ACTIONS(5005), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2379), 2, sym_line_comment, sym_block_comment, - [74874] = 9, + ACTIONS(3656), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [73936] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5370), 1, - anon_sym_SEMI, - STATE(780), 1, - sym_declaration_list, - STATE(2829), 1, - sym_where_clause, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5396), 1, + anon_sym_GT, + ACTIONS(5398), 1, + anon_sym_COMMA, + STATE(3024), 1, + sym_trait_bounds, + STATE(3025), 1, + aux_sym_type_arguments_repeat1, STATE(2380), 2, sym_line_comment, sym_block_comment, - [74903] = 9, + [73965] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5372), 1, - anon_sym_SEMI, - STATE(703), 1, - sym_declaration_list, - STATE(3089), 1, - sym_where_clause, + ACTIONS(907), 1, + anon_sym_DOT_DOT, STATE(2381), 2, sym_line_comment, sym_block_comment, - [74932] = 9, + ACTIONS(909), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [73986] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5374), 1, - anon_sym_SEMI, - STATE(1192), 1, - sym_declaration_list, - STATE(2904), 1, + ACTIONS(5400), 1, + anon_sym_LBRACE, + STATE(751), 1, + sym_enum_variant_list, + STATE(2664), 1, + sym_type_parameters, + STATE(3387), 1, sym_where_clause, STATE(2382), 2, sym_line_comment, sym_block_comment, - [74961] = 6, + [74015] = 8, 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(4943), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5376), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5402), 1, + anon_sym_if, + STATE(3741), 1, + sym_label, + STATE(1814), 2, + sym_if_expression, + sym_block, STATE(2383), 2, sym_line_comment, sym_block_comment, - [74984] = 9, + [74042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5379), 1, - anon_sym_SEMI, - STATE(613), 1, - sym_declaration_list, - STATE(3045), 1, - sym_where_clause, + ACTIONS(911), 1, + anon_sym_DOT_DOT, STATE(2384), 2, sym_line_comment, sym_block_comment, - [75013] = 9, + ACTIONS(913), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [74063] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(1214), 1, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5404), 1, + anon_sym_SEMI, + STATE(712), 1, sym_declaration_list, - STATE(2663), 1, - sym_trait_bounds, - STATE(3211), 1, + STATE(2907), 1, sym_where_clause, STATE(2385), 2, sym_line_comment, sym_block_comment, - [75042] = 9, + [74092] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5381), 1, - anon_sym_SEMI, - STATE(1356), 1, - sym_declaration_list, - STATE(2963), 1, - sym_where_clause, + ACTIONS(915), 1, + anon_sym_DOT_DOT, STATE(2386), 2, sym_line_comment, sym_block_comment, - [75071] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5210), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, + ACTIONS(917), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5383), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2387), 2, - sym_line_comment, - sym_block_comment, - [75096] = 9, + anon_sym_if, + [74113] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, + ACTIONS(5039), 1, anon_sym_LT, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5385), 1, + ACTIONS(5076), 1, anon_sym_LBRACE, - STATE(630), 1, - sym_enum_variant_list, - STATE(2684), 1, + STATE(651), 1, + sym_field_declaration_list, + STATE(2694), 1, sym_type_parameters, - STATE(3344), 1, + STATE(3346), 1, sym_where_clause, + STATE(2387), 2, + sym_line_comment, + sym_block_comment, + [74142] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + ACTIONS(5068), 1, + anon_sym_for, STATE(2388), 2, sym_line_comment, sym_block_comment, - [75125] = 5, + ACTIONS(3518), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74165] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4721), 1, + ACTIONS(4638), 1, anon_sym_DOT_DOT, + ACTIONS(5354), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5324), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2389), 2, sym_line_comment, sym_block_comment, - ACTIONS(4719), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75146] = 6, + [74190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(4977), 1, - anon_sym_for, + ACTIONS(5406), 1, + anon_sym_DASH_GT, STATE(2390), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3686), 5, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_where, - [75169] = 8, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [74211] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4671), 1, - anon_sym_COLON_COLON, - ACTIONS(5387), 1, - anon_sym_GT, - ACTIONS(5389), 1, - anon_sym_COMMA, - STATE(2964), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3425), 2, - anon_sym_PLUS, - anon_sym_as, + ACTIONS(5408), 1, + sym_identifier, + ACTIONS(5410), 1, + anon_sym_ref, + ACTIONS(5412), 1, + sym_mutable_specifier, + ACTIONS(5414), 1, + anon_sym_move, + STATE(238), 1, + sym_closure_parameters, STATE(2391), 2, sym_line_comment, sym_block_comment, - [75196] = 6, + [74240] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(5055), 1, - anon_sym_for, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5416), 1, + anon_sym_GT, + ACTIONS(5418), 1, + anon_sym_COMMA, + STATE(2898), 1, + sym_trait_bounds, + STATE(2899), 1, + aux_sym_type_arguments_repeat1, STATE(2392), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75219] = 9, + [74269] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(3656), 2, anon_sym_PLUS, - ACTIONS(5391), 1, - anon_sym_SEMI, - STATE(705), 1, - sym_declaration_list, - STATE(3093), 1, - sym_where_clause, + anon_sym_DASH_GT, + ACTIONS(5005), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5420), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2393), 2, sym_line_comment, sym_block_comment, - [75248] = 9, + [74292] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5393), 1, - anon_sym_SEMI, - STATE(634), 1, - sym_declaration_list, - STATE(3028), 1, - sym_where_clause, + ACTIONS(4801), 1, + anon_sym_DOT_DOT, + ACTIONS(4803), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2394), 2, sym_line_comment, sym_block_comment, - [75277] = 7, + ACTIONS(4626), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [74315] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5210), 1, + ACTIONS(4727), 1, anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5328), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5072), 1, + anon_sym_for, STATE(2395), 2, sym_line_comment, sym_block_comment, - [75302] = 9, + ACTIONS(3518), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74338] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5395), 1, + ACTIONS(5423), 1, anon_sym_SEMI, - STATE(609), 1, + STATE(717), 1, sym_declaration_list, - STATE(3131), 1, + STATE(3042), 1, sym_where_clause, STATE(2396), 2, sym_line_comment, sym_block_comment, - [75331] = 5, + [74367] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, - anon_sym_DOT_DOT, + ACTIONS(5425), 1, + anon_sym_DASH_GT, STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(999), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75352] = 6, + ACTIONS(3636), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [74388] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(4979), 1, - anon_sym_for, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5427), 1, + anon_sym_if, + STATE(3677), 1, + sym_label, + STATE(1471), 2, + sym_if_expression, + sym_block, STATE(2398), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75375] = 5, + [74415] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1017), 1, - anon_sym_DOT_DOT, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5429), 1, + anon_sym_SEMI, + STATE(1371), 1, + sym_declaration_list, + STATE(2967), 1, + sym_where_clause, STATE(2399), 2, sym_line_comment, sym_block_comment, - ACTIONS(1019), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75396] = 9, + [74444] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5397), 1, - anon_sym_SEMI, - STATE(570), 1, - sym_declaration_list, - STATE(3004), 1, - sym_where_clause, + ACTIONS(5433), 1, + anon_sym_COMMA, + STATE(2405), 1, + aux_sym_where_clause_repeat1, STATE(2400), 2, sym_line_comment, sym_block_comment, - [75425] = 6, + ACTIONS(5431), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [74467] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_DOT_DOT, - ACTIONS(4733), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5435), 1, + anon_sym_SEMI, + STATE(758), 1, + sym_declaration_list, + STATE(3126), 1, + sym_where_clause, STATE(2401), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [75448] = 9, + [74496] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(5399), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5437), 1, anon_sym_SEMI, - STATE(1145), 1, + STATE(738), 1, sym_declaration_list, - STATE(2855), 1, + STATE(3127), 1, sym_where_clause, STATE(2402), 2, sym_line_comment, sym_block_comment, - [75477] = 5, + [74525] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4711), 1, - anon_sym_DOT_DOT, + ACTIONS(3630), 1, + anon_sym_COLON, + ACTIONS(5439), 1, + anon_sym_EQ, STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(4709), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75498] = 9, + ACTIONS(3628), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [74548] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, ACTIONS(5354), 1, - anon_sym_PLUS, - ACTIONS(5401), 1, - anon_sym_GT, - ACTIONS(5403), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5441), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3047), 1, - sym_trait_bounds, - STATE(3048), 1, - aux_sym_type_arguments_repeat1, STATE(2404), 2, sym_line_comment, sym_block_comment, - [75527] = 9, + [74573] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, - anon_sym_PLUS, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5401), 1, - anon_sym_GT, - ACTIONS(5403), 1, + ACTIONS(5443), 1, anon_sym_COMMA, - STATE(3047), 1, - sym_trait_bounds, - STATE(3048), 1, - aux_sym_type_arguments_repeat1, + STATE(2446), 1, + aux_sym_where_clause_repeat1, STATE(2405), 2, sym_line_comment, sym_block_comment, - [75556] = 9, + ACTIONS(3481), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [74596] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(764), 1, + ACTIONS(5445), 1, + anon_sym_SEMI, + STATE(760), 1, sym_declaration_list, - STATE(2810), 1, - sym_trait_bounds, - STATE(3232), 1, + STATE(3131), 1, sym_where_clause, STATE(2406), 2, sym_line_comment, sym_block_comment, - [75585] = 9, + [74625] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5385), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - STATE(674), 1, - sym_enum_variant_list, - STATE(2801), 1, - sym_type_parameters, - STATE(3167), 1, + ACTIONS(5447), 1, + anon_sym_SEMI, + STATE(1373), 1, + sym_declaration_list, + STATE(2968), 1, sym_where_clause, STATE(2407), 2, sym_line_comment, sym_block_comment, - [75614] = 9, + [74654] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1127), 1, - sym_field_declaration_list, - STATE(2680), 1, - sym_type_parameters, - STATE(3312), 1, - sym_where_clause, + ACTIONS(5198), 1, + sym_identifier, + ACTIONS(5202), 1, + anon_sym_DOT_DOT, + ACTIONS(5206), 1, + anon_sym_ref, + ACTIONS(5208), 1, + sym_mutable_specifier, STATE(2408), 2, sym_line_comment, sym_block_comment, - [75643] = 5, + STATE(3244), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74681] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5407), 1, - anon_sym_COMMA, - STATE(2409), 3, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5449), 1, + anon_sym_SEMI, + STATE(766), 1, + sym_declaration_list, + STATE(3141), 1, + sym_where_clause, + STATE(2409), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - ACTIONS(5405), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [75664] = 9, + [74710] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5410), 1, + ACTIONS(5451), 1, anon_sym_SEMI, - STATE(526), 1, + STATE(1254), 1, sym_declaration_list, - STATE(2900), 1, + STATE(2939), 1, sym_where_clause, STATE(2410), 2, sym_line_comment, sym_block_comment, - [75693] = 9, + [74739] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5412), 1, + ACTIONS(5453), 1, anon_sym_SEMI, - STATE(507), 1, + STATE(1256), 1, sym_declaration_list, - STATE(2826), 1, + STATE(2940), 1, sym_where_clause, STATE(2411), 2, sym_line_comment, sym_block_comment, - [75722] = 9, + [74768] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5414), 1, - anon_sym_SEMI, - STATE(1311), 1, - sym_declaration_list, - STATE(2951), 1, + STATE(1188), 1, + sym_field_declaration_list, + STATE(2661), 1, + sym_type_parameters, + STATE(3255), 1, sym_where_clause, STATE(2412), 2, sym_line_comment, sym_block_comment, - [75751] = 6, + [74797] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5418), 1, - anon_sym_COMMA, - STATE(2425), 1, - aux_sym_where_clause_repeat1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5455), 1, + anon_sym_SEMI, + STATE(608), 1, + sym_declaration_list, + STATE(2970), 1, + sym_where_clause, STATE(2413), 2, sym_line_comment, sym_block_comment, - ACTIONS(5416), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [75774] = 9, + [74826] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(5420), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5457), 1, anon_sym_SEMI, - STATE(1313), 1, + STATE(611), 1, sym_declaration_list, - STATE(2952), 1, + STATE(3104), 1, sym_where_clause, STATE(2414), 2, sym_line_comment, sym_block_comment, - [75803] = 9, + [74855] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_PLUS, - ACTIONS(5422), 1, - anon_sym_GT, - ACTIONS(5424), 1, - anon_sym_COMMA, - STATE(2995), 1, - sym_trait_bounds, - STATE(2996), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(919), 1, + anon_sym_DOT_DOT, STATE(2415), 2, sym_line_comment, sym_block_comment, - [75832] = 9, + ACTIONS(921), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [74876] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5422), 1, - anon_sym_GT, - ACTIONS(5424), 1, - anon_sym_COMMA, - STATE(2995), 1, - sym_trait_bounds, - STATE(2996), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5459), 1, + anon_sym_SEMI, + STATE(1260), 1, + sym_declaration_list, + STATE(2942), 1, + sym_where_clause, STATE(2416), 2, sym_line_comment, sym_block_comment, - [75861] = 9, + [74905] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(1155), 1, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5461), 1, + anon_sym_SEMI, + STATE(1262), 1, sym_declaration_list, - STATE(2752), 1, - sym_trait_bounds, - STATE(3251), 1, + STATE(2943), 1, sym_where_clause, STATE(2417), 2, sym_line_comment, sym_block_comment, - [75890] = 9, + [74934] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5426), 1, - anon_sym_SEMI, - STATE(1315), 1, - sym_declaration_list, - STATE(2955), 1, - sym_where_clause, + ACTIONS(5420), 1, + anon_sym_RBRACK, + ACTIONS(5005), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2418), 2, sym_line_comment, sym_block_comment, - [75919] = 8, + ACTIONS(3656), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [74957] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5428), 1, - anon_sym_if, - STATE(3717), 1, - sym_label, - STATE(473), 2, - sym_if_expression, - sym_block, + ACTIONS(5463), 1, + anon_sym_SEMI, + STATE(1205), 1, + sym_declaration_list, + STATE(2915), 1, + sym_where_clause, STATE(2419), 2, sym_line_comment, sym_block_comment, - [75946] = 9, + [74986] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5430), 1, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5465), 1, anon_sym_SEMI, - ACTIONS(5432), 1, - anon_sym_EQ, - STATE(2861), 1, - sym_trait_bounds, - STATE(3263), 1, + STATE(1209), 1, + sym_declaration_list, + STATE(2916), 1, sym_where_clause, STATE(2420), 2, sym_line_comment, sym_block_comment, - [75975] = 7, + [75015] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5274), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5383), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5467), 1, + anon_sym_SEMI, + STATE(719), 1, + sym_declaration_list, + STATE(3044), 1, + sym_where_clause, STATE(2421), 2, sym_line_comment, sym_block_comment, - [76000] = 4, + [75044] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5469), 1, + anon_sym_SEMI, + STATE(1226), 1, + sym_declaration_list, + STATE(2922), 1, + sym_where_clause, STATE(2422), 2, sym_line_comment, sym_block_comment, - ACTIONS(5027), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [76019] = 9, + [75073] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5434), 1, - anon_sym_SEMI, - STATE(1162), 1, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(1294), 1, sym_declaration_list, - STATE(2862), 1, + STATE(2689), 1, + sym_trait_bounds, + STATE(3328), 1, sym_where_clause, STATE(2423), 2, sym_line_comment, sym_block_comment, - [76048] = 9, + [75102] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5436), 1, - anon_sym_SEMI, - STATE(572), 1, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(1231), 1, sym_declaration_list, - STATE(3013), 1, + STATE(2674), 1, + sym_trait_bounds, + STATE(3203), 1, sym_where_clause, STATE(2424), 2, sym_line_comment, sym_block_comment, - [76077] = 6, + [75131] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5438), 1, - anon_sym_COMMA, - STATE(2409), 1, - aux_sym_where_clause_repeat1, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + ACTIONS(5132), 1, + anon_sym_for, STATE(2425), 2, sym_line_comment, sym_block_comment, - ACTIONS(3387), 4, + ACTIONS(3518), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [76100] = 9, + anon_sym_PLUS, + anon_sym_where, + [75154] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5440), 1, - anon_sym_LBRACE, - STATE(1166), 1, - sym_enum_variant_list, - STATE(2768), 1, - sym_type_parameters, - STATE(3311), 1, - sym_where_clause, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5471), 1, + anon_sym_if, + STATE(3532), 1, + sym_label, + STATE(406), 2, + sym_if_expression, + sym_block, STATE(2426), 2, sym_line_comment, sym_block_comment, - [76129] = 9, + [75181] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5442), 1, + ACTIONS(5473), 1, anon_sym_SEMI, - STATE(655), 1, + STATE(1332), 1, sym_declaration_list, - STATE(2968), 1, + STATE(2962), 1, sym_where_clause, STATE(2427), 2, sym_line_comment, sym_block_comment, - [76158] = 9, + [75210] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5444), 1, + ACTIONS(5475), 1, anon_sym_SEMI, - STATE(509), 1, + STATE(626), 1, sym_declaration_list, - STATE(2827), 1, + STATE(3137), 1, sym_where_clause, STATE(2428), 2, sym_line_comment, sym_block_comment, - [76187] = 6, + [75239] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3626), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4925), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5446), 2, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5282), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5441), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(2429), 2, sym_line_comment, sym_block_comment, - [76210] = 6, + [75264] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(5035), 1, - anon_sym_for, + ACTIONS(4757), 1, + anon_sym_DOT_DOT, STATE(2430), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76233] = 9, - ACTIONS(27), 1, + ACTIONS(4755), 5, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [75285] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5449), 1, - sym_identifier, - ACTIONS(5451), 1, - anon_sym_ref, - ACTIONS(5453), 1, - sym_mutable_specifier, - ACTIONS(5455), 1, - anon_sym_move, - STATE(218), 1, - sym_closure_parameters, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5477), 1, + anon_sym_SEMI, + STATE(609), 1, + sym_declaration_list, + STATE(3018), 1, + sym_where_clause, STATE(2431), 2, sym_line_comment, sym_block_comment, - [76262] = 9, + [75314] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5354), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(5457), 1, - anon_sym_GT, - ACTIONS(5459), 1, - anon_sym_COMMA, - STATE(3026), 1, - sym_trait_bounds, - STATE(3027), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5479), 1, + anon_sym_SEMI, + STATE(615), 1, + sym_declaration_list, + STATE(2903), 1, + sym_where_clause, STATE(2432), 2, sym_line_comment, sym_block_comment, - [76291] = 9, + [75343] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5461), 1, - anon_sym_SEMI, - STATE(691), 1, - sym_declaration_list, - STATE(3062), 1, - sym_where_clause, + ACTIONS(4973), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2433), 2, sym_line_comment, sym_block_comment, - [76320] = 9, + ACTIONS(3682), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [75364] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5463), 1, + ACTIONS(5481), 1, anon_sym_SEMI, - STATE(697), 1, + STATE(521), 1, sym_declaration_list, - STATE(3072), 1, + STATE(3088), 1, sym_where_clause, STATE(2434), 2, sym_line_comment, sym_block_comment, - [76349] = 9, + [75393] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5465), 1, - anon_sym_SEMI, - STATE(1237), 1, - sym_declaration_list, - STATE(2934), 1, - sym_where_clause, + ACTIONS(5483), 1, + anon_sym_RBRACK, + ACTIONS(4973), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2435), 2, sym_line_comment, sym_block_comment, - [76378] = 9, + ACTIONS(3682), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [75416] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(5467), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5486), 1, anon_sym_SEMI, - STATE(1239), 1, + STATE(523), 1, sym_declaration_list, - STATE(2935), 1, + STATE(3106), 1, sym_where_clause, STATE(2436), 2, sym_line_comment, sym_block_comment, - [76407] = 9, + [75445] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5457), 1, - anon_sym_GT, - ACTIONS(5459), 1, - anon_sym_COMMA, - STATE(3026), 1, - sym_trait_bounds, - STATE(3027), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5488), 1, + anon_sym_SEMI, + STATE(618), 1, + sym_declaration_list, + STATE(2964), 1, + sym_where_clause, STATE(2437), 2, sym_line_comment, sym_block_comment, - [76436] = 8, + [75474] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5469), 1, - anon_sym_if, - STATE(3718), 1, - sym_label, - STATE(1771), 2, - sym_if_expression, - sym_block, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(681), 1, + sym_declaration_list, + STATE(2665), 1, + sym_trait_bounds, + STATE(3385), 1, + sym_where_clause, STATE(2438), 2, sym_line_comment, sym_block_comment, - [76463] = 5, + [75503] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4925), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + ACTIONS(5112), 1, + anon_sym_for, STATE(2439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3626), 4, - anon_sym_RPAREN, + ACTIONS(3518), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [76484] = 9, + anon_sym_where, + [75526] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(4741), 1, + anon_sym_COLON_COLON, + ACTIONS(5490), 1, + anon_sym_GT, + ACTIONS(5492), 1, + anon_sym_COMMA, + STATE(2984), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3518), 2, anon_sym_PLUS, - ACTIONS(5471), 1, - anon_sym_SEMI, - STATE(1243), 1, - sym_declaration_list, - STATE(2937), 1, - sym_where_clause, + anon_sym_as, STATE(2440), 2, sym_line_comment, sym_block_comment, - [76513] = 9, + [75553] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5473), 1, - anon_sym_SEMI, - STATE(1245), 1, - sym_declaration_list, - STATE(2938), 1, - sym_where_clause, + ACTIONS(5494), 1, + anon_sym_DASH_GT, STATE(2441), 2, sym_line_comment, sym_block_comment, - [76542] = 6, + ACTIONS(3648), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [75574] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(5068), 1, - anon_sym_for, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(1172), 1, + sym_declaration_list, + STATE(2655), 1, + sym_trait_bounds, + STATE(3159), 1, + sym_where_clause, STATE(2442), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76565] = 9, + [75603] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(678), 1, - sym_field_declaration_list, - STATE(2651), 1, - sym_type_parameters, - STATE(3291), 1, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5496), 1, + anon_sym_SEMI, + ACTIONS(5498), 1, + anon_sym_EQ, + STATE(2881), 1, + sym_trait_bounds, + STATE(3179), 1, sym_where_clause, STATE(2443), 2, sym_line_comment, sym_block_comment, - [76594] = 9, + [75632] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(5394), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(754), 1, - sym_declaration_list, - STATE(2622), 1, - sym_trait_bounds, - STATE(3324), 1, + STATE(1133), 1, + sym_enum_variant_list, + STATE(2635), 1, + sym_type_parameters, + STATE(3310), 1, sym_where_clause, STATE(2444), 2, sym_line_comment, sym_block_comment, - [76623] = 6, + [75661] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5446), 1, - anon_sym_RBRACK, - ACTIONS(4925), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5500), 1, + anon_sym_SEMI, + STATE(1136), 1, + sym_declaration_list, + STATE(3080), 1, + sym_where_clause, STATE(2445), 2, sym_line_comment, sym_block_comment, - ACTIONS(3626), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [76646] = 6, + [75690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(5072), 1, - anon_sym_for, - STATE(2446), 2, + ACTIONS(5504), 1, + anon_sym_COMMA, + STATE(2446), 3, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + aux_sym_where_clause_repeat1, + ACTIONS(5502), 4, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76669] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2447), 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, - [76688] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(1277), 1, - sym_declaration_list, - STATE(2595), 1, - sym_trait_bounds, - STATE(3357), 1, - sym_where_clause, - STATE(2448), 2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [75711] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + ACTIONS(5116), 1, + anon_sym_for, + STATE(2447), 2, sym_line_comment, sym_block_comment, - [76717] = 6, + ACTIONS(3518), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75734] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, + ACTIONS(4727), 1, anon_sym_COLON_COLON, - ACTIONS(5074), 1, + ACTIONS(5078), 1, anon_sym_for, - STATE(2449), 2, + STATE(2448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(3518), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [76740] = 9, + [75757] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5440), 1, - anon_sym_LBRACE, - STATE(1116), 1, - sym_enum_variant_list, - STATE(2666), 1, - sym_type_parameters, - STATE(3399), 1, - sym_where_clause, - STATE(2450), 2, + ACTIONS(5507), 1, + anon_sym_DASH_GT, + STATE(2449), 2, sym_line_comment, sym_block_comment, - [76769] = 6, + ACTIONS(3660), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [75778] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, + ACTIONS(4727), 1, anon_sym_COLON_COLON, - ACTIONS(5076), 1, + ACTIONS(5118), 1, anon_sym_for, - STATE(2451), 2, + STATE(2450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 4, + ACTIONS(3518), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [76792] = 9, + [75801] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5475), 1, - anon_sym_SEMI, - STATE(1119), 1, - sym_declaration_list, - STATE(3122), 1, - sym_where_clause, - STATE(2452), 2, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5509), 1, + anon_sym_GT, + ACTIONS(5511), 1, + anon_sym_COMMA, + STATE(3002), 1, + sym_trait_bounds, + STATE(3003), 1, + aux_sym_type_arguments_repeat1, + STATE(2451), 2, sym_line_comment, sym_block_comment, - [76821] = 6, + [75830] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5376), 1, - anon_sym_RBRACK, - ACTIONS(4943), 2, + ACTIONS(3682), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4973), 2, + anon_sym_COLON, anon_sym_PIPE, + ACTIONS(5483), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2453), 2, + STATE(2452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3652), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [76844] = 9, + [75853] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(4987), 1, + ACTIONS(5513), 1, + anon_sym_SEMI, + STATE(1179), 1, + sym_declaration_list, + STATE(2882), 1, + sym_where_clause, + STATE(2453), 2, + sym_line_comment, + sym_block_comment, + [75882] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5039), 1, anon_sym_LT, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - STATE(1171), 1, - sym_field_declaration_list, - STATE(2771), 1, + ACTIONS(5400), 1, + anon_sym_LBRACE, + STATE(588), 1, + sym_enum_variant_list, + STATE(2650), 1, sym_type_parameters, - STATE(3335), 1, + STATE(3347), 1, sym_where_clause, STATE(2454), 2, sym_line_comment, sym_block_comment, - [76873] = 7, + [75911] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5274), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5328), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + STATE(1144), 1, + sym_field_declaration_list, + STATE(2639), 1, + sym_type_parameters, + STATE(3352), 1, + sym_where_clause, STATE(2455), 2, sym_line_comment, sym_block_comment, - [76898] = 8, + [75940] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5477), 1, - sym_identifier, - ACTIONS(5479), 1, - anon_sym_GT, - ACTIONS(5481), 1, - anon_sym_COMMA, - STATE(2997), 1, - sym_lifetime, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + ACTIONS(5122), 1, + anon_sym_for, STATE(2456), 2, sym_line_comment, sym_block_comment, - [76924] = 4, + ACTIONS(3518), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75963] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(777), 1, + sym_field_declaration_list, + STATE(2691), 1, + sym_type_parameters, + STATE(3340), 1, + sym_where_clause, STATE(2457), 2, sym_line_comment, sym_block_comment, - ACTIONS(5483), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76942] = 8, + [75992] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5082), 1, - anon_sym_PLUS, - STATE(1791), 1, - sym_block, - STATE(3718), 1, - sym_label, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5515), 1, + anon_sym_SEMI, + ACTIONS(5517), 1, + anon_sym_EQ, + STATE(3016), 1, + sym_trait_bounds, + STATE(3212), 1, + sym_where_clause, STATE(2458), 2, sym_line_comment, sym_block_comment, - [76968] = 8, + [76021] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5485), 1, - anon_sym_EQ, - STATE(2945), 1, - sym_type_parameters, - STATE(3691), 1, - sym_where_clause, STATE(2459), 2, sym_line_comment, sym_block_comment, - [76994] = 8, + ACTIONS(3562), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76040] = 9, 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, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - STATE(1431), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(5519), 1, + anon_sym_SEMI, + STATE(563), 1, + sym_declaration_list, + STATE(3095), 1, + sym_where_clause, STATE(2460), 2, sym_line_comment, sym_block_comment, - [77020] = 8, + [76069] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(5487), 1, + ACTIONS(5521), 1, anon_sym_SEMI, - STATE(1267), 1, - sym_block, - STATE(3716), 1, - sym_label, + STATE(1312), 1, + sym_declaration_list, + STATE(2956), 1, + sym_where_clause, STATE(2461), 2, sym_line_comment, sym_block_comment, - [77046] = 4, + [76098] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5523), 1, + anon_sym_DASH_GT, STATE(2462), 2, sym_line_comment, sym_block_comment, - ACTIONS(5489), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3642), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_where, - [77064] = 4, + anon_sym_as, + [76119] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5282), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5324), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2463), 2, sym_line_comment, sym_block_comment, - ACTIONS(5491), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77082] = 4, + [76144] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5525), 1, + anon_sym_if, + STATE(3740), 1, + sym_label, + STATE(486), 2, + sym_if_expression, + sym_block, STATE(2464), 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, - [77100] = 8, + [76171] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5495), 1, - anon_sym_SEMI, - STATE(751), 1, - sym_block, - STATE(3713), 1, - sym_label, + ACTIONS(4791), 1, + anon_sym_DOT_DOT, STATE(2465), 2, sym_line_comment, sym_block_comment, - [77126] = 6, + ACTIONS(4789), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [76192] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3768), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(4861), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5497), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5527), 1, + anon_sym_SEMI, + STATE(1314), 1, + sym_declaration_list, + STATE(2957), 1, + sym_where_clause, STATE(2466), 2, sym_line_comment, sym_block_comment, - [77148] = 8, + [76221] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5500), 1, - anon_sym_SEMI, - STATE(1289), 1, - sym_block, - STATE(3716), 1, - sym_label, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(568), 1, + sym_declaration_list, + STATE(2692), 1, + sym_trait_bounds, + STATE(3256), 1, + sym_where_clause, STATE(2467), 2, sym_line_comment, sym_block_comment, - [77174] = 6, + [76250] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5504), 1, - anon_sym_COLON_COLON, - ACTIONS(5506), 1, - anon_sym_as, + ACTIONS(5529), 1, + anon_sym_DASH_GT, STATE(2468), 2, sym_line_comment, sym_block_comment, - ACTIONS(5502), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3666), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - [77196] = 8, + anon_sym_as, + [76271] = 4, 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(5508), 1, - anon_sym_move, - STATE(476), 1, - sym_block, - STATE(3717), 1, - sym_label, STATE(2469), 2, sym_line_comment, sym_block_comment, - [77222] = 7, + ACTIONS(5057), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [76290] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(5512), 1, - anon_sym_STAR, - STATE(3130), 1, - sym_use_list, - ACTIONS(5510), 2, - sym_identifier, - sym_super, + ACTIONS(5531), 1, + anon_sym_DASH_GT, STATE(2470), 2, sym_line_comment, sym_block_comment, - [77246] = 8, + ACTIONS(3672), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [76311] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5533), 1, anon_sym_SEMI, - STATE(1320), 1, - sym_block, - STATE(3716), 1, - sym_label, + STATE(1328), 1, + sym_declaration_list, + STATE(2959), 1, + sym_where_clause, STATE(2471), 2, sym_line_comment, sym_block_comment, - [77272] = 8, + [76340] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5535), 1, anon_sym_SEMI, - STATE(1334), 1, - sym_block, - STATE(3716), 1, - sym_label, + STATE(599), 1, + sym_declaration_list, + STATE(3130), 1, + sym_where_clause, STATE(2472), 2, sym_line_comment, sym_block_comment, - [77298] = 7, + [76369] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5518), 1, - anon_sym_RPAREN, - ACTIONS(5520), 1, - anon_sym_COMMA, - STATE(3078), 1, - aux_sym_parameters_repeat1, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(5537), 1, + anon_sym_SEMI, + STATE(1330), 1, + sym_declaration_list, + STATE(2960), 1, + sym_where_clause, STATE(2473), 2, sym_line_comment, sym_block_comment, - [77322] = 7, + [76398] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5330), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5152), 1, anon_sym_COLON, - ACTIONS(5332), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5539), 1, + anon_sym_GT, + ACTIONS(5541), 1, + anon_sym_COMMA, + STATE(3048), 1, + sym_trait_bounds, + STATE(3050), 1, + aux_sym_type_arguments_repeat1, STATE(2474), 2, sym_line_comment, sym_block_comment, - [77346] = 8, + [76427] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(5522), 1, - anon_sym_SEMI, - STATE(1339), 1, - sym_block, - STATE(3716), 1, - sym_label, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(731), 1, + sym_declaration_list, + STATE(2604), 1, + sym_trait_bounds, + STATE(3343), 1, + sym_where_clause, STATE(2475), 2, sym_line_comment, sym_block_comment, - [77372] = 8, + [76456] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5524), 1, - anon_sym_SEMI, - STATE(607), 1, - sym_block, - STATE(3713), 1, - sym_label, STATE(2476), 2, sym_line_comment, sym_block_comment, - [77398] = 8, + ACTIONS(5543), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76474] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(5136), 1, anon_sym_LBRACE, - ACTIONS(5526), 1, + ACTIONS(5545), 1, anon_sym_SEMI, - STATE(1364), 1, + STATE(706), 1, sym_block, - STATE(3716), 1, + STATE(3736), 1, sym_label, STATE(2477), 2, sym_line_comment, sym_block_comment, - [77424] = 8, + [76500] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5528), 1, - anon_sym_SEMI, - STATE(1372), 1, - sym_block, - STATE(3716), 1, - sym_label, + ACTIONS(5547), 1, + anon_sym_RPAREN, + ACTIONS(5549), 1, + anon_sym_COMMA, + STATE(3079), 1, + aux_sym_parameters_repeat1, + ACTIONS(4626), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2478), 2, sym_line_comment, sym_block_comment, - [77450] = 8, + [76524] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5530), 1, - anon_sym_SEMI, - STATE(1382), 1, - sym_block, - STATE(3716), 1, - sym_label, + ACTIONS(3886), 1, + anon_sym_PLUS, + ACTIONS(5015), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5551), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2479), 2, sym_line_comment, sym_block_comment, - [77476] = 8, + [76546] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5532), 1, - anon_sym_SEMI, - STATE(1387), 1, - sym_block, - STATE(3716), 1, - sym_label, + ACTIONS(5556), 1, + anon_sym_COLON_COLON, + ACTIONS(5558), 1, + anon_sym_as, STATE(2480), 2, sym_line_comment, sym_block_comment, - [77502] = 8, + ACTIONS(5554), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [76568] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(4274), 1, anon_sym_LBRACE, - ACTIONS(5534), 1, - anon_sym_SEMI, - STATE(1391), 1, - sym_block, - STATE(3716), 1, - sym_label, + ACTIONS(5562), 1, + anon_sym_STAR, + STATE(3027), 1, + sym_use_list, + ACTIONS(5560), 2, + sym_identifier, + sym_super, STATE(2481), 2, sym_line_comment, sym_block_comment, - [77528] = 8, + [76592] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5536), 1, - anon_sym_move, - STATE(1732), 1, - sym_block, - STATE(3718), 1, - sym_label, + ACTIONS(5566), 1, + anon_sym_COLON_COLON, + ACTIONS(5568), 1, + anon_sym_as, STATE(2482), 2, sym_line_comment, sym_block_comment, - [77554] = 7, + ACTIONS(5564), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [76614] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, + STATE(2483), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3374), 5, anon_sym_COLON, - ACTIONS(5354), 1, anon_sym_PLUS, - STATE(3298), 1, - sym_trait_bounds, - ACTIONS(5538), 2, anon_sym_GT, anon_sym_COMMA, - STATE(2483), 2, - sym_line_comment, - sym_block_comment, - [77578] = 7, + anon_sym_as, + [76632] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, - anon_sym_PLUS, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(3298), 1, - sym_trait_bounds, - ACTIONS(5538), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(2484), 2, sym_line_comment, sym_block_comment, - [77602] = 4, + ACTIONS(5570), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76650] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -177648,350 +178934,328 @@ static const uint16_t ts_small_parse_table[] = { STATE(2485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 5, + ACTIONS(5572), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [77620] = 8, + [76668] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5540), 1, - anon_sym_SEMI, - ACTIONS(5542), 1, - anon_sym_COLON, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5546), 1, - anon_sym_EQ, - ACTIONS(5548), 1, - anon_sym_else, STATE(2486), 2, sym_line_comment, sym_block_comment, - [77646] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2487), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3716), 5, + ACTIONS(5574), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [77664] = 8, + [76686] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1522), 1, + sym_block, + STATE(3677), 1, + sym_label, + STATE(2487), 2, + sym_line_comment, + sym_block_comment, + [76712] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4592), 1, - anon_sym_COLON_COLON, - STATE(1649), 1, - sym_parameters, - STATE(1999), 1, - sym_type_arguments, STATE(2488), 2, sym_line_comment, sym_block_comment, - [77690] = 8, + ACTIONS(3566), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76730] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5401), 1, - anon_sym_GT, - ACTIONS(5403), 1, - anon_sym_COMMA, - STATE(3047), 1, - sym_trait_bounds, - STATE(3048), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5576), 1, + anon_sym_SEMI, + STATE(550), 1, + sym_block, + STATE(3736), 1, + sym_label, STATE(2489), 2, sym_line_comment, sym_block_comment, - [77716] = 8, + [76756] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4883), 1, - anon_sym_RPAREN, - ACTIONS(5550), 1, - anon_sym_COLON, - ACTIONS(5552), 1, - anon_sym_PIPE, - ACTIONS(5554), 1, - anon_sym_COMMA, - STATE(3003), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(5568), 1, + anon_sym_as, + ACTIONS(5578), 1, + anon_sym_COLON_COLON, STATE(2490), 2, sym_line_comment, sym_block_comment, - [77742] = 8, + ACTIONS(5564), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [76778] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5422), 1, - anon_sym_GT, - ACTIONS(5424), 1, - anon_sym_COMMA, - STATE(2995), 1, - sym_trait_bounds, - STATE(2996), 1, - aux_sym_type_arguments_repeat1, STATE(2491), 2, sym_line_comment, sym_block_comment, - [77768] = 7, + ACTIONS(3678), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [76796] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, - anon_sym_RPAREN, - ACTIONS(5558), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2492), 2, sym_line_comment, sym_block_comment, - [77792] = 8, + ACTIONS(3692), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [76814] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5560), 1, - anon_sym_SEMI, - STATE(549), 1, - sym_block, - STATE(3713), 1, - sym_label, STATE(2493), 2, sym_line_comment, sym_block_comment, - [77818] = 8, + ACTIONS(3702), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [76832] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5562), 1, - anon_sym_STAR_SLASH, - ACTIONS(5564), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5566), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5568), 1, - sym__block_comment_content, - STATE(3369), 1, - sym__block_doc_comment_marker, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5580), 1, + anon_sym_SEMI, + STATE(555), 1, + sym_block, + STATE(3736), 1, + sym_label, STATE(2494), 2, sym_line_comment, sym_block_comment, - [77844] = 8, + [76858] = 4, 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(4592), 1, - anon_sym_COLON_COLON, - STATE(1999), 1, - sym_type_arguments, - STATE(2024), 1, - sym_parameters, STATE(2495), 2, sym_line_comment, sym_block_comment, - [77870] = 7, + ACTIONS(3710), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [76876] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1405), 1, - anon_sym_RPAREN, - ACTIONS(5570), 1, - anon_sym_COMMA, - STATE(3006), 1, - aux_sym_parameters_repeat1, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2496), 2, sym_line_comment, sym_block_comment, - [77894] = 8, + ACTIONS(5582), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76894] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5572), 1, - sym_identifier, - ACTIONS(5574), 1, - anon_sym_GT, - ACTIONS(5576), 1, - anon_sym_COMMA, - STATE(3008), 1, - sym_lifetime, STATE(2497), 2, sym_line_comment, sym_block_comment, - [77920] = 4, + ACTIONS(5584), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76912] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + ACTIONS(5586), 1, + sym_identifier, + ACTIONS(5588), 1, + anon_sym_GT, + ACTIONS(5590), 1, + anon_sym_COMMA, + STATE(3051), 1, + sym_lifetime, STATE(2498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [77938] = 8, + [76938] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5457), 1, - anon_sym_GT, - ACTIONS(5459), 1, - anon_sym_COMMA, - STATE(3026), 1, - sym_trait_bounds, - STATE(3027), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1433), 1, + sym_block, + STATE(3677), 1, + sym_label, STATE(2499), 2, sym_line_comment, sym_block_comment, - [77964] = 8, + [76964] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5578), 1, - anon_sym_SEMI, - ACTIONS(5580), 1, - anon_sym_COLON, - ACTIONS(5582), 1, - anon_sym_EQ, - ACTIONS(5584), 1, - anon_sym_else, STATE(2500), 2, sym_line_comment, sym_block_comment, - [77990] = 5, + ACTIONS(5592), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76982] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3846), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, STATE(2501), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78010] = 6, + ACTIONS(5594), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77000] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5588), 1, - anon_sym_COLON_COLON, - ACTIONS(5590), 1, + ACTIONS(5568), 1, anon_sym_as, + ACTIONS(5596), 1, + anon_sym_COLON_COLON, STATE(2502), 2, sym_line_comment, sym_block_comment, - ACTIONS(5586), 3, + ACTIONS(5564), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [78032] = 4, + [77022] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5598), 1, + anon_sym_SEMI, + STATE(560), 1, + sym_block, + STATE(3736), 1, + sym_label, STATE(2503), 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, - [78050] = 8, + [77048] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4592), 1, - anon_sym_COLON_COLON, - STATE(1137), 1, - sym_parameters, - STATE(1999), 1, - sym_type_arguments, + ACTIONS(4969), 1, + anon_sym_RPAREN, + ACTIONS(5600), 1, + anon_sym_COLON, + ACTIONS(5602), 1, + anon_sym_PIPE, + ACTIONS(5604), 1, + anon_sym_COMMA, + STATE(3083), 1, + aux_sym_closure_parameters_repeat1, STATE(2504), 2, sym_line_comment, sym_block_comment, - [78076] = 4, + [77074] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(3222), 1, + sym_trait_bounds, + ACTIONS(5606), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2505), 2, sym_line_comment, sym_block_comment, - ACTIONS(5592), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78094] = 4, + [77098] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -177999,22110 +179263,22763 @@ static const uint16_t ts_small_parse_table[] = { STATE(2506), 2, sym_line_comment, sym_block_comment, - ACTIONS(5594), 5, + ACTIONS(5608), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78112] = 4, + [77116] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5610), 1, + anon_sym_move, + STATE(481), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2507), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78130] = 5, + [77142] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3884), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, STATE(2508), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78150] = 4, + ACTIONS(3554), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77160] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5612), 1, + anon_sym_SEMI, + ACTIONS(5614), 1, + anon_sym_COLON, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5618), 1, + anon_sym_EQ, + ACTIONS(5620), 1, + anon_sym_else, STATE(2509), 2, sym_line_comment, sym_block_comment, - ACTIONS(3680), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78168] = 4, + [77186] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4626), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2510), 2, sym_line_comment, sym_block_comment, - ACTIONS(5596), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3518), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_where, - [78186] = 4, + [77206] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5328), 1, + anon_sym_COLON_COLON, + ACTIONS(5352), 1, + anon_sym_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2511), 2, sym_line_comment, sym_block_comment, - ACTIONS(5598), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78204] = 8, + [77230] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4879), 1, + ACTIONS(4947), 1, anon_sym_PIPE, - ACTIONS(5600), 1, + ACTIONS(5622), 1, anon_sym_SEMI, - ACTIONS(5602), 1, + ACTIONS(5624), 1, anon_sym_COLON, - ACTIONS(5604), 1, + ACTIONS(5626), 1, anon_sym_EQ, - ACTIONS(5606), 1, + ACTIONS(5628), 1, anon_sym_else, STATE(2512), 2, sym_line_comment, sym_block_comment, - [78230] = 8, + [77256] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3060), 1, anon_sym_SQUOTE, - ACTIONS(5082), 1, - anon_sym_PLUS, - STATE(1512), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5630), 1, + sym_identifier, + ACTIONS(5632), 1, + anon_sym_GT, + ACTIONS(5634), 1, + anon_sym_COMMA, + STATE(2863), 1, + sym_lifetime, STATE(2513), 2, sym_line_comment, sym_block_comment, - [78256] = 7, + [77282] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4715), 1, - anon_sym_EQ, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(2960), 1, - sym_trait_bounds, - ACTIONS(4717), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1450), 1, + sym_block, + STATE(3677), 1, + sym_label, STATE(2514), 2, sym_line_comment, sym_block_comment, - [78280] = 7, + [77308] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5608), 1, - anon_sym_RPAREN, - ACTIONS(5611), 1, - anon_sym_COMMA, - STATE(3078), 1, - aux_sym_parameters_repeat1, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3426), 1, + anon_sym_LPAREN, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + STATE(1154), 1, + sym_parameters, + STATE(2006), 1, + sym_type_arguments, STATE(2515), 2, sym_line_comment, sym_block_comment, - [78304] = 6, + [77334] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5590), 1, - anon_sym_as, - ACTIONS(5614), 1, - anon_sym_COLON_COLON, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5539), 1, + anon_sym_GT, + ACTIONS(5541), 1, + anon_sym_COMMA, + STATE(3048), 1, + sym_trait_bounds, + STATE(3050), 1, + aux_sym_type_arguments_repeat1, STATE(2516), 2, sym_line_comment, sym_block_comment, - ACTIONS(5586), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [78326] = 6, + [77360] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3425), 1, - anon_sym_PLUS, - ACTIONS(4576), 2, - anon_sym_COLON, + ACTIONS(4947), 1, anon_sym_PIPE, - ACTIONS(5616), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5636), 1, + anon_sym_SEMI, + ACTIONS(5638), 1, + anon_sym_COLON, + ACTIONS(5640), 1, + anon_sym_EQ, + ACTIONS(5642), 1, + anon_sym_else, STATE(2517), 2, sym_line_comment, sym_block_comment, - [78348] = 7, + [77386] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5272), 1, - anon_sym_COLON, - ACTIONS(5332), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5644), 1, + anon_sym_SEMI, + STATE(770), 1, + sym_block, + STATE(3736), 1, + sym_label, STATE(2518), 2, sym_line_comment, sym_block_comment, - [78372] = 8, + [77412] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - STATE(1798), 1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1904), 1, sym_block, - STATE(3718), 1, + STATE(3741), 1, sym_label, STATE(2519), 2, sym_line_comment, sym_block_comment, - [78398] = 4, + [77438] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5416), 1, + anon_sym_GT, + ACTIONS(5418), 1, + anon_sym_COMMA, + STATE(2898), 1, + sym_trait_bounds, + STATE(2899), 1, + aux_sym_type_arguments_repeat1, STATE(2520), 2, sym_line_comment, sym_block_comment, - ACTIONS(5619), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78416] = 5, + [77464] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4861), 2, + ACTIONS(5646), 1, + anon_sym_RPAREN, + ACTIONS(5648), 1, + anon_sym_COMMA, + STATE(2906), 1, + aux_sym_parameters_repeat1, + ACTIONS(4626), 2, anon_sym_COLON, anon_sym_PIPE, STATE(2521), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [78436] = 4, + [77488] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5650), 1, + anon_sym_SEMI, + STATE(1203), 1, + sym_block, + STATE(3739), 1, + sym_label, STATE(2522), 2, sym_line_comment, sym_block_comment, - ACTIONS(5621), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78454] = 8, + [77514] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5080), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5623), 1, - anon_sym_SEMI, - STATE(598), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1747), 1, sym_block, - STATE(3713), 1, + STATE(3741), 1, sym_label, STATE(2523), 2, sym_line_comment, sym_block_comment, - [78480] = 4, + [77540] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(3363), 1, + sym_trait_bounds, + ACTIONS(5652), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2524), 2, sym_line_comment, sym_block_comment, - ACTIONS(5405), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78498] = 8, + [77564] = 4, 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, - ACTIONS(5082), 1, - anon_sym_PLUS, - STATE(1446), 1, - sym_block, - STATE(3664), 1, - sym_label, STATE(2525), 2, sym_line_comment, sym_block_comment, - [78524] = 4, + ACTIONS(3570), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77582] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1355), 1, + anon_sym_RPAREN, + ACTIONS(5654), 1, + anon_sym_COMMA, + STATE(2935), 1, + aux_sym_parameters_repeat1, + ACTIONS(4626), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2526), 2, sym_line_comment, sym_block_comment, - ACTIONS(5625), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78542] = 8, + [77606] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - ACTIONS(5356), 1, - anon_sym_GT, - ACTIONS(5358), 1, - anon_sym_COMMA, - STATE(2883), 1, - sym_trait_bounds, - STATE(2884), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5656), 1, + anon_sym_SEMI, + STATE(1250), 1, + sym_block, + STATE(3739), 1, + sym_label, STATE(2527), 2, sym_line_comment, sym_block_comment, - [78568] = 7, + [77632] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1381), 1, - anon_sym_RPAREN, - ACTIONS(5627), 1, - anon_sym_COMMA, - STATE(2986), 1, - aux_sym_parameters_repeat1, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5658), 1, + anon_sym_SEMI, + STATE(498), 1, + sym_block, + STATE(3736), 1, + sym_label, STATE(2528), 2, sym_line_comment, sym_block_comment, - [78592] = 7, + [77658] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(3083), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3136), 1, - sym_trait_bounds, - ACTIONS(5629), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1886), 1, + sym_block, + STATE(3741), 1, + sym_label, STATE(2529), 2, sym_line_comment, sym_block_comment, - [78616] = 7, + [77684] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5631), 1, - anon_sym_RPAREN, - ACTIONS(5633), 1, - anon_sym_COMMA, - STATE(2891), 1, - aux_sym_parameters_repeat1, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, + STATE(2468), 1, + sym_parameters, STATE(2530), 2, sym_line_comment, sym_block_comment, - [78640] = 8, + [77710] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(5080), 1, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(5635), 1, + ACTIONS(5660), 1, anon_sym_SEMI, - STATE(501), 1, + STATE(1284), 1, sym_block, - STATE(3713), 1, + STATE(3739), 1, sym_label, STATE(2531), 2, sym_line_comment, sym_block_comment, - [78666] = 8, + [77736] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(5136), 1, anon_sym_LBRACE, - ACTIONS(5637), 1, + ACTIONS(5662), 1, anon_sym_SEMI, - STATE(1186), 1, + STATE(540), 1, sym_block, - STATE(3716), 1, + STATE(3736), 1, sym_label, STATE(2532), 2, sym_line_comment, sym_block_comment, - [78692] = 8, + [77762] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4592), 1, - anon_sym_COLON_COLON, - ACTIONS(4713), 1, - anon_sym_COLON, - STATE(1999), 1, - sym_type_arguments, - STATE(2543), 1, - sym_trait_bounds, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5664), 1, + anon_sym_SEMI, + STATE(1337), 1, + sym_block, + STATE(3739), 1, + sym_label, STATE(2533), 2, sym_line_comment, sym_block_comment, - [78718] = 8, + [77788] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(5639), 1, - anon_sym_move, - STATE(1405), 1, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5666), 1, + anon_sym_SEMI, + STATE(1351), 1, sym_block, - STATE(3664), 1, + STATE(3739), 1, sym_label, STATE(2534), 2, sym_line_comment, sym_block_comment, - [78744] = 8, + [77814] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4879), 1, - anon_sym_PIPE, - ACTIONS(5641), 1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5668), 1, anon_sym_SEMI, - ACTIONS(5643), 1, - anon_sym_COLON, - ACTIONS(5645), 1, - anon_sym_EQ, - ACTIONS(5647), 1, - anon_sym_else, + STATE(1356), 1, + sym_block, + STATE(3739), 1, + sym_label, STATE(2535), 2, sym_line_comment, sym_block_comment, - [78770] = 8, + [77840] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(5080), 1, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(5649), 1, + ACTIONS(5670), 1, anon_sym_SEMI, - STATE(554), 1, + STATE(1381), 1, sym_block, - STATE(3713), 1, + STATE(3739), 1, sym_label, STATE(2536), 2, sym_line_comment, sym_block_comment, - [78796] = 7, + [77866] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(5653), 1, - anon_sym_STAR, - STATE(2841), 1, - sym_use_list, - ACTIONS(5651), 2, - sym_identifier, - sym_super, + ACTIONS(5672), 1, + anon_sym_SEMI, + STATE(1389), 1, + sym_block, + STATE(3739), 1, + sym_label, STATE(2537), 2, sym_line_comment, sym_block_comment, - [78820] = 4, + [77892] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5674), 1, + anon_sym_SEMI, + STATE(1399), 1, + sym_block, + STATE(3739), 1, + sym_label, STATE(2538), 2, sym_line_comment, sym_block_comment, - ACTIONS(3302), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [78838] = 4, + [77918] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5676), 1, + anon_sym_SEMI, + STATE(1404), 1, + sym_block, + STATE(3739), 1, + sym_label, STATE(2539), 2, sym_line_comment, sym_block_comment, - ACTIONS(5655), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78856] = 8, + [77944] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(5082), 1, - anon_sym_PLUS, - STATE(1839), 1, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5678), 1, + anon_sym_SEMI, + STATE(1408), 1, sym_block, - STATE(3718), 1, + STATE(3739), 1, sym_label, STATE(2540), 2, sym_line_comment, sym_block_comment, - [78882] = 6, + [77970] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5590), 1, - anon_sym_as, - ACTIONS(5657), 1, - anon_sym_COLON_COLON, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5680), 1, + anon_sym_move, + STATE(1778), 1, + sym_block, + STATE(3741), 1, + sym_label, STATE(2541), 2, sym_line_comment, sym_block_comment, - ACTIONS(5586), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [78904] = 4, + [77996] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + ACTIONS(5682), 1, + sym_identifier, + ACTIONS(5684), 1, + anon_sym_GT, + ACTIONS(5686), 1, + anon_sym_COMMA, + STATE(2997), 1, + sym_lifetime, STATE(2542), 2, sym_line_comment, sym_block_comment, - ACTIONS(5659), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78922] = 4, + [78022] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4118), 1, + anon_sym_LPAREN, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + STATE(1697), 1, + sym_parameters, + STATE(2006), 1, + sym_type_arguments, STATE(2543), 2, sym_line_comment, sym_block_comment, - ACTIONS(5661), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78940] = 6, + [78048] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_RBRACK, - ACTIONS(3425), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4576), 2, - anon_sym_PIPE, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5509), 1, + anon_sym_GT, + ACTIONS(5511), 1, anon_sym_COMMA, + STATE(3002), 1, + sym_trait_bounds, + STATE(3003), 1, + aux_sym_type_arguments_repeat1, STATE(2544), 2, sym_line_comment, sym_block_comment, - [78962] = 8, + [78074] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5663), 1, - anon_sym_SEMI, - STATE(588), 1, - sym_block, - STATE(3713), 1, - sym_label, + ACTIONS(5688), 1, + anon_sym_RPAREN, + ACTIONS(5690), 1, + anon_sym_COMMA, + STATE(3005), 1, + aux_sym_parameters_repeat1, + ACTIONS(4626), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2545), 2, sym_line_comment, sym_block_comment, - [78988] = 8, + [78098] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5665), 1, - anon_sym_SEMI, - STATE(682), 1, - sym_block, - STATE(3713), 1, - sym_label, + ACTIONS(5692), 1, + anon_sym_STAR_SLASH, + ACTIONS(5694), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5696), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5698), 1, + sym__block_comment_content, + STATE(3369), 1, + sym__block_doc_comment_marker, STATE(2546), 2, sym_line_comment, sym_block_comment, - [79014] = 7, + [78124] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4208), 1, - anon_sym_LBRACE, - ACTIONS(5298), 1, - anon_sym_STAR, - STATE(2845), 1, - sym_use_list, - ACTIONS(5296), 2, - sym_identifier, - sym_super, + ACTIONS(1367), 1, + anon_sym_RPAREN, + ACTIONS(5700), 1, + anon_sym_COMMA, + STATE(2846), 1, + aux_sym_parameters_repeat1, + ACTIONS(4626), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2547), 2, sym_line_comment, sym_block_comment, - [79038] = 8, + [78148] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5667), 1, - anon_sym_SEMI, - STATE(603), 1, - sym_block, - STATE(3713), 1, - sym_label, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5702), 1, + anon_sym_RPAREN, + ACTIONS(5704), 1, + anon_sym_COLON, + ACTIONS(5706), 1, + anon_sym_COMMA, + STATE(3054), 1, + aux_sym_slice_pattern_repeat1, STATE(2548), 2, sym_line_comment, sym_block_comment, - [79064] = 4, + [78174] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5152), 1, + anon_sym_COLON, + ACTIONS(5396), 1, + anon_sym_GT, + ACTIONS(5398), 1, + anon_sym_COMMA, + STATE(3024), 1, + sym_trait_bounds, + STATE(3025), 1, + aux_sym_type_arguments_repeat1, STATE(2549), 2, sym_line_comment, sym_block_comment, - ACTIONS(5669), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [79082] = 5, + [78200] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5708), 1, + anon_sym_SEMI, + STATE(504), 1, + sym_block, + STATE(3736), 1, + sym_label, STATE(2550), 2, sym_line_comment, sym_block_comment, - ACTIONS(3425), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [79102] = 8, + [78226] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5671), 1, - anon_sym_RPAREN, - ACTIONS(5673), 1, - anon_sym_COLON, - ACTIONS(5675), 1, - anon_sym_COMMA, - STATE(3051), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4274), 1, + anon_sym_LBRACE, + ACTIONS(5712), 1, + anon_sym_STAR, + STATE(2854), 1, + sym_use_list, + ACTIONS(5710), 2, + sym_identifier, + sym_super, STATE(2551), 2, sym_line_comment, sym_block_comment, - [79128] = 6, + [78250] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5497), 1, - anon_sym_RBRACK, - ACTIONS(3768), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4861), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4274), 1, + anon_sym_LBRACE, + ACTIONS(5314), 1, + anon_sym_STAR, + STATE(2861), 1, + sym_use_list, + ACTIONS(5312), 2, + sym_identifier, + sym_super, STATE(2552), 2, sym_line_comment, sym_block_comment, - [79150] = 7, + [78274] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1399), 1, - anon_sym_RPAREN, - ACTIONS(5677), 1, - anon_sym_COMMA, - STATE(2927), 1, - aux_sym_parameters_repeat1, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2553), 2, sym_line_comment, sym_block_comment, - [79174] = 8, + ACTIONS(5714), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78292] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5679), 1, + anon_sym_POUND, + ACTIONS(5716), 1, sym_identifier, - ACTIONS(5681), 1, - anon_sym_GT, - ACTIONS(5683), 1, - anon_sym_COMMA, - STATE(2929), 1, - sym_lifetime, + ACTIONS(5718), 1, + sym_integer_literal, + STATE(1079), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1115), 1, + sym_attribute_item, STATE(2554), 2, sym_line_comment, sym_block_comment, - [79200] = 7, + [78318] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, - anon_sym_PLUS, - ACTIONS(5128), 1, + ACTIONS(5015), 2, anon_sym_COLON, - STATE(3136), 1, - sym_trait_bounds, - ACTIONS(5629), 2, - anon_sym_GT, - anon_sym_COMMA, + anon_sym_PIPE, STATE(2555), 2, sym_line_comment, sym_block_comment, - [79224] = 8, + ACTIONS(3886), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [78338] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5685), 1, - anon_sym_SEMI, - STATE(1233), 1, - sym_block, - STATE(3716), 1, - sym_label, STATE(2556), 2, sym_line_comment, sym_block_comment, - [79250] = 8, + ACTIONS(5720), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78356] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5687), 1, - anon_sym_EQ, - STATE(3124), 1, - sym_type_parameters, - STATE(3697), 1, - sym_where_clause, STATE(2557), 2, sym_line_comment, sym_block_comment, - [79276] = 4, + ACTIONS(5722), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78374] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1359), 1, + anon_sym_RPAREN, + ACTIONS(5724), 1, + anon_sym_COMMA, + STATE(3015), 1, + aux_sym_parameters_repeat1, + ACTIONS(4626), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2558), 2, sym_line_comment, sym_block_comment, - ACTIONS(3538), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [79294] = 4, + [78398] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2559), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3694), 5, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5726), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5728), 1, anon_sym_COLON, + ACTIONS(5730), 1, anon_sym_EQ, - anon_sym_where, - [79312] = 8, + ACTIONS(5732), 1, + anon_sym_else, + STATE(2559), 2, + sym_line_comment, + sym_block_comment, + [78424] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5689), 1, - anon_sym_SEMI, - STATE(535), 1, - sym_block, - STATE(3713), 1, - sym_label, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(3091), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3222), 1, + sym_trait_bounds, + ACTIONS(5606), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2560), 2, sym_line_comment, sym_block_comment, - [79338] = 8, + [78448] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3044), 1, - anon_sym_POUND, - ACTIONS(5691), 1, - sym_identifier, - ACTIONS(5693), 1, - sym_integer_literal, - STATE(1074), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, + ACTIONS(3910), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(2561), 2, sym_line_comment, sym_block_comment, - [79364] = 8, + ACTIONS(4807), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78468] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5695), 1, - anon_sym_SEMI, - STATE(551), 1, - sym_block, - STATE(3713), 1, - sym_label, STATE(2562), 2, sym_line_comment, sym_block_comment, - [79390] = 4, + ACTIONS(5734), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78486] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3776), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(2563), 2, sym_line_comment, sym_block_comment, - ACTIONS(5697), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [79408] = 8, + ACTIONS(4807), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78506] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5080), 1, - anon_sym_LBRACE, - ACTIONS(5699), 1, - anon_sym_SEMI, - STATE(580), 1, - sym_block, - STATE(3713), 1, - sym_label, + ACTIONS(4776), 1, + anon_sym_EQ, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(3099), 1, + sym_trait_bounds, + ACTIONS(4778), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2564), 2, sym_line_comment, sym_block_comment, - [79434] = 7, + [78530] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5276), 1, - anon_sym_LPAREN, - ACTIONS(5278), 1, - anon_sym_LBRACK, - ACTIONS(5282), 1, - anon_sym_LBRACE, - STATE(1433), 1, - sym_delim_token_tree, STATE(2565), 2, sym_line_comment, sym_block_comment, - [79457] = 7, - ACTIONS(19), 1, + ACTIONS(5736), 5, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78548] = 4, 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(3676), 1, - sym_label, STATE(2566), 2, sym_line_comment, sym_block_comment, - [79480] = 7, + ACTIONS(5738), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78566] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - STATE(1655), 1, - sym_parameters, - STATE(1993), 1, - sym_type_arguments, STATE(2567), 2, sym_line_comment, sym_block_comment, - [79503] = 7, + ACTIONS(5740), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78584] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5701), 1, - sym_identifier, - STATE(3659), 1, - sym_type_arguments, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_SEMI, + STATE(603), 1, + sym_block, + STATE(3736), 1, + sym_label, STATE(2568), 2, sym_line_comment, sym_block_comment, - [79526] = 7, + [78610] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5703), 1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5744), 1, anon_sym_SEMI, - STATE(3667), 1, - sym_where_clause, + STATE(659), 1, + sym_block, + STATE(3736), 1, + sym_label, STATE(2569), 2, sym_line_comment, sym_block_comment, - [79549] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78636] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(408), 1, - sym_block, - STATE(3676), 1, - sym_label, + ACTIONS(5746), 1, + anon_sym_RPAREN, + ACTIONS(5749), 1, + anon_sym_COMMA, + STATE(3079), 1, + aux_sym_parameters_repeat1, + ACTIONS(4626), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2570), 2, sym_line_comment, sym_block_comment, - [79572] = 7, + [78660] = 6, 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, - STATE(490), 1, - sym_block, - STATE(3717), 1, - sym_label, + ACTIONS(3518), 1, + anon_sym_PLUS, + ACTIONS(4626), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5752), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2571), 2, sym_line_comment, sym_block_comment, - [79595] = 6, + [78682] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5705), 1, - anon_sym_DQUOTE, - STATE(2794), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5326), 1, + anon_sym_COLON, + ACTIONS(5328), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2572), 2, sym_line_comment, sym_block_comment, - [79616] = 6, + [78706] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5709), 1, - anon_sym_DQUOTE, - STATE(2794), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + ACTIONS(4774), 1, + anon_sym_COLON, + STATE(2006), 1, + sym_type_arguments, + STATE(2567), 1, + sym_trait_bounds, STATE(2573), 2, sym_line_comment, sym_block_comment, - [79637] = 7, + [78732] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5711), 1, - anon_sym_SEMI, - STATE(3494), 1, - sym_where_clause, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5755), 1, + anon_sym_move, + STATE(1452), 1, + sym_block, + STATE(3677), 1, + sym_label, STATE(2574), 2, sym_line_comment, sym_block_comment, - [79660] = 6, + [78758] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - STATE(3659), 1, - sym_type_arguments, - ACTIONS(5296), 2, - sym_identifier, - sym_super, + ACTIONS(5752), 1, + anon_sym_RBRACK, + ACTIONS(3518), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4626), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2575), 2, sym_line_comment, sym_block_comment, - [79681] = 5, + [78780] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5713), 1, - anon_sym_COMMA, - ACTIONS(4228), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2576), 3, + STATE(2576), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [79700] = 7, + ACTIONS(3550), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [78798] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5556), 1, - anon_sym_RPAREN, - ACTIONS(5558), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, STATE(2577), 2, sym_line_comment, sym_block_comment, - [79723] = 7, + ACTIONS(5502), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78816] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5716), 1, - anon_sym_LPAREN, - ACTIONS(5718), 1, - anon_sym_LBRACK, - ACTIONS(5720), 1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(394), 1, - sym_delim_token_tree, + ACTIONS(5757), 1, + anon_sym_SEMI, + STATE(531), 1, + sym_block, + STATE(3736), 1, + sym_label, STATE(2578), 2, sym_line_comment, sym_block_comment, - [79746] = 5, + [78842] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5722), 1, - sym_identifier, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5759), 1, + anon_sym_EQ, + STATE(3150), 1, + sym_type_parameters, + STATE(3718), 1, + sym_where_clause, STATE(2579), 2, sym_line_comment, sym_block_comment, - ACTIONS(5724), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [79765] = 7, + [78868] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5276), 1, - anon_sym_LPAREN, - ACTIONS(5278), 1, - anon_sym_LBRACK, - ACTIONS(5282), 1, - anon_sym_LBRACE, - STATE(1445), 1, - sym_delim_token_tree, + ACTIONS(5039), 1, + anon_sym_LT, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5761), 1, + anon_sym_EQ, + STATE(2934), 1, + sym_type_parameters, + STATE(3526), 1, + sym_where_clause, STATE(2580), 2, sym_line_comment, sym_block_comment, - [79788] = 7, + [78894] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5726), 1, - sym_identifier, - STATE(1595), 1, - sym_type_arguments, + ACTIONS(5551), 1, + anon_sym_RBRACK, + ACTIONS(3886), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(5015), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2581), 2, sym_line_comment, sym_block_comment, - [79811] = 7, + [78916] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(734), 1, - sym_declaration_list, - STATE(3160), 1, - sym_where_clause, + ACTIONS(5763), 1, + anon_sym_SEMI, + STATE(596), 1, + sym_block, + STATE(3736), 1, + sym_label, STATE(2582), 2, sym_line_comment, sym_block_comment, - [79834] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78942] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(319), 1, - sym_block, - STATE(3676), 1, - sym_label, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, + STATE(2081), 1, + sym_parameters, STATE(2583), 2, sym_line_comment, sym_block_comment, - [79857] = 7, + [78968] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(491), 1, + ACTIONS(5142), 1, + anon_sym_LBRACE, + ACTIONS(5765), 1, + anon_sym_SEMI, + STATE(1306), 1, sym_block, - STATE(3717), 1, + STATE(3739), 1, sym_label, STATE(2584), 2, sym_line_comment, sym_block_comment, - [79880] = 7, + [78994] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5728), 1, - anon_sym_SEMI, - STATE(3501), 1, - sym_where_clause, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(3677), 1, + sym_label, + STATE(3717), 1, + sym_block, STATE(2585), 2, sym_line_comment, sym_block_comment, - [79903] = 5, - ACTIONS(3), 1, + [79017] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5730), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4869), 1, + anon_sym_for, + ACTIONS(5767), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym_type_arguments, STATE(2586), 2, sym_line_comment, sym_block_comment, - ACTIONS(5732), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79922] = 6, + [79040] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_DOT_DOT, - ACTIONS(5734), 1, - anon_sym_COLON_COLON, - ACTIONS(4733), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2587), 2, sym_line_comment, sym_block_comment, - [79943] = 5, - ACTIONS(103), 1, + ACTIONS(4414), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [79057] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5736), 1, - anon_sym_COLON_COLON, + ACTIONS(5769), 1, + aux_sym_token_repetition_pattern_token1, STATE(2588), 2, sym_line_comment, sym_block_comment, - ACTIONS(4787), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [79962] = 7, + ACTIONS(5771), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [79076] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5738), 1, - anon_sym_SEMI, - STATE(3721), 1, - sym_where_clause, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5773), 1, + sym_identifier, + ACTIONS(5775), 1, + sym_super, + STATE(2099), 1, + sym_type_arguments, STATE(2589), 2, sym_line_comment, sym_block_comment, - [79985] = 7, + [79099] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1405), 1, - anon_sym_RPAREN, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5570), 1, + ACTIONS(5777), 1, anon_sym_COMMA, - STATE(3006), 1, - aux_sym_parameters_repeat1, - STATE(2590), 2, + ACTIONS(4308), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2590), 3, sym_line_comment, sym_block_comment, - [80008] = 7, + aux_sym_arguments_repeat1, + [79118] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(5740), 1, - anon_sym_SEMI, - STATE(3725), 1, - sym_where_clause, + ACTIONS(5780), 1, + anon_sym_RPAREN, + ACTIONS(5782), 1, + anon_sym_COMMA, + STATE(2971), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2591), 2, sym_line_comment, sym_block_comment, - [80031] = 4, + [79141] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(400), 1, + sym_block, + STATE(3532), 1, + sym_label, STATE(2592), 2, sym_line_comment, sym_block_comment, - ACTIONS(5742), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [80048] = 7, + [79164] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5744), 1, - anon_sym_LPAREN, - ACTIONS(5746), 1, - anon_sym_LBRACK, - ACTIONS(5748), 1, - anon_sym_LBRACE, - STATE(2592), 1, - sym_token_tree, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(399), 1, + sym_block, + STATE(3532), 1, + sym_label, STATE(2593), 2, sym_line_comment, sym_block_comment, - [80071] = 7, - ACTIONS(103), 1, + [79187] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5726), 1, - sym_identifier, - STATE(1615), 1, - sym_type_arguments, + ACTIONS(5784), 1, + aux_sym_token_repetition_pattern_token1, STATE(2594), 2, sym_line_comment, sym_block_comment, - [80094] = 7, + ACTIONS(5786), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [79206] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1329), 1, - sym_declaration_list, - STATE(3421), 1, - sym_where_clause, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5547), 1, + anon_sym_RPAREN, + ACTIONS(5549), 1, + anon_sym_COMMA, + STATE(3079), 1, + aux_sym_parameters_repeat1, STATE(2595), 2, sym_line_comment, sym_block_comment, - [80117] = 7, + [79229] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5752), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5788), 1, + anon_sym_RPAREN, + ACTIONS(5790), 1, + anon_sym_COMMA, + STATE(3114), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2596), 2, sym_line_comment, sym_block_comment, - [80140] = 7, + [79252] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5754), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + ACTIONS(5792), 1, + anon_sym_DQUOTE, + STATE(2779), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5794), 2, + sym_string_content, + sym_escape_sequence, STATE(2597), 2, sym_line_comment, sym_block_comment, - [80163] = 7, + [79273] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5756), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + STATE(1457), 1, + sym_block, + STATE(3677), 1, + sym_label, STATE(2598), 2, sym_line_comment, sym_block_comment, - [80186] = 7, + [79296] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5758), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + STATE(1464), 1, + sym_block, + STATE(3677), 1, + sym_label, STATE(2599), 2, sym_line_comment, sym_block_comment, - [80209] = 7, + [79319] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1734), 1, - sym_block, - STATE(3718), 1, - sym_label, + ACTIONS(5796), 1, + anon_sym_DQUOTE, + STATE(2619), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5794), 2, + sym_string_content, + sym_escape_sequence, STATE(2600), 2, sym_line_comment, sym_block_comment, - [80232] = 7, + [79340] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1603), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(1736), 1, + STATE(2165), 1, sym_block, - STATE(3718), 1, + STATE(3732), 1, sym_label, STATE(2601), 2, sym_line_comment, sym_block_comment, - [80255] = 6, + [79363] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5760), 1, - anon_sym_DQUOTE, - STATE(2611), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(476), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2602), 2, sym_line_comment, sym_block_comment, - [80276] = 7, + [79386] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(483), 1, + STATE(1453), 1, sym_block, - STATE(3717), 1, + STATE(3677), 1, sym_label, STATE(2603), 2, sym_line_comment, sym_block_comment, - [80299] = 5, + [79409] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5762), 1, - anon_sym_COLON_COLON, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(500), 1, + sym_declaration_list, + STATE(3456), 1, + sym_where_clause, STATE(2604), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80318] = 7, + [79432] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1741), 1, - sym_block, - STATE(3718), 1, - sym_label, + ACTIONS(4801), 1, + anon_sym_DOT_DOT, + ACTIONS(5798), 1, + anon_sym_COLON_COLON, + ACTIONS(4803), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2605), 2, sym_line_comment, sym_block_comment, - [80341] = 7, + [79453] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5764), 1, - anon_sym_LPAREN, - ACTIONS(5766), 1, - anon_sym_LBRACK, - ACTIONS(5768), 1, - anon_sym_LBRACE, - STATE(1050), 1, - sym_delim_token_tree, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5800), 1, + anon_sym_SEMI, + STATE(3603), 1, + sym_where_clause, STATE(2606), 2, sym_line_comment, sym_block_comment, - [80364] = 7, + [79476] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5802), 1, + anon_sym_LPAREN, + ACTIONS(5804), 1, + anon_sym_LBRACK, + ACTIONS(5806), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1743), 1, - sym_block, - STATE(3718), 1, - sym_label, + STATE(402), 1, + sym_delim_token_tree, STATE(2607), 2, sym_line_comment, sym_block_comment, - [80387] = 7, + [79499] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1606), 1, - sym_block, - STATE(3718), 1, - sym_label, + ACTIONS(3434), 1, + anon_sym_LT2, + ACTIONS(5312), 1, + sym_super, + ACTIONS(5808), 1, + sym_identifier, + STATE(1488), 1, + sym_type_arguments, STATE(2608), 2, sym_line_comment, sym_block_comment, - [80410] = 5, + [79522] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, + ACTIONS(3434), 1, + anon_sym_LT2, + ACTIONS(3602), 1, anon_sym_COLON_COLON, + ACTIONS(5013), 1, + anon_sym_BANG, + STATE(1123), 1, + sym_type_arguments, STATE(2609), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80429] = 7, + [79545] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1748), 1, - sym_block, - STATE(3718), 1, - sym_label, + ACTIONS(4644), 1, + anon_sym_LT2, + STATE(3605), 1, + sym_type_arguments, + ACTIONS(5775), 2, + sym_identifier, + sym_super, STATE(2610), 2, sym_line_comment, sym_block_comment, - [80452] = 6, + [79566] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5772), 1, - anon_sym_DQUOTE, - STATE(2794), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1486), 1, + sym_block, + STATE(3677), 1, + sym_label, STATE(2611), 2, sym_line_comment, sym_block_comment, - [80473] = 7, + [79589] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5764), 1, + ACTIONS(5334), 1, anon_sym_LPAREN, - ACTIONS(5766), 1, + ACTIONS(5336), 1, anon_sym_LBRACK, - ACTIONS(5768), 1, + ACTIONS(5340), 1, anon_sym_LBRACE, - STATE(1047), 1, + STATE(1487), 1, sym_delim_token_tree, STATE(2612), 2, sym_line_comment, sym_block_comment, - [80496] = 5, + [79612] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5774), 1, - anon_sym_COLON_COLON, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1489), 1, + sym_block, + STATE(3677), 1, + sym_label, STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80515] = 7, + [79635] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5776), 1, - sym_identifier, - ACTIONS(5778), 1, - sym_super, - STATE(2094), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1134), 1, + sym_block, + STATE(3677), 1, + sym_label, STATE(2614), 2, sym_line_comment, sym_block_comment, - [80538] = 7, + [79658] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(5776), 1, - sym_identifier, - ACTIONS(5778), 1, - sym_super, - STATE(2097), 1, + ACTIONS(5767), 1, + anon_sym_COLON_COLON, + ACTIONS(5810), 1, + anon_sym_for, + STATE(2006), 1, sym_type_arguments, STATE(2615), 2, sym_line_comment, sym_block_comment, - [80561] = 7, + [79681] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5780), 1, - sym_identifier, - STATE(3554), 1, + STATE(3759), 1, sym_type_arguments, + ACTIONS(5775), 2, + sym_identifier, + sym_super, STATE(2616), 2, sym_line_comment, sym_block_comment, - [80584] = 7, + [79702] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5780), 1, - sym_identifier, - STATE(3659), 1, - sym_type_arguments, STATE(2617), 2, sym_line_comment, sym_block_comment, - [80607] = 5, - ACTIONS(3), 1, + ACTIONS(5812), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [79719] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5782), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1496), 1, + sym_block, + STATE(3677), 1, + sym_label, STATE(2618), 2, sym_line_comment, sym_block_comment, - ACTIONS(5784), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [80626] = 7, + [79742] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1767), 1, - sym_block, - STATE(3718), 1, - sym_label, + ACTIONS(5814), 1, + anon_sym_DQUOTE, + STATE(2779), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5794), 2, + sym_string_content, + sym_escape_sequence, STATE(2619), 2, sym_line_comment, sym_block_comment, - [80649] = 7, + [79763] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5786), 1, - anon_sym_RPAREN, - ACTIONS(5788), 1, - anon_sym_COMMA, - STATE(2832), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(5334), 1, + anon_sym_LPAREN, + ACTIONS(5336), 1, + anon_sym_LBRACK, + ACTIONS(5340), 1, + anon_sym_LBRACE, + STATE(1497), 1, + sym_delim_token_tree, STATE(2620), 2, sym_line_comment, sym_block_comment, - [80672] = 7, + [79786] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5790), 1, - anon_sym_RBRACK, - ACTIONS(5792), 1, - anon_sym_COMMA, - STATE(2834), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(3434), 1, + anon_sym_LT2, + ACTIONS(5312), 1, + sym_super, + ACTIONS(5816), 1, + sym_identifier, + STATE(1616), 1, + sym_type_arguments, STATE(2621), 2, sym_line_comment, sym_block_comment, - [80695] = 7, + [79809] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(626), 1, - sym_declaration_list, - STATE(3353), 1, + ACTIONS(5818), 1, + anon_sym_SEMI, + STATE(3606), 1, sym_where_clause, STATE(2622), 2, sym_line_comment, sym_block_comment, - [80718] = 7, + [79832] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(752), 1, - sym_declaration_list, - STATE(3317), 1, - sym_where_clause, + ACTIONS(3434), 1, + anon_sym_LT2, + ACTIONS(5312), 1, + sym_super, + ACTIONS(5816), 1, + sym_identifier, + STATE(1609), 1, + sym_type_arguments, STATE(2623), 2, sym_line_comment, sym_block_comment, - [80741] = 7, + [79855] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, + ACTIONS(5616), 1, anon_sym_PIPE, - ACTIONS(5671), 1, + ACTIONS(5820), 1, anon_sym_RPAREN, - ACTIONS(5675), 1, + ACTIONS(5822), 1, anon_sym_COMMA, - STATE(3051), 1, - aux_sym_slice_pattern_repeat1, + STATE(2847), 1, + aux_sym_tuple_pattern_repeat1, STATE(2624), 2, sym_line_comment, sym_block_comment, - [80764] = 7, + [79878] = 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(1409), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5824), 1, + anon_sym_RBRACK, + ACTIONS(5826), 1, + anon_sym_COMMA, + STATE(2849), 1, + aux_sym_slice_pattern_repeat1, STATE(2625), 2, sym_line_comment, sym_block_comment, - [80787] = 7, + [79901] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(5778), 1, + ACTIONS(5775), 1, sym_super, - ACTIONS(5794), 1, + ACTIONS(5828), 1, sym_identifier, - STATE(2094), 1, + STATE(2099), 1, sym_type_arguments, STATE(2626), 2, sym_line_comment, sym_block_comment, - [80810] = 7, + [79924] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1773), 1, - sym_block, - STATE(3718), 1, - sym_label, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5775), 1, + sym_super, + ACTIONS(5828), 1, + sym_identifier, + STATE(2102), 1, + sym_type_arguments, STATE(2627), 2, sym_line_comment, sym_block_comment, - [80833] = 4, + [79947] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5830), 1, + anon_sym_RPAREN, + ACTIONS(5832), 1, + anon_sym_COMMA, + STATE(2855), 1, + aux_sym_tuple_type_repeat1, STATE(2628), 2, sym_line_comment, sym_block_comment, - ACTIONS(969), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [80850] = 4, + [79970] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5767), 1, + anon_sym_COLON_COLON, + ACTIONS(5834), 1, + anon_sym_for, + STATE(2006), 1, + sym_type_arguments, STATE(2629), 2, sym_line_comment, sym_block_comment, - ACTIONS(4328), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [80867] = 7, + [79993] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5328), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2630), 2, + sym_line_comment, + sym_block_comment, + [80014] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(5778), 1, + ACTIONS(5312), 1, sym_super, - ACTIONS(5794), 1, + ACTIONS(5836), 1, sym_identifier, - STATE(2097), 1, + STATE(3605), 1, sym_type_arguments, - STATE(2630), 2, - sym_line_comment, - sym_block_comment, - [80890] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5354), 1, - anon_sym_PLUS, STATE(2631), 2, sym_line_comment, sym_block_comment, - ACTIONS(5796), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [80909] = 7, + [80037] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5798), 1, - anon_sym_RPAREN, - ACTIONS(5800), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(3426), 1, + anon_sym_LPAREN, + ACTIONS(4644), 1, + anon_sym_LT2, + STATE(1155), 1, + sym_parameters, + STATE(2008), 1, + sym_type_arguments, STATE(2632), 2, sym_line_comment, sym_block_comment, - [80932] = 6, + [80060] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5802), 1, - anon_sym_DQUOTE, - STATE(2638), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5312), 1, + sym_super, + ACTIONS(5836), 1, + sym_identifier, + STATE(3759), 1, + sym_type_arguments, STATE(2633), 2, sym_line_comment, sym_block_comment, - [80953] = 7, + [80083] = 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(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(1778), 1, + STATE(3609), 1, sym_block, - STATE(3718), 1, + STATE(3677), 1, sym_label, STATE(2634), 2, sym_line_comment, sym_block_comment, - [80976] = 6, + [80106] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5804), 1, - anon_sym_DQUOTE, - STATE(2572), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5394), 1, + anon_sym_LBRACE, + STATE(1158), 1, + sym_enum_variant_list, + STATE(3214), 1, + sym_where_clause, STATE(2635), 2, sym_line_comment, sym_block_comment, - [80997] = 7, + [80129] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(5806), 1, + ACTIONS(5767), 1, anon_sym_COLON_COLON, - ACTIONS(5808), 1, + ACTIONS(5838), 1, anon_sym_for, - STATE(1999), 1, + STATE(2006), 1, sym_type_arguments, STATE(2636), 2, sym_line_comment, sym_block_comment, - [81020] = 7, + [80152] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5810), 1, - anon_sym_LPAREN, - ACTIONS(5812), 1, - anon_sym_LBRACK, - ACTIONS(5814), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, anon_sym_LBRACE, - STATE(1783), 1, - sym_delim_token_tree, + STATE(1171), 1, + sym_declaration_list, + STATE(3457), 1, + sym_where_clause, STATE(2637), 2, sym_line_comment, sym_block_comment, - [81043] = 6, + [80175] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5816), 1, - anon_sym_DQUOTE, - STATE(2794), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(398), 1, + sym_block, + STATE(3532), 1, + sym_label, STATE(2638), 2, sym_line_comment, sym_block_comment, - [81064] = 7, + [80198] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5810), 1, - anon_sym_LPAREN, - ACTIONS(5812), 1, - anon_sym_LBRACK, - ACTIONS(5814), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - STATE(1786), 1, - sym_delim_token_tree, + ACTIONS(5041), 1, + anon_sym_where, + STATE(1177), 1, + sym_field_declaration_list, + STATE(3186), 1, + sym_where_clause, STATE(2639), 2, sym_line_comment, sym_block_comment, - [81087] = 7, + [80221] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5818), 1, - anon_sym_SEMI, - STATE(3515), 1, - sym_where_clause, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5775), 1, + sym_super, + ACTIONS(5836), 1, + sym_identifier, + STATE(3605), 1, + sym_type_arguments, STATE(2640), 2, sym_line_comment, sym_block_comment, - [81110] = 7, + [80244] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5820), 1, - sym_identifier, - STATE(2094), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1451), 1, + sym_block, + STATE(3677), 1, + sym_label, STATE(2641), 2, sym_line_comment, sym_block_comment, - [81133] = 7, + [80267] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5820), 1, - sym_identifier, - STATE(2097), 1, - sym_type_arguments, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5702), 1, + anon_sym_RPAREN, + ACTIONS(5706), 1, + anon_sym_COMMA, + STATE(3054), 1, + aux_sym_slice_pattern_repeat1, STATE(2642), 2, sym_line_comment, sym_block_comment, - [81156] = 7, + [80290] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5780), 1, - sym_identifier, - STATE(3554), 1, - sym_type_arguments, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(567), 1, + sym_declaration_list, + STATE(3166), 1, + sym_where_clause, STATE(2643), 2, sym_line_comment, sym_block_comment, - [81179] = 7, + [80313] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5780), 1, + ACTIONS(5773), 1, sym_identifier, - STATE(3659), 1, + ACTIONS(5775), 1, + sym_super, + STATE(2102), 1, sym_type_arguments, STATE(2644), 2, sym_line_comment, sym_block_comment, - [81202] = 7, + [80336] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5822), 1, - sym_identifier, - STATE(3554), 1, + STATE(3605), 1, sym_type_arguments, + ACTIONS(5840), 2, + sym_identifier, + sym_super, STATE(2645), 2, sym_line_comment, sym_block_comment, - [81225] = 5, + [80357] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5354), 1, - anon_sym_PLUS, + ACTIONS(4644), 1, + anon_sym_LT2, + STATE(3759), 1, + sym_type_arguments, + ACTIONS(5840), 2, + sym_identifier, + sym_super, STATE(2646), 2, sym_line_comment, sym_block_comment, - ACTIONS(5824), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [81244] = 7, + [80378] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(651), 1, - sym_field_declaration_list, - STATE(3169), 1, - sym_where_clause, + ACTIONS(5600), 1, + anon_sym_COLON, + ACTIONS(5602), 1, + anon_sym_PIPE, + ACTIONS(5604), 1, + anon_sym_COMMA, + STATE(3083), 1, + aux_sym_closure_parameters_repeat1, STATE(2647), 2, sym_line_comment, sym_block_comment, - [81267] = 7, + [80401] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5826), 1, - anon_sym_SEMI, - STATE(3590), 1, - sym_where_clause, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5842), 1, + anon_sym_RPAREN, + ACTIONS(5844), 1, + anon_sym_COMMA, + STATE(2900), 1, + aux_sym_slice_pattern_repeat1, STATE(2648), 2, sym_line_comment, sym_block_comment, - [81290] = 5, + [80424] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, + ACTIONS(5616), 1, anon_sym_PIPE, + ACTIONS(5846), 1, + anon_sym_RPAREN, + ACTIONS(5848), 1, + anon_sym_COMMA, + STATE(2902), 1, + aux_sym_slice_pattern_repeat1, STATE(2649), 2, sym_line_comment, sym_block_comment, - ACTIONS(5828), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [81309] = 6, + [80447] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5830), 1, - anon_sym_DQUOTE, - STATE(2652), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5400), 1, + anon_sym_LBRACE, + STATE(701), 1, + sym_enum_variant_list, + STATE(3426), 1, + sym_where_clause, STATE(2650), 2, sym_line_comment, sym_block_comment, - [81330] = 7, + [80470] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(775), 1, - sym_field_declaration_list, - STATE(3383), 1, - sym_where_clause, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5646), 1, + anon_sym_RPAREN, + ACTIONS(5648), 1, + anon_sym_COMMA, + STATE(2906), 1, + aux_sym_parameters_repeat1, STATE(2651), 2, sym_line_comment, sym_block_comment, - [81353] = 6, + [80493] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, - anon_sym_DQUOTE, - STATE(2794), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3188), 1, + anon_sym_PLUS, STATE(2652), 2, sym_line_comment, sym_block_comment, - [81374] = 7, + ACTIONS(5850), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [80512] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, - anon_sym_LPAREN, - ACTIONS(4574), 1, - anon_sym_LT2, - STATE(1138), 1, - sym_parameters, - STATE(1993), 1, - sym_type_arguments, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5852), 1, + anon_sym_SEMI, + ACTIONS(5854), 1, + anon_sym_EQ, + ACTIONS(5856), 1, + anon_sym_else, STATE(2653), 2, sym_line_comment, sym_block_comment, - [81397] = 7, + [80535] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5834), 1, - sym_identifier, - STATE(3554), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(3519), 1, + sym_block, + STATE(3677), 1, + sym_label, STATE(2654), 2, sym_line_comment, sym_block_comment, - [81420] = 7, + [80558] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5834), 1, - sym_identifier, - STATE(3659), 1, - sym_type_arguments, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(1219), 1, + sym_declaration_list, + STATE(3197), 1, + sym_where_clause, STATE(2655), 2, sym_line_comment, sym_block_comment, - [81443] = 5, + [80581] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5836), 1, - anon_sym_COMMA, - ACTIONS(5828), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2656), 3, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5858), 1, + anon_sym_SEMI, + STATE(3699), 1, + sym_where_clause, + STATE(2656), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [81462] = 4, + [80604] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(1230), 1, + sym_declaration_list, + STATE(3202), 1, + sym_where_clause, STATE(2657), 2, sym_line_comment, sym_block_comment, - ACTIONS(3302), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [81479] = 7, + [80627] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5839), 1, - sym_identifier, - STATE(1476), 1, - sym_type_arguments, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(3363), 1, + sym_trait_bounds, + ACTIONS(5652), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2658), 2, sym_line_comment, sym_block_comment, - [81502] = 7, + [80648] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5822), 1, - sym_identifier, - STATE(3659), 1, - sym_type_arguments, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5394), 1, + anon_sym_LBRACE, + STATE(1235), 1, + sym_enum_variant_list, + STATE(3218), 1, + sym_where_clause, STATE(2659), 2, sym_line_comment, sym_block_comment, - [81525] = 7, + [80671] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5841), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5860), 1, + anon_sym_SEMI, + STATE(3745), 1, + sym_where_clause, STATE(2660), 2, sym_line_comment, sym_block_comment, - [81548] = 7, + [80694] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5843), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + ACTIONS(5037), 1, + anon_sym_LBRACE, + ACTIONS(5041), 1, + anon_sym_where, + STATE(1241), 1, + sym_field_declaration_list, + STATE(3229), 1, + sym_where_clause, STATE(2661), 2, sym_line_comment, sym_block_comment, - [81571] = 5, - ACTIONS(3), 1, + [80717] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5845), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5862), 1, + anon_sym_SEMI, + STATE(3747), 1, + sym_where_clause, STATE(2662), 2, sym_line_comment, sym_block_comment, - ACTIONS(5847), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81590] = 7, + [80740] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1262), 1, - sym_declaration_list, - STATE(3342), 1, - sym_where_clause, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1499), 1, + sym_block, + STATE(3677), 1, + sym_label, STATE(2663), 2, sym_line_comment, sym_block_comment, - [81613] = 5, + [80763] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5400), 1, + anon_sym_LBRACE, + STATE(574), 1, + sym_enum_variant_list, + STATE(3399), 1, + sym_where_clause, STATE(2664), 2, sym_line_comment, sym_block_comment, - ACTIONS(5849), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [81632] = 6, + [80786] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - STATE(3659), 1, - sym_type_arguments, - ACTIONS(5778), 2, - sym_identifier, - sym_super, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(638), 1, + sym_declaration_list, + STATE(3449), 1, + sym_where_clause, STATE(2665), 2, sym_line_comment, sym_block_comment, - [81653] = 7, + [80809] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5440), 1, - anon_sym_LBRACE, - STATE(1141), 1, - sym_enum_variant_list, - STATE(3184), 1, - sym_where_clause, + ACTIONS(1355), 1, + anon_sym_RPAREN, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5654), 1, + anon_sym_COMMA, + STATE(2935), 1, + aux_sym_parameters_repeat1, STATE(2666), 2, sym_line_comment, sym_block_comment, - [81676] = 7, + [80832] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5851), 1, - anon_sym_RPAREN, - ACTIONS(5853), 1, - anon_sym_COMMA, - STATE(2866), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + ACTIONS(5864), 1, + sym_identifier, + ACTIONS(5866), 1, + anon_sym_GT, + STATE(3278), 1, + sym_lifetime, STATE(2667), 2, sym_line_comment, sym_block_comment, - [81699] = 7, + [80855] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5834), 1, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + ACTIONS(5864), 1, sym_identifier, - STATE(3554), 1, - sym_type_arguments, + ACTIONS(5868), 1, + anon_sym_GT, + STATE(3278), 1, + sym_lifetime, STATE(2668), 2, sym_line_comment, sym_block_comment, - [81722] = 7, + [80878] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5834), 1, - sym_identifier, - STATE(3659), 1, - sym_type_arguments, + ACTIONS(3230), 1, + anon_sym_PLUS, STATE(2669), 2, sym_line_comment, sym_block_comment, - [81745] = 7, + ACTIONS(5870), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [80897] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - ACTIONS(3572), 1, - anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_BANG, - STATE(1106), 1, - sym_type_arguments, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5872), 1, + anon_sym_SEMI, + ACTIONS(5874), 1, + anon_sym_EQ, + ACTIONS(5876), 1, + anon_sym_else, STATE(2670), 2, sym_line_comment, sym_block_comment, - [81768] = 5, + [80920] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5855), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5878), 1, + anon_sym_SEMI, + STATE(3724), 1, + sym_where_clause, STATE(2671), 2, sym_line_comment, sym_block_comment, - [81787] = 7, + [80943] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5839), 1, - sym_identifier, - STATE(1459), 1, - sym_type_arguments, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5880), 1, + anon_sym_SEMI, + STATE(3752), 1, + sym_where_clause, STATE(2672), 2, sym_line_comment, sym_block_comment, - [81810] = 7, + [80966] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(5857), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5882), 1, anon_sym_SEMI, - STATE(3736), 1, + STATE(3761), 1, sym_where_clause, STATE(2673), 2, sym_line_comment, sym_block_comment, - [81833] = 7, + [80989] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4799), 1, - anon_sym_for, - ACTIONS(5806), 1, - anon_sym_COLON_COLON, - STATE(1999), 1, - sym_type_arguments, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(1279), 1, + sym_declaration_list, + STATE(3314), 1, + sym_where_clause, STATE(2674), 2, sym_line_comment, sym_block_comment, - [81856] = 7, + [81012] = 7, 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, - STATE(1993), 1, - sym_type_arguments, - STATE(2002), 1, - sym_parameters, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5884), 1, + anon_sym_SEMI, + STATE(3487), 1, + sym_where_clause, STATE(2675), 2, sym_line_comment, sym_block_comment, - [81879] = 7, + [81035] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3518), 1, - sym_block, - STATE(3664), 1, - sym_label, + STATE(1293), 1, + sym_declaration_list, + STATE(3327), 1, + sym_where_clause, STATE(2676), 2, sym_line_comment, sym_block_comment, - [81902] = 7, - ACTIONS(103), 1, + [81058] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1154), 1, - sym_declaration_list, - STATE(3246), 1, - sym_where_clause, + ACTIONS(5886), 1, + aux_sym_token_repetition_pattern_token1, STATE(2677), 2, sym_line_comment, sym_block_comment, - [81925] = 7, + ACTIONS(5888), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [81077] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3532), 1, - sym_block, - STATE(3664), 1, - sym_label, + STATE(730), 1, + sym_declaration_list, + STATE(3313), 1, + sym_where_clause, STATE(2678), 2, sym_line_comment, sym_block_comment, - [81948] = 7, + [81100] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(2246), 1, - sym_parameters, - STATE(3138), 1, - sym_type_parameters, STATE(2679), 2, sym_line_comment, sym_block_comment, - [81971] = 7, + ACTIONS(1019), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [81117] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1160), 1, - sym_field_declaration_list, - STATE(3292), 1, - sym_where_clause, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + ACTIONS(5864), 1, + sym_identifier, + ACTIONS(5890), 1, + anon_sym_GT, + STATE(3278), 1, + sym_lifetime, STATE(2680), 2, sym_line_comment, sym_block_comment, - [81994] = 7, + [81140] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5550), 1, - anon_sym_COLON, - ACTIONS(5552), 1, - anon_sym_PIPE, - ACTIONS(5554), 1, - anon_sym_COMMA, - STATE(3003), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + ACTIONS(5864), 1, + sym_identifier, + ACTIONS(5892), 1, + anon_sym_GT, + STATE(3278), 1, + sym_lifetime, STATE(2681), 2, sym_line_comment, sym_block_comment, - [82017] = 7, + [81163] = 5, 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(3429), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5894), 1, + anon_sym_COLON_COLON, STATE(2682), 2, sym_line_comment, sym_block_comment, - [82040] = 6, + ACTIONS(4845), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81182] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5210), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5896), 1, + anon_sym_SEMI, + STATE(3545), 1, + sym_where_clause, STATE(2683), 2, sym_line_comment, sym_block_comment, - [82061] = 7, + [81205] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5385), 1, - anon_sym_LBRACE, - STATE(728), 1, - sym_enum_variant_list, - STATE(3201), 1, - sym_where_clause, + ACTIONS(5898), 1, + anon_sym_COLON_COLON, STATE(2684), 2, sym_line_comment, sym_block_comment, - [82084] = 7, + ACTIONS(4831), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5859), 1, - anon_sym_SEMI, - STATE(3711), 1, - sym_where_clause, + ACTIONS(5900), 1, + anon_sym_COLON_COLON, STATE(2685), 2, sym_line_comment, sym_block_comment, - [82107] = 6, + ACTIONS(4831), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(3136), 1, - sym_trait_bounds, - ACTIONS(5629), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5902), 1, + anon_sym_COLON_COLON, STATE(2686), 2, sym_line_comment, sym_block_comment, - [82128] = 7, + ACTIONS(4831), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81262] = 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(1406), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5904), 1, + anon_sym_SEMI, + STATE(3571), 1, + sym_where_clause, STATE(2687), 2, sym_line_comment, sym_block_comment, - [82151] = 7, + [81285] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(2296), 1, - sym_parameters, - STATE(3318), 1, - sym_type_parameters, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5906), 1, + anon_sym_SEMI, + STATE(3572), 1, + sym_where_clause, STATE(2688), 2, sym_line_comment, sym_block_comment, - [82174] = 7, + [81308] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5822), 1, - sym_identifier, - STATE(3659), 1, - sym_type_arguments, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(1346), 1, + sym_declaration_list, + STATE(3371), 1, + sym_where_clause, STATE(2689), 2, sym_line_comment, sym_block_comment, - [82197] = 7, + [81331] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5861), 1, - anon_sym_SEMI, - STATE(3604), 1, - sym_where_clause, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(3677), 1, + sym_label, + STATE(3770), 1, + sym_block, STATE(2690), 2, sym_line_comment, sym_block_comment, - [82220] = 5, + [81354] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5863), 1, - anon_sym_in, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(580), 1, + sym_field_declaration_list, + STATE(3279), 1, + sym_where_clause, STATE(2691), 2, sym_line_comment, sym_block_comment, - ACTIONS(5865), 3, - sym_self, - sym_super, - sym_crate, - [82239] = 7, + [81377] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1432), 1, - sym_block, - STATE(3664), 1, - sym_label, + STATE(654), 1, + sym_declaration_list, + STATE(3324), 1, + sym_where_clause, STATE(2692), 2, sym_line_comment, sym_block_comment, - [82262] = 7, + [81400] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(5867), 1, + ACTIONS(5908), 1, anon_sym_SEMI, - STATE(3500), 1, - sym_where_clause, + ACTIONS(5910), 1, + anon_sym_EQ, + ACTIONS(5912), 1, + anon_sym_else, STATE(2693), 2, sym_line_comment, sym_block_comment, - [82285] = 7, + [81423] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5869), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(736), 1, + sym_field_declaration_list, + STATE(3248), 1, + sym_where_clause, STATE(2694), 2, sym_line_comment, sym_block_comment, - [82308] = 7, + [81446] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5871), 1, - anon_sym_LBRACE, - ACTIONS(5873), 1, - anon_sym_for, - ACTIONS(5875), 1, - anon_sym_loop, - ACTIONS(5877), 1, - anon_sym_while, + ACTIONS(3188), 1, + anon_sym_PLUS, STATE(2695), 2, sym_line_comment, sym_block_comment, - [82331] = 7, + ACTIONS(5914), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [81465] = 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(1408), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5916), 1, + anon_sym_SEMI, + STATE(3614), 1, + sym_where_clause, STATE(2696), 2, sym_line_comment, sym_block_comment, - [82354] = 7, + [81488] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5716), 1, - anon_sym_LPAREN, - ACTIONS(5718), 1, - anon_sym_LBRACK, - ACTIONS(5720), 1, - anon_sym_LBRACE, - STATE(401), 1, - sym_delim_token_tree, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5918), 1, + anon_sym_RPAREN, + ACTIONS(5920), 1, + anon_sym_COMMA, + STATE(3067), 1, + aux_sym_slice_pattern_repeat1, STATE(2697), 2, sym_line_comment, sym_block_comment, - [82377] = 7, + [81511] = 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(3460), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2008), 1, + sym_type_arguments, + STATE(2470), 1, + sym_parameters, STATE(2698), 2, sym_line_comment, sym_block_comment, - [82400] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [81534] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(397), 1, - sym_block, - STATE(3676), 1, - sym_label, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(2283), 1, + sym_parameters, + STATE(3360), 1, + sym_type_parameters, STATE(2699), 2, sym_line_comment, sym_block_comment, - [82423] = 7, + [81557] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5775), 1, + sym_super, + ACTIONS(5836), 1, sym_identifier, - ACTIONS(5879), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + STATE(3759), 1, + sym_type_arguments, STATE(2700), 2, sym_line_comment, sym_block_comment, - [82446] = 7, + [81580] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5881), 1, + ACTIONS(1369), 1, anon_sym_LBRACE, - ACTIONS(5883), 1, - anon_sym_for, - ACTIONS(5885), 1, - anon_sym_loop, - ACTIONS(5887), 1, - anon_sym_while, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(485), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2701), 2, sym_line_comment, sym_block_comment, - [82469] = 7, + [81603] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5889), 1, - anon_sym_SEMI, - ACTIONS(5891), 1, - anon_sym_EQ, - ACTIONS(5893), 1, - anon_sym_else, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(490), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2702), 2, sym_line_comment, sym_block_comment, - [82492] = 7, + [81626] = 6, 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(1481), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5922), 1, + anon_sym_DQUOTE, + STATE(2715), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5794), 2, + sym_string_content, + sym_escape_sequence, STATE(2703), 2, sym_line_comment, sym_block_comment, - [82515] = 7, + [81647] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5895), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(2275), 1, + sym_parameters, + STATE(3200), 1, + sym_type_parameters, STATE(2704), 2, sym_line_comment, sym_block_comment, - [82538] = 7, + [81670] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5897), 1, - anon_sym_SEMI, - ACTIONS(5899), 1, - anon_sym_EQ, - ACTIONS(5901), 1, - anon_sym_else, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACE, + STATE(3035), 1, + sym_block, + STATE(3739), 1, + sym_label, STATE(2705), 2, sym_line_comment, sym_block_comment, - [82561] = 5, + [81693] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1781), 1, + sym_block, + STATE(3741), 1, + sym_label, STATE(2706), 2, sym_line_comment, sym_block_comment, - ACTIONS(5903), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [82580] = 7, + [81716] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - ACTIONS(5905), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + ACTIONS(4124), 1, + anon_sym_LT2, + ACTIONS(4290), 1, + anon_sym_COLON_COLON, + ACTIONS(4955), 1, + anon_sym_BANG, + STATE(1643), 1, + sym_type_arguments, STATE(2707), 2, sym_line_comment, sym_block_comment, - [82603] = 7, + [81739] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5806), 1, - anon_sym_COLON_COLON, - ACTIONS(5907), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5924), 1, + anon_sym_RBRACK, + ACTIONS(5926), 1, + anon_sym_COMMA, + STATE(3133), 1, + aux_sym_slice_pattern_repeat1, STATE(2708), 2, sym_line_comment, sym_block_comment, - [82626] = 7, + [81762] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5701), 1, - sym_identifier, - STATE(3554), 1, - sym_type_arguments, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(474), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2709), 2, sym_line_comment, sym_block_comment, - [82649] = 7, + [81785] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(638), 1, - sym_declaration_list, - STATE(3289), 1, - sym_where_clause, + ACTIONS(4626), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5928), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2710), 2, sym_line_comment, sym_block_comment, - [82672] = 7, + [81804] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5909), 1, - anon_sym_SEMI, - ACTIONS(5911), 1, - anon_sym_EQ, - ACTIONS(5913), 1, - anon_sym_else, + ACTIONS(5930), 1, + anon_sym_LPAREN, + ACTIONS(5932), 1, + anon_sym_LBRACK, + ACTIONS(5934), 1, + anon_sym_LBRACE, + STATE(2020), 1, + sym_delim_token_tree, STATE(2711), 2, sym_line_comment, sym_block_comment, - [82695] = 5, + [81827] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4576), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5915), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(475), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2712), 2, sym_line_comment, sym_block_comment, - [82714] = 7, + [81850] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(2289), 1, - sym_parameters, - STATE(3346), 1, - sym_type_parameters, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(459), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2713), 2, sym_line_comment, sym_block_comment, - [82737] = 4, + [81873] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(478), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2714), 2, sym_line_comment, sym_block_comment, - ACTIONS(973), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [82754] = 6, + [81896] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5332), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5936), 1, + anon_sym_DQUOTE, + STATE(2779), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5794), 2, + sym_string_content, + sym_escape_sequence, STATE(2715), 2, sym_line_comment, sym_block_comment, - [82775] = 5, + [81917] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5736), 1, - anon_sym_COLON_COLON, + ACTIONS(5930), 1, + anon_sym_LPAREN, + ACTIONS(5932), 1, + anon_sym_LBRACK, + ACTIONS(5934), 1, + anon_sym_LBRACE, + STATE(2022), 1, + sym_delim_token_tree, STATE(2716), 2, sym_line_comment, sym_block_comment, - ACTIONS(4817), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82794] = 6, + [81940] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4124), 1, anon_sym_LT2, - STATE(3554), 1, - sym_type_arguments, - ACTIONS(5917), 2, + ACTIONS(5938), 1, sym_identifier, + ACTIONS(5940), 1, sym_super, + STATE(1633), 1, + sym_type_arguments, STATE(2717), 2, sym_line_comment, sym_block_comment, - [82815] = 6, + [81963] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4124), 1, anon_sym_LT2, - STATE(3659), 1, - sym_type_arguments, - ACTIONS(5917), 2, + ACTIONS(5938), 1, sym_identifier, + ACTIONS(5940), 1, sym_super, + STATE(1636), 1, + sym_type_arguments, STATE(2718), 2, sym_line_comment, sym_block_comment, - [82836] = 5, + [81986] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5919), 1, + ACTIONS(4626), 2, anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5942), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2719), 2, sym_line_comment, sym_block_comment, - ACTIONS(4879), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [82855] = 7, + [82005] = 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(1410), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5840), 1, + sym_super, + ACTIONS(5944), 1, + sym_identifier, + ACTIONS(5946), 1, + anon_sym_LT2, + STATE(2561), 1, + sym_type_arguments, STATE(2720), 2, sym_line_comment, sym_block_comment, - [82878] = 7, + [82028] = 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(1435), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5840), 1, + sym_super, + ACTIONS(5944), 1, + sym_identifier, + ACTIONS(5946), 1, + anon_sym_LT2, + STATE(2563), 1, + sym_type_arguments, STATE(2721), 2, sym_line_comment, sym_block_comment, - [82901] = 6, + [82051] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5921), 1, - anon_sym_DQUOTE, - STATE(2573), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5948), 1, + anon_sym_RPAREN, + ACTIONS(5950), 1, + anon_sym_COMMA, + STATE(2993), 1, + aux_sym_tuple_type_repeat1, STATE(2722), 2, sym_line_comment, sym_block_comment, - [82922] = 7, + [82074] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(2245), 1, - sym_parameters, - STATE(3227), 1, - sym_type_parameters, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(678), 1, + sym_declaration_list, + STATE(3359), 1, + sym_where_clause, STATE(2723), 2, sym_line_comment, sym_block_comment, - [82945] = 7, + [82097] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5923), 1, - anon_sym_RPAREN, - ACTIONS(5925), 1, - anon_sym_COMMA, - STATE(2885), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5312), 1, + sym_super, + ACTIONS(5773), 1, + sym_identifier, + STATE(3605), 1, + sym_type_arguments, STATE(2724), 2, sym_line_comment, sym_block_comment, - [82968] = 7, + [82120] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1381), 1, - anon_sym_RPAREN, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5627), 1, - anon_sym_COMMA, - STATE(2986), 1, - aux_sym_parameters_repeat1, + ACTIONS(4118), 1, + anon_sym_LPAREN, + ACTIONS(4644), 1, + anon_sym_LT2, + STATE(1698), 1, + sym_parameters, + STATE(2008), 1, + sym_type_arguments, STATE(2725), 2, sym_line_comment, sym_block_comment, - [82991] = 5, + [82143] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5736), 1, - anon_sym_COLON_COLON, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5312), 1, + sym_super, + ACTIONS(5773), 1, + sym_identifier, + STATE(3759), 1, + sym_type_arguments, STATE(2726), 2, sym_line_comment, sym_block_comment, - ACTIONS(4841), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83010] = 5, + [82166] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5762), 1, - anon_sym_COLON_COLON, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(403), 1, + sym_block, + STATE(3532), 1, + sym_label, STATE(2727), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83029] = 7, + [82189] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1369), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(3577), 1, + STATE(470), 1, sym_block, - STATE(3664), 1, + STATE(3740), 1, sym_label, STATE(2728), 2, sym_line_comment, sym_block_comment, - [83052] = 7, + [82212] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5927), 1, - anon_sym_SEMI, - STATE(3572), 1, - sym_where_clause, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(3677), 1, + sym_label, + STATE(3701), 1, + sym_block, STATE(2729), 2, sym_line_comment, sym_block_comment, - [83075] = 7, + [82235] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5929), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5688), 1, anon_sym_RPAREN, - ACTIONS(5931), 1, + ACTIONS(5690), 1, anon_sym_COMMA, - STATE(2888), 1, - aux_sym_slice_pattern_repeat1, + STATE(3005), 1, + aux_sym_parameters_repeat1, STATE(2730), 2, sym_line_comment, sym_block_comment, - [83098] = 7, + [82258] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5933), 1, - anon_sym_SEMI, - STATE(3575), 1, - sym_where_clause, + ACTIONS(5952), 1, + anon_sym_DQUOTE, + STATE(2597), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5794), 2, + sym_string_content, + sym_escape_sequence, STATE(2731), 2, sym_line_comment, sym_block_comment, - [83121] = 5, + [82279] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, - anon_sym_COLON_COLON, + ACTIONS(5954), 1, + sym_identifier, STATE(2732), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83140] = 5, + ACTIONS(5956), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [82298] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5774), 1, - anon_sym_COLON_COLON, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(489), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2733), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83159] = 7, - ACTIONS(103), 1, + [82321] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5631), 1, - anon_sym_RPAREN, - ACTIONS(5633), 1, - anon_sym_COMMA, - STATE(2891), 1, - aux_sym_parameters_repeat1, + ACTIONS(5958), 1, + aux_sym_token_repetition_pattern_token1, STATE(2734), 2, sym_line_comment, sym_block_comment, - [83182] = 7, + ACTIONS(5960), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [82340] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(2262), 1, - sym_parameters, - STATE(3360), 1, - sym_type_parameters, + ACTIONS(1367), 1, + anon_sym_RPAREN, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5700), 1, + anon_sym_COMMA, + STATE(2846), 1, + aux_sym_parameters_repeat1, STATE(2735), 2, sym_line_comment, sym_block_comment, - [83205] = 7, + [82363] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3060), 1, anon_sym_SQUOTE, - STATE(486), 1, - sym_block, - STATE(3717), 1, - sym_label, + ACTIONS(5864), 1, + sym_identifier, + ACTIONS(5962), 1, + anon_sym_GT, + STATE(3278), 1, + sym_lifetime, STATE(2736), 2, sym_line_comment, sym_block_comment, - [83228] = 7, + [82386] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3060), 1, anon_sym_SQUOTE, - STATE(474), 1, - sym_block, - STATE(3717), 1, - sym_label, + ACTIONS(5864), 1, + sym_identifier, + ACTIONS(5964), 1, + anon_sym_GT, + STATE(3278), 1, + sym_lifetime, STATE(2737), 2, sym_line_comment, sym_block_comment, - [83251] = 6, + [82409] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5935), 1, - anon_sym_DQUOTE, - STATE(2804), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5966), 1, + anon_sym_LPAREN, + ACTIONS(5968), 1, + anon_sym_LBRACK, + ACTIONS(5970), 1, + anon_sym_LBRACE, + STATE(2617), 1, + sym_token_tree, STATE(2738), 2, sym_line_comment, sym_block_comment, - [83272] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82432] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3060), 1, anon_sym_SQUOTE, - STATE(400), 1, - sym_block, - STATE(3676), 1, - sym_label, + ACTIONS(5864), 1, + sym_identifier, + ACTIONS(5972), 1, + anon_sym_GT, + STATE(3278), 1, + sym_lifetime, STATE(2739), 2, sym_line_comment, sym_block_comment, - [83295] = 7, + [82455] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3060), 1, anon_sym_SQUOTE, - STATE(3479), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(5864), 1, + sym_identifier, + ACTIONS(5974), 1, + anon_sym_GT, + STATE(3278), 1, + sym_lifetime, STATE(2740), 2, sym_line_comment, sym_block_comment, - [83318] = 7, + [82478] = 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(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(3424), 1, + STATE(1780), 1, sym_block, - STATE(3664), 1, + STATE(3741), 1, sym_label, STATE(2741), 2, sym_line_comment, sym_block_comment, - [83341] = 7, + [82501] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - ACTIONS(5124), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - STATE(3035), 1, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1782), 1, sym_block, - STATE(3716), 1, + STATE(3741), 1, sym_label, STATE(2742), 2, sym_line_comment, sym_block_comment, - [83364] = 7, + [82524] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(1735), 1, - sym_block, - STATE(3718), 1, - sym_label, + ACTIONS(5976), 1, + anon_sym_DQUOTE, + STATE(2750), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5794), 2, + sym_string_content, + sym_escape_sequence, STATE(2743), 2, sym_line_comment, sym_block_comment, - [83387] = 7, + [82545] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5937), 1, - anon_sym_SEMI, - STATE(3540), 1, - sym_where_clause, + ACTIONS(1369), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(488), 1, + sym_block, + STATE(3740), 1, + sym_label, STATE(2744), 2, sym_line_comment, sym_block_comment, - [83410] = 7, + [82568] = 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(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(1117), 1, + STATE(1787), 1, sym_block, - STATE(3664), 1, + STATE(3741), 1, sym_label, STATE(2745), 2, sym_line_comment, sym_block_comment, - [83433] = 7, + [82591] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5939), 1, - anon_sym_SEMI, - STATE(3541), 1, - sym_where_clause, + ACTIONS(5978), 1, + anon_sym_LPAREN, + ACTIONS(5980), 1, + anon_sym_LBRACK, + ACTIONS(5982), 1, + anon_sym_LBRACE, + STATE(1068), 1, + sym_delim_token_tree, STATE(2746), 2, sym_line_comment, sym_block_comment, - [83456] = 7, + [82614] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1276), 1, - sym_declaration_list, - STATE(3355), 1, - sym_where_clause, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1789), 1, + sym_block, + STATE(3741), 1, + sym_label, STATE(2747), 2, sym_line_comment, sym_block_comment, - [83479] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82637] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(393), 1, + STATE(1615), 1, sym_block, - STATE(3676), 1, + STATE(3741), 1, sym_label, STATE(2748), 2, sym_line_comment, sym_block_comment, - [83502] = 7, + [82660] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5941), 1, - anon_sym_SEMI, - ACTIONS(5943), 1, - anon_sym_EQ, - ACTIONS(5945), 1, - anon_sym_else, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1793), 1, + sym_block, + STATE(3741), 1, + sym_label, STATE(2749), 2, sym_line_comment, sym_block_comment, - [83525] = 7, + [82683] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5947), 1, - anon_sym_RPAREN, - ACTIONS(5949), 1, - anon_sym_COMMA, - STATE(3060), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(5984), 1, + anon_sym_DQUOTE, + STATE(2779), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5794), 2, + sym_string_content, + sym_escape_sequence, STATE(2750), 2, sym_line_comment, sym_block_comment, - [83548] = 7, + [82704] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, + ACTIONS(5978), 1, + anon_sym_LPAREN, + ACTIONS(5980), 1, + anon_sym_LBRACK, + ACTIONS(5982), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(2172), 1, - sym_block, - STATE(3709), 1, - sym_label, + STATE(1070), 1, + sym_delim_token_tree, STATE(2751), 2, sym_line_comment, sym_block_comment, - [83571] = 7, + [82727] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1202), 1, - sym_declaration_list, - STATE(3199), 1, - sym_where_clause, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5775), 1, + sym_super, + ACTIONS(5986), 1, + sym_identifier, + STATE(2099), 1, + sym_type_arguments, STATE(2752), 2, sym_line_comment, sym_block_comment, - [83594] = 7, + [82750] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5951), 1, - anon_sym_SEMI, - STATE(3683), 1, - sym_where_clause, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5775), 1, + sym_super, + ACTIONS(5986), 1, + sym_identifier, + STATE(2102), 1, + sym_type_arguments, STATE(2753), 2, sym_line_comment, sym_block_comment, - [83617] = 7, + [82773] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5518), 1, - anon_sym_RPAREN, - ACTIONS(5520), 1, - anon_sym_COMMA, - STATE(3078), 1, - aux_sym_parameters_repeat1, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5775), 1, + sym_super, + ACTIONS(5988), 1, + sym_identifier, + STATE(3605), 1, + sym_type_arguments, STATE(2754), 2, sym_line_comment, sym_block_comment, - [83640] = 7, + [82796] = 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(3628), 1, - sym_block, - STATE(3664), 1, - sym_label, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5775), 1, + sym_super, + ACTIONS(5988), 1, + sym_identifier, + STATE(3759), 1, + sym_type_arguments, STATE(2755), 2, sym_line_comment, sym_block_comment, - [83663] = 7, + [82819] = 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(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(3630), 1, + STATE(1810), 1, sym_block, - STATE(3664), 1, + STATE(3741), 1, sym_label, STATE(2756), 2, sym_line_comment, sym_block_comment, - [83686] = 7, + [82842] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1213), 1, - sym_declaration_list, - STATE(3207), 1, - sym_where_clause, STATE(2757), 2, sym_line_comment, sym_block_comment, - [83709] = 7, + ACTIONS(1023), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [82859] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4084), 1, - anon_sym_LT2, - ACTIONS(4200), 1, - anon_sym_COLON_COLON, - ACTIONS(4915), 1, - anon_sym_BANG, - STATE(1682), 1, - sym_type_arguments, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1816), 1, + sym_block, + STATE(3741), 1, + sym_label, STATE(2758), 2, sym_line_comment, sym_block_comment, - [83732] = 7, + [82882] = 6, 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, - STATE(489), 1, - sym_block, - STATE(3717), 1, - sym_label, + ACTIONS(5990), 1, + anon_sym_DQUOTE, + STATE(2763), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5794), 2, + sym_string_content, + sym_escape_sequence, STATE(2759), 2, sym_line_comment, sym_block_comment, - [83755] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82903] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(414), 1, + STATE(1821), 1, sym_block, - STATE(3676), 1, + STATE(3741), 1, sym_label, STATE(2760), 2, sym_line_comment, sym_block_comment, - [83778] = 7, + [82926] = 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(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(3664), 1, - sym_label, - STATE(3733), 1, + STATE(421), 1, sym_block, + STATE(3532), 1, + sym_label, STATE(2761), 2, sym_line_comment, sym_block_comment, - [83801] = 6, + [82949] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(3298), 1, - sym_trait_bounds, - ACTIONS(5538), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5992), 1, + anon_sym_LPAREN, + ACTIONS(5994), 1, + anon_sym_LBRACK, + ACTIONS(5996), 1, + anon_sym_LBRACE, + STATE(1826), 1, + sym_delim_token_tree, STATE(2762), 2, sym_line_comment, sym_block_comment, - [83822] = 7, + [82972] = 6, 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, - STATE(478), 1, - sym_block, - STATE(3717), 1, - sym_label, + ACTIONS(5998), 1, + anon_sym_DQUOTE, + STATE(2779), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5794), 2, + sym_string_content, + sym_escape_sequence, STATE(2763), 2, sym_line_comment, sym_block_comment, - [83845] = 7, + [82993] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5992), 1, + anon_sym_LPAREN, + ACTIONS(5994), 1, + anon_sym_LBRACK, + ACTIONS(5996), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3664), 1, - sym_label, - STATE(3724), 1, - sym_block, + STATE(1830), 1, + sym_delim_token_tree, STATE(2764), 2, sym_line_comment, sym_block_comment, - [83868] = 7, + [83016] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(1993), 1, + ACTIONS(5775), 1, + sym_super, + ACTIONS(6000), 1, + sym_identifier, + STATE(2099), 1, sym_type_arguments, - STATE(2542), 1, - sym_trait_bounds, STATE(2765), 2, sym_line_comment, sym_block_comment, - [83891] = 5, + [83039] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5762), 1, - anon_sym_COLON_COLON, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5775), 1, + sym_super, + ACTIONS(6000), 1, + sym_identifier, + STATE(2102), 1, + sym_type_arguments, STATE(2766), 2, sym_line_comment, sym_block_comment, - ACTIONS(4777), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83910] = 7, + [83062] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(5750), 1, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5312), 1, + sym_super, + ACTIONS(5988), 1, sym_identifier, - ACTIONS(5953), 1, - anon_sym_GT, - STATE(3157), 1, - sym_lifetime, + STATE(3605), 1, + sym_type_arguments, STATE(2767), 2, sym_line_comment, sym_block_comment, - [83933] = 7, + [83085] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5440), 1, - anon_sym_LBRACE, - STATE(1218), 1, - sym_enum_variant_list, - STATE(3231), 1, - sym_where_clause, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5312), 1, + sym_super, + ACTIONS(5988), 1, + sym_identifier, + STATE(3759), 1, + sym_type_arguments, STATE(2768), 2, sym_line_comment, sym_block_comment, - [83956] = 6, + [83108] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5274), 1, - anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5616), 1, + anon_sym_PIPE, STATE(2769), 2, sym_line_comment, sym_block_comment, - [83977] = 7, + ACTIONS(6002), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [83127] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5955), 1, + ACTIONS(6004), 1, + anon_sym_DQUOTE, + STATE(2771), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5794), 2, + sym_string_content, + sym_escape_sequence, + STATE(2770), 2, + sym_line_comment, + sym_block_comment, + [83148] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6006), 1, + anon_sym_DQUOTE, + STATE(2779), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5794), 2, + sym_string_content, + sym_escape_sequence, + STATE(2771), 2, + sym_line_comment, + sym_block_comment, + [83169] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5775), 1, + sym_super, + ACTIONS(6008), 1, + sym_identifier, + STATE(3605), 1, + sym_type_arguments, + STATE(2772), 2, + sym_line_comment, + sym_block_comment, + [83192] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5775), 1, + sym_super, + ACTIONS(6008), 1, + sym_identifier, + STATE(3759), 1, + sym_type_arguments, + STATE(2773), 2, + sym_line_comment, + sym_block_comment, + [83215] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6010), 1, + anon_sym_COMMA, + ACTIONS(6002), 2, anon_sym_RPAREN, - ACTIONS(5957), 1, + anon_sym_RBRACK, + STATE(2774), 3, + sym_line_comment, + sym_block_comment, + aux_sym_slice_pattern_repeat1, + [83234] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2775), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3374), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - STATE(3061), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2770), 2, + [83251] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3434), 1, + anon_sym_LT2, + ACTIONS(5312), 1, + sym_super, + ACTIONS(5808), 1, + sym_identifier, + STATE(1430), 1, + sym_type_arguments, + STATE(2776), 2, sym_line_comment, sym_block_comment, - [84000] = 7, + [83274] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + STATE(2777), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6013), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [83293] = 7, + ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, - anon_sym_where, - STATE(1224), 1, - sym_field_declaration_list, - STATE(3236), 1, - sym_where_clause, - STATE(2771), 2, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(405), 1, + sym_block, + STATE(3532), 1, + sym_label, + STATE(2778), 2, sym_line_comment, sym_block_comment, - [84023] = 7, + [83316] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(6015), 1, + anon_sym_DQUOTE, + ACTIONS(6017), 2, + sym_string_content, + sym_escape_sequence, + STATE(2779), 3, + sym_line_comment, + sym_block_comment, + aux_sym_string_literal_repeat1, + [83335] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5312), 1, + sym_super, + ACTIONS(6008), 1, + sym_identifier, + STATE(3605), 1, + sym_type_arguments, + STATE(2780), 2, + sym_line_comment, + sym_block_comment, + [83358] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5312), 1, + sym_super, + ACTIONS(6008), 1, + sym_identifier, + STATE(3759), 1, + sym_type_arguments, + STATE(2781), 2, + sym_line_comment, + sym_block_comment, + [83381] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3060), 1, anon_sym_SQUOTE, - ACTIONS(5750), 1, + ACTIONS(5864), 1, sym_identifier, - ACTIONS(5959), 1, + ACTIONS(6020), 1, anon_sym_GT, - STATE(3157), 1, + STATE(3278), 1, sym_lifetime, - STATE(2772), 2, + STATE(2782), 2, + sym_line_comment, + sym_block_comment, + [83404] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4658), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_COLON_COLON, + STATE(2003), 1, + sym_type_arguments, + STATE(2783), 2, + sym_line_comment, + sym_block_comment, + [83427] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(3493), 1, + sym_block, + STATE(3677), 1, + sym_label, + STATE(2784), 2, + sym_line_comment, + sym_block_comment, + [83450] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5282), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2785), 2, sym_line_comment, sym_block_comment, - [84046] = 7, + [83471] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5961), 1, - anon_sym_LBRACE, - ACTIONS(5963), 1, - anon_sym_for, - ACTIONS(5965), 1, - anon_sym_loop, - ACTIONS(5967), 1, - anon_sym_while, - STATE(2773), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6022), 1, + anon_sym_RPAREN, + ACTIONS(6024), 1, + anon_sym_COMMA, + STATE(2998), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2786), 2, sym_line_comment, sym_block_comment, - [84069] = 7, + [83494] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5822), 1, - sym_identifier, - STATE(3554), 1, - sym_type_arguments, - STATE(2774), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(2312), 1, + sym_parameters, + STATE(3321), 1, + sym_type_parameters, + STATE(2787), 2, sym_line_comment, sym_block_comment, - [84092] = 7, + [83517] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5969), 1, - anon_sym_LPAREN, - ACTIONS(5971), 1, - anon_sym_LBRACK, - ACTIONS(5973), 1, - anon_sym_LBRACE, - STATE(2009), 1, - sym_delim_token_tree, - STATE(2775), 2, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + ACTIONS(5864), 1, + sym_identifier, + ACTIONS(6026), 1, + anon_sym_GT, + STATE(3278), 1, + sym_lifetime, + STATE(2788), 2, sym_line_comment, sym_block_comment, - [84115] = 7, + [83540] = 5, 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(4695), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, - STATE(2776), 2, + ACTIONS(6028), 1, + anon_sym_in, + STATE(2789), 2, sym_line_comment, sym_block_comment, - [84138] = 5, + ACTIONS(6030), 3, + sym_self, + sym_super, + sym_crate, + [83559] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5975), 1, - anon_sym_in, - STATE(2777), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6032), 1, + anon_sym_RPAREN, + ACTIONS(6034), 1, + anon_sym_COMMA, + STATE(3011), 1, + aux_sym_tuple_type_repeat1, + STATE(2790), 2, sym_line_comment, sym_block_comment, - ACTIONS(5977), 3, - sym_self, - sym_super, - sym_crate, - [84157] = 7, + [83582] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6036), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3508), 1, - sym_block, - STATE(3664), 1, - sym_label, - STATE(2778), 2, + ACTIONS(6038), 1, + anon_sym_for, + ACTIONS(6040), 1, + anon_sym_loop, + ACTIONS(6042), 1, + anon_sym_while, + STATE(2791), 2, sym_line_comment, sym_block_comment, - [84180] = 7, + [83605] = 7, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(391), 1, + STATE(319), 1, sym_block, - STATE(3676), 1, + STATE(3532), 1, sym_label, - STATE(2779), 2, + STATE(2792), 2, sym_line_comment, sym_block_comment, - [84203] = 7, + [83628] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6044), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, - anon_sym_SQUOTE, - STATE(3596), 1, - sym_block, - STATE(3664), 1, - sym_label, - STATE(2780), 2, + ACTIONS(6046), 1, + anon_sym_for, + ACTIONS(6048), 1, + anon_sym_loop, + ACTIONS(6050), 1, + anon_sym_while, + STATE(2793), 2, sym_line_comment, sym_block_comment, - [84226] = 7, + [83651] = 5, 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, - STATE(479), 1, - sym_block, - STATE(3717), 1, - sym_label, - STATE(2781), 2, + ACTIONS(5894), 1, + anon_sym_COLON_COLON, + STATE(2794), 2, sym_line_comment, sym_block_comment, - [84249] = 7, + ACTIONS(4883), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83670] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(1414), 1, + STATE(3510), 1, sym_block, - STATE(3664), 1, + STATE(3677), 1, sym_label, - STATE(2782), 2, + STATE(2795), 2, sym_line_comment, sym_block_comment, - [84272] = 6, + [83693] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 1, - anon_sym_DOT_DOT, - ACTIONS(5312), 1, + ACTIONS(5898), 1, anon_sym_COLON_COLON, - ACTIONS(4588), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2783), 2, - sym_line_comment, - sym_block_comment, - [84293] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5979), 1, - anon_sym_EQ, - ACTIONS(5981), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2784), 2, + STATE(2796), 2, sym_line_comment, sym_block_comment, - [84314] = 7, + ACTIONS(4835), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83712] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5806), 1, + ACTIONS(5900), 1, anon_sym_COLON_COLON, - ACTIONS(5983), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, - STATE(2785), 2, + STATE(2797), 2, sym_line_comment, sym_block_comment, - [84337] = 7, + ACTIONS(4835), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5985), 1, - anon_sym_LBRACE, - ACTIONS(5987), 1, - anon_sym_for, - ACTIONS(5989), 1, - anon_sym_loop, - ACTIONS(5991), 1, - anon_sym_while, - STATE(2786), 2, + ACTIONS(6052), 1, + anon_sym_COLON, + STATE(2798), 2, sym_line_comment, sym_block_comment, - [84360] = 7, + ACTIONS(4947), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [83750] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5993), 1, - anon_sym_RBRACK, - ACTIONS(5995), 1, - anon_sym_COMMA, - STATE(3065), 1, - aux_sym_slice_pattern_repeat1, - STATE(2787), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(2301), 1, + sym_parameters, + STATE(3353), 1, + sym_type_parameters, + STATE(2799), 2, sym_line_comment, sym_block_comment, - [84383] = 7, + [83773] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(460), 1, + STATE(3665), 1, sym_block, - STATE(3717), 1, + STATE(3677), 1, sym_label, - STATE(2788), 2, + STATE(2800), 2, sym_line_comment, sym_block_comment, - [84406] = 5, + [83796] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, + ACTIONS(5902), 1, anon_sym_COLON_COLON, - STATE(2789), 2, + STATE(2801), 2, sym_line_comment, sym_block_comment, - ACTIONS(4777), 3, + ACTIONS(4835), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [84425] = 7, + [83815] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(2248), 1, - sym_parameters, - STATE(3352), 1, - sym_type_parameters, - STATE(2790), 2, + ACTIONS(1359), 1, + anon_sym_RPAREN, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5724), 1, + anon_sym_COMMA, + STATE(3015), 1, + aux_sym_parameters_repeat1, + STATE(2802), 2, + sym_line_comment, + sym_block_comment, + [83838] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + STATE(3605), 1, + sym_type_arguments, + ACTIONS(5312), 2, + sym_identifier, + sym_super, + STATE(2803), 2, + sym_line_comment, + sym_block_comment, + [83859] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + STATE(3759), 1, + sym_type_arguments, + ACTIONS(5312), 2, + sym_identifier, + sym_super, + STATE(2804), 2, sym_line_comment, sym_block_comment, - [84448] = 5, + [83880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5774), 1, + ACTIONS(5894), 1, anon_sym_COLON_COLON, - STATE(2791), 2, + STATE(2805), 2, sym_line_comment, sym_block_comment, - ACTIONS(4777), 3, + ACTIONS(4915), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [84467] = 7, + [83899] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + ACTIONS(5864), 1, + sym_identifier, + ACTIONS(6054), 1, + anon_sym_GT, + STATE(3278), 1, + sym_lifetime, + STATE(2806), 2, + sym_line_comment, + sym_block_comment, + [83922] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(484), 1, + STATE(3550), 1, sym_block, - STATE(3717), 1, + STATE(3677), 1, sym_label, - STATE(2792), 2, + STATE(2807), 2, sym_line_comment, sym_block_comment, - [84490] = 5, + [83945] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5997), 1, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + ACTIONS(5864), 1, sym_identifier, - STATE(2793), 2, + ACTIONS(6056), 1, + anon_sym_GT, + STATE(3278), 1, + sym_lifetime, + STATE(2808), 2, sym_line_comment, sym_block_comment, - ACTIONS(5999), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [84509] = 5, + [83968] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6001), 1, - anon_sym_DQUOTE, - ACTIONS(6003), 2, - sym_string_content, - sym_escape_sequence, - STATE(2794), 3, + ACTIONS(5898), 1, + anon_sym_COLON_COLON, + STATE(2809), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [84528] = 7, + ACTIONS(4863), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83987] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6006), 1, - anon_sym_RPAREN, - ACTIONS(6008), 1, - anon_sym_COMMA, - STATE(3064), 1, - aux_sym_slice_pattern_repeat1, - STATE(2795), 2, + ACTIONS(5900), 1, + anon_sym_COLON_COLON, + STATE(2810), 2, sym_line_comment, sym_block_comment, - [84551] = 5, - ACTIONS(3), 1, + ACTIONS(4863), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84006] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6010), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2796), 2, + ACTIONS(5902), 1, + anon_sym_COLON_COLON, + STATE(2811), 2, sym_line_comment, sym_block_comment, - ACTIONS(6012), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [84570] = 7, + ACTIONS(4863), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84025] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5701), 1, - sym_identifier, - ACTIONS(5778), 1, - sym_super, - STATE(2097), 1, - sym_type_arguments, - STATE(2797), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(2296), 1, + sym_parameters, + STATE(3366), 1, + sym_type_parameters, + STATE(2812), 2, sym_line_comment, sym_block_comment, - [84593] = 6, + [84048] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - STATE(3554), 1, - sym_type_arguments, - ACTIONS(5778), 2, - sym_identifier, - sym_super, - STATE(2798), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(2286), 1, + sym_parameters, + STATE(3331), 1, + sym_type_parameters, + STATE(2813), 2, sym_line_comment, sym_block_comment, - [84614] = 7, + [84071] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3420), 1, anon_sym_SQUOTE, - STATE(3444), 1, - sym_block, - STATE(3664), 1, + STATE(3677), 1, sym_label, - STATE(2799), 2, + STATE(3703), 1, + sym_block, + STATE(2814), 2, sym_line_comment, sym_block_comment, - [84637] = 7, + [84094] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4851), 1, - anon_sym_for, - ACTIONS(5806), 1, - anon_sym_COLON_COLON, - STATE(1999), 1, - sym_type_arguments, - STATE(2800), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(3677), 1, + sym_label, + STATE(3704), 1, + sym_block, + STATE(2815), 2, sym_line_comment, sym_block_comment, - [84660] = 7, + [84117] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(5385), 1, - anon_sym_LBRACE, - STATE(645), 1, - sym_enum_variant_list, - STATE(3341), 1, - sym_where_clause, - STATE(2801), 2, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(3222), 1, + sym_trait_bounds, + ACTIONS(5606), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2816), 2, sym_line_comment, sym_block_comment, - [84683] = 5, + [84138] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6014), 1, - anon_sym_COLON, - STATE(2802), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(3667), 1, + sym_block, + STATE(3677), 1, + sym_label, + STATE(2817), 2, sym_line_comment, sym_block_comment, - ACTIONS(4879), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [84702] = 7, + [84161] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1399), 1, - anon_sym_RPAREN, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5677), 1, - anon_sym_COMMA, - STATE(2927), 1, - aux_sym_parameters_repeat1, - STATE(2803), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(3530), 1, + sym_block, + STATE(3677), 1, + sym_label, + STATE(2818), 2, sym_line_comment, sym_block_comment, - [84725] = 6, + [84184] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6016), 1, - anon_sym_DQUOTE, - STATE(2794), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5707), 2, - sym_string_content, - sym_escape_sequence, - STATE(2804), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(3541), 1, + sym_block, + STATE(3677), 1, + sym_label, + STATE(2819), 2, sym_line_comment, sym_block_comment, - [84746] = 7, + [84207] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5969), 1, - anon_sym_LPAREN, - ACTIONS(5971), 1, - anon_sym_LBRACK, - ACTIONS(5973), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(2013), 1, - sym_delim_token_tree, - STATE(2805), 2, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(3597), 1, + sym_block, + STATE(3677), 1, + sym_label, + STATE(2820), 2, sym_line_comment, sym_block_comment, - [84769] = 7, + [84230] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4084), 1, - anon_sym_LT2, - ACTIONS(6018), 1, - sym_identifier, - ACTIONS(6020), 1, - sym_super, - STATE(1597), 1, - sym_type_arguments, - STATE(2806), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(3622), 1, + sym_block, + STATE(3677), 1, + sym_label, + STATE(2821), 2, sym_line_comment, sym_block_comment, - [84792] = 7, + [84253] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4084), 1, + ACTIONS(3434), 1, anon_sym_LT2, - ACTIONS(6018), 1, - sym_identifier, - ACTIONS(6020), 1, - sym_super, - STATE(1592), 1, + ACTIONS(3602), 1, + anon_sym_COLON_COLON, + ACTIONS(4658), 1, + anon_sym_BANG, + STATE(1123), 1, sym_type_arguments, - STATE(2807), 2, + STATE(2822), 2, sym_line_comment, sym_block_comment, - [84815] = 7, + [84276] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4124), 1, anon_sym_LT2, - ACTIONS(5806), 1, + ACTIONS(4290), 1, anon_sym_COLON_COLON, - ACTIONS(6022), 1, - anon_sym_for, - STATE(1999), 1, + ACTIONS(4658), 1, + anon_sym_BANG, + STATE(1643), 1, sym_type_arguments, - STATE(2808), 2, + STATE(2823), 2, sym_line_comment, sym_block_comment, - [84838] = 7, + [84299] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5806), 1, - anon_sym_COLON_COLON, - ACTIONS(6024), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, - STATE(2809), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6058), 1, + anon_sym_EQ, + ACTIONS(6060), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2824), 2, sym_line_comment, sym_block_comment, - [84861] = 7, + [84320] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(544), 1, - sym_declaration_list, - STATE(3380), 1, - sym_where_clause, - STATE(2810), 2, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5354), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2825), 2, sym_line_comment, sym_block_comment, - [84884] = 7, + [84341] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(4993), 1, + ACTIONS(6062), 1, anon_sym_LBRACE, - STATE(763), 1, - sym_declaration_list, - STATE(3229), 1, - sym_where_clause, - STATE(2811), 2, + ACTIONS(6064), 1, + anon_sym_for, + ACTIONS(6066), 1, + anon_sym_loop, + ACTIONS(6068), 1, + anon_sym_while, + STATE(2826), 2, sym_line_comment, sym_block_comment, - [84907] = 7, + [84364] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5917), 1, - sym_super, - ACTIONS(6026), 1, - sym_identifier, - ACTIONS(6028), 1, - anon_sym_LT2, - STATE(2501), 1, - sym_type_arguments, - STATE(2812), 2, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(409), 1, + sym_block, + STATE(3532), 1, + sym_label, + STATE(2827), 2, sym_line_comment, sym_block_comment, - [84930] = 7, + [84387] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, + ACTIONS(5802), 1, + anon_sym_LPAREN, + ACTIONS(5804), 1, + anon_sym_LBRACK, ACTIONS(5806), 1, - anon_sym_COLON_COLON, - ACTIONS(6030), 1, - anon_sym_for, - STATE(1999), 1, - sym_type_arguments, - STATE(2813), 2, + anon_sym_LBRACE, + STATE(404), 1, + sym_delim_token_tree, + STATE(2828), 2, sym_line_comment, sym_block_comment, - [84953] = 7, + [84410] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6032), 1, - anon_sym_RPAREN, - ACTIONS(6034), 1, - anon_sym_COMMA, - STATE(2875), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2814), 2, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, + ACTIONS(5320), 1, + anon_sym_COLON_COLON, + ACTIONS(4640), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2829), 2, sym_line_comment, sym_block_comment, - [84976] = 7, + [84431] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5917), 1, - sym_super, - ACTIONS(6026), 1, - sym_identifier, - ACTIONS(6028), 1, - anon_sym_LT2, - STATE(2508), 1, - sym_type_arguments, - STATE(2815), 2, + ACTIONS(6070), 1, + anon_sym_LBRACE, + ACTIONS(6072), 1, + anon_sym_for, + ACTIONS(6074), 1, + anon_sym_loop, + ACTIONS(6076), 1, + anon_sym_while, + STATE(2830), 2, sym_line_comment, sym_block_comment, - [84999] = 7, + [84454] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(6036), 1, - anon_sym_RPAREN, - ACTIONS(6038), 1, - anon_sym_COMMA, - STATE(3132), 1, - aux_sym_tuple_type_repeat1, - STATE(2816), 2, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6078), 1, + anon_sym_SEMI, + STATE(3587), 1, + sym_where_clause, + STATE(2831), 2, sym_line_comment, sym_block_comment, - [85022] = 7, + [84477] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6040), 1, - anon_sym_RPAREN, - ACTIONS(6042), 1, - anon_sym_COMMA, - STATE(3034), 1, - aux_sym_tuple_type_repeat1, - STATE(2817), 2, + ACTIONS(6080), 1, + sym_identifier, + STATE(2832), 2, sym_line_comment, sym_block_comment, - [85045] = 6, + ACTIONS(6082), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [84496] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - STATE(3554), 1, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(2008), 1, sym_type_arguments, - ACTIONS(5296), 2, - sym_identifier, - sym_super, - STATE(2818), 2, + STATE(2565), 1, + sym_trait_bounds, + STATE(2833), 2, sym_line_comment, sym_block_comment, - [85066] = 7, + [84519] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(5701), 1, - sym_identifier, - ACTIONS(5778), 1, - sym_super, - STATE(2094), 1, + ACTIONS(4905), 1, + anon_sym_for, + ACTIONS(5767), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, sym_type_arguments, - STATE(2819), 2, + STATE(2834), 2, sym_line_comment, sym_block_comment, - [85089] = 7, + [84542] = 5, 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(3584), 1, - sym_block, - STATE(3664), 1, - sym_label, - STATE(2820), 2, + ACTIONS(6084), 1, + anon_sym_in, + STATE(2835), 2, sym_line_comment, sym_block_comment, - [85112] = 7, + ACTIONS(6086), 3, + sym_self, + sym_super, + sym_crate, + [84561] = 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(1444), 1, - sym_block, - STATE(3664), 1, - sym_label, - STATE(2821), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5767), 1, + anon_sym_COLON_COLON, + ACTIONS(6088), 1, + anon_sym_for, + STATE(2006), 1, + sym_type_arguments, + STATE(2836), 2, sym_line_comment, sym_block_comment, - [85135] = 7, + [84584] = 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(3646), 1, - sym_block, - STATE(3664), 1, - sym_label, - STATE(2822), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5767), 1, + anon_sym_COLON_COLON, + ACTIONS(6090), 1, + anon_sym_for, + STATE(2006), 1, + sym_type_arguments, + STATE(2837), 2, sym_line_comment, sym_block_comment, - [85158] = 6, + [84607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, - anon_sym_LPAREN, - ACTIONS(6046), 1, - anon_sym_LBRACK, - ACTIONS(6048), 1, - anon_sym_LBRACE, - STATE(2823), 2, + ACTIONS(6092), 1, + anon_sym_COLON, + STATE(2838), 2, sym_line_comment, sym_block_comment, - [85178] = 6, + ACTIONS(4947), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [84626] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6050), 1, - anon_sym_RBRACE, - ACTIONS(6052), 1, - anon_sym_COMMA, - STATE(2865), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2824), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5767), 1, + anon_sym_COLON_COLON, + ACTIONS(6094), 1, + anon_sym_for, + STATE(2006), 1, + sym_type_arguments, + STATE(2839), 2, sym_line_comment, sym_block_comment, - [85198] = 6, + [84649] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6054), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6096), 1, anon_sym_SEMI, - STATE(1168), 1, - sym_declaration_list, - STATE(2825), 2, + ACTIONS(6098), 1, + anon_sym_EQ, + ACTIONS(6100), 1, + anon_sym_else, + STATE(2840), 2, sym_line_comment, sym_block_comment, - [85218] = 6, + [84672] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6056), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6102), 1, anon_sym_SEMI, - STATE(556), 1, - sym_declaration_list, - STATE(2826), 2, + STATE(3758), 1, + sym_where_clause, + STATE(2841), 2, sym_line_comment, sym_block_comment, - [85238] = 6, + [84695] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(6058), 1, - anon_sym_SEMI, - STATE(558), 1, - sym_declaration_list, - STATE(2827), 2, + ACTIONS(3420), 1, + anon_sym_SQUOTE, + STATE(1460), 1, + sym_block, + STATE(3677), 1, + sym_label, + STATE(2842), 2, sym_line_comment, sym_block_comment, - [85258] = 6, + [84718] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6060), 1, - anon_sym_SEMI, - STATE(669), 1, - sym_declaration_list, - STATE(2828), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2008), 1, + sym_type_arguments, + STATE(2076), 1, + sym_parameters, + STATE(2843), 2, sym_line_comment, sym_block_comment, - [85278] = 6, + [84741] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6062), 1, - anon_sym_SEMI, - STATE(636), 1, - sym_declaration_list, - STATE(2829), 2, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(6104), 1, + anon_sym_RPAREN, + ACTIONS(6106), 1, + anon_sym_COMMA, + STATE(3071), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2844), 2, sym_line_comment, sym_block_comment, - [85298] = 4, + [84764] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2830), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6108), 1, + anon_sym_SEMI, + STATE(3577), 1, + sym_where_clause, + STATE(2845), 2, sym_line_comment, sym_block_comment, - ACTIONS(6064), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85314] = 6, + [84787] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, - anon_sym_RBRACK, - ACTIONS(4246), 1, + ACTIONS(1357), 1, + anon_sym_RPAREN, + ACTIONS(6110), 1, anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, - STATE(2831), 2, + STATE(2999), 1, + aux_sym_parameters_repeat1, + STATE(2846), 2, sym_line_comment, sym_block_comment, - [85334] = 6, + [84807] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2708), 1, + ACTIONS(2572), 1, anon_sym_RPAREN, - ACTIONS(6066), 1, + ACTIONS(6112), 1, anon_sym_COMMA, STATE(3041), 1, aux_sym_tuple_pattern_repeat1, - STATE(2832), 2, + STATE(2847), 2, sym_line_comment, sym_block_comment, - [85354] = 6, + [84827] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4388), 1, - anon_sym_RBRACE, - ACTIONS(6068), 1, - anon_sym_COMMA, - STATE(3084), 1, - aux_sym_use_list_repeat1, - STATE(2833), 2, + STATE(2848), 2, sym_line_comment, sym_block_comment, - [85374] = 6, + ACTIONS(6114), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84843] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3092), 1, + ACTIONS(3120), 1, anon_sym_RBRACK, - ACTIONS(6070), 1, + ACTIONS(6116), 1, anon_sym_COMMA, - STATE(2656), 1, + STATE(2774), 1, aux_sym_slice_pattern_repeat1, - STATE(2834), 2, + STATE(2849), 2, sym_line_comment, sym_block_comment, - [85394] = 6, + [84863] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6072), 1, - anon_sym_SEMI, - ACTIONS(6074), 1, - anon_sym_EQ, - STATE(2835), 2, + ACTIONS(6118), 1, + anon_sym_RBRACE, + ACTIONS(6120), 1, + anon_sym_COMMA, + STATE(2868), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2850), 2, sym_line_comment, sym_block_comment, - [85414] = 6, + [84883] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5055), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2836), 2, + ACTIONS(6122), 1, + anon_sym_RBRACE, + ACTIONS(6124), 1, + anon_sym_COMMA, + STATE(2901), 1, + aux_sym_struct_pattern_repeat1, + STATE(2851), 2, sym_line_comment, sym_block_comment, - [85434] = 6, + [84903] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6076), 1, - anon_sym_RBRACE, - ACTIONS(6078), 1, - anon_sym_COMMA, - STATE(2887), 1, - aux_sym_struct_pattern_repeat1, - STATE(2837), 2, + STATE(2852), 2, sym_line_comment, sym_block_comment, - [85454] = 6, + ACTIONS(4963), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84919] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, + ACTIONS(6126), 1, anon_sym_RBRACE, - ACTIONS(6082), 1, + ACTIONS(6128), 1, anon_sym_COMMA, - STATE(2890), 1, + STATE(2904), 1, aux_sym_struct_pattern_repeat1, - STATE(2838), 2, + STATE(2853), 2, sym_line_comment, sym_block_comment, - [85474] = 4, + [84939] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2839), 2, + STATE(2854), 2, sym_line_comment, sym_block_comment, - ACTIONS(6084), 3, + ACTIONS(6130), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [85490] = 6, + [84955] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3228), 1, + ACTIONS(3276), 1, anon_sym_RPAREN, - ACTIONS(6086), 1, + ACTIONS(6132), 1, anon_sym_COMMA, STATE(3075), 1, aux_sym_tuple_type_repeat1, - STATE(2840), 2, + STATE(2855), 2, sym_line_comment, sym_block_comment, - [85510] = 4, + [84975] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2841), 2, + STATE(2856), 2, sym_line_comment, sym_block_comment, - ACTIONS(6088), 3, + ACTIONS(6134), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [85526] = 4, + [84991] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2842), 2, + STATE(2857), 2, sym_line_comment, sym_block_comment, - ACTIONS(6090), 3, + ACTIONS(6136), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [85542] = 6, + [85007] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2858), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4999), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85023] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5631), 1, + ACTIONS(5646), 1, anon_sym_RPAREN, - ACTIONS(5633), 1, + ACTIONS(5648), 1, anon_sym_COMMA, - STATE(2891), 1, + STATE(2906), 1, aux_sym_parameters_repeat1, - STATE(2843), 2, + STATE(2859), 2, sym_line_comment, sym_block_comment, - [85562] = 4, + [85043] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2844), 2, + STATE(2860), 2, sym_line_comment, sym_block_comment, - ACTIONS(6092), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85578] = 4, + ACTIONS(5007), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85059] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2845), 2, + STATE(2861), 2, sym_line_comment, sym_block_comment, - ACTIONS(6094), 3, + ACTIONS(6138), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [85594] = 6, + [85075] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6096), 1, - anon_sym_SEMI, - ACTIONS(6098), 1, - anon_sym_EQ, - STATE(2846), 2, + ACTIONS(6140), 1, + anon_sym_GT, + ACTIONS(6142), 1, + anon_sym_COMMA, + STATE(2910), 1, + aux_sym_use_bounds_repeat1, + STATE(2862), 2, sym_line_comment, sym_block_comment, - [85614] = 4, + [85095] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2847), 2, + ACTIONS(6144), 1, + anon_sym_GT, + ACTIONS(6146), 1, + anon_sym_COMMA, + STATE(2911), 1, + aux_sym_use_bounds_repeat1, + STATE(2863), 2, + sym_line_comment, + sym_block_comment, + [85115] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2864), 2, sym_line_comment, sym_block_comment, - ACTIONS(6100), 3, + ACTIONS(6148), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [85630] = 6, + [85131] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6102), 1, - anon_sym_RBRACE, - ACTIONS(6104), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2848), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6150), 1, + anon_sym_SEMI, + ACTIONS(6152), 1, + anon_sym_EQ, + STATE(2865), 2, sym_line_comment, sym_block_comment, - [85650] = 6, + [85151] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6106), 1, + ACTIONS(6154), 1, anon_sym_RBRACE, - ACTIONS(6108), 1, + ACTIONS(6156), 1, anon_sym_COMMA, - STATE(3098), 1, + STATE(2912), 1, aux_sym_enum_variant_list_repeat2, - STATE(2849), 2, + STATE(2866), 2, + sym_line_comment, + sym_block_comment, + [85171] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(6158), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(2867), 2, sym_line_comment, sym_block_comment, - [85670] = 6, + [85191] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5015), 1, + ACTIONS(5102), 1, anon_sym_RBRACE, - ACTIONS(6110), 1, + ACTIONS(6160), 1, anon_sym_COMMA, - STATE(2922), 1, + STATE(2949), 1, aux_sym_field_declaration_list_repeat1, - STATE(2850), 2, + STATE(2868), 2, sym_line_comment, sym_block_comment, - [85690] = 5, + [85211] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6114), 1, - anon_sym_COLON, - ACTIONS(6112), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2851), 2, + STATE(2869), 2, sym_line_comment, sym_block_comment, - [85708] = 6, + ACTIONS(5023), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85227] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, + STATE(2870), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4919), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85243] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4823), 1, anon_sym_GT, - ACTIONS(6116), 1, + ACTIONS(6162), 1, anon_sym_COMMA, - STATE(3115), 1, + STATE(3128), 1, aux_sym_type_parameters_repeat1, - STATE(2852), 2, + STATE(2871), 2, sym_line_comment, sym_block_comment, - [85728] = 6, + [85263] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4769), 1, + ACTIONS(4823), 1, anon_sym_GT, - ACTIONS(6116), 1, + ACTIONS(6162), 1, anon_sym_COMMA, - STATE(2901), 1, + STATE(2914), 1, aux_sym_type_parameters_repeat1, - STATE(2853), 2, + STATE(2872), 2, sym_line_comment, sym_block_comment, - [85748] = 6, + [85283] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, - ACTIONS(6120), 1, - anon_sym_COMMA, - STATE(2878), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2854), 2, + STATE(2873), 2, sym_line_comment, sym_block_comment, - [85768] = 6, + ACTIONS(4987), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85299] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(6122), 1, + ACTIONS(6164), 1, anon_sym_SEMI, - STATE(1190), 1, + STATE(1207), 1, sym_declaration_list, - STATE(2855), 2, + STATE(2874), 2, sym_line_comment, sym_block_comment, - [85788] = 6, + [85319] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6124), 1, - anon_sym_SEMI, - ACTIONS(6126), 1, - anon_sym_RBRACK, - STATE(2856), 2, + STATE(2875), 2, sym_line_comment, sym_block_comment, - [85808] = 6, + ACTIONS(4981), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85335] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, + ACTIONS(6166), 1, + anon_sym_RPAREN, + ACTIONS(6168), 1, + anon_sym_COMMA, + STATE(2876), 3, + sym_line_comment, + sym_block_comment, + aux_sym_ordered_field_declaration_list_repeat1, + [85353] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(6128), 1, + ACTIONS(6171), 1, anon_sym_SEMI, - ACTIONS(6130), 1, + ACTIONS(6173), 1, anon_sym_EQ, - STATE(2857), 2, + STATE(2877), 2, sym_line_comment, sym_block_comment, - [85828] = 6, + [85373] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6132), 1, + ACTIONS(6175), 1, anon_sym_RBRACE, - ACTIONS(6134), 1, + ACTIONS(6177), 1, anon_sym_COMMA, - STATE(2909), 1, + STATE(2919), 1, aux_sym_field_declaration_list_repeat1, - STATE(2858), 2, + STATE(2878), 2, sym_line_comment, sym_block_comment, - [85848] = 6, + [85393] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(6136), 1, + ACTIONS(6179), 1, anon_sym_SEMI, - STATE(3675), 1, + STATE(3672), 1, sym_where_clause, - STATE(2859), 2, + STATE(2879), 2, sym_line_comment, sym_block_comment, - [85868] = 5, + [85413] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6138), 1, - anon_sym_RBRACE, - ACTIONS(6140), 1, - anon_sym_COMMA, - STATE(2860), 3, + STATE(2880), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [85886] = 6, + ACTIONS(6181), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [85429] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(6143), 1, + ACTIONS(6183), 1, anon_sym_SEMI, - STATE(3699), 1, + STATE(3471), 1, sym_where_clause, - STATE(2861), 2, + STATE(2881), 2, sym_line_comment, sym_block_comment, - [85906] = 6, + [85449] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(6145), 1, + ACTIONS(6185), 1, anon_sym_SEMI, - STATE(1211), 1, + STATE(1228), 1, sym_declaration_list, - STATE(2862), 2, + STATE(2882), 2, + sym_line_comment, + sym_block_comment, + [85469] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2883), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6187), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [85485] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4943), 1, + anon_sym_RBRACE, + ACTIONS(6189), 1, + anon_sym_COMMA, + STATE(3004), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2884), 2, + sym_line_comment, + sym_block_comment, + [85505] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6191), 1, + anon_sym_SEMI, + STATE(3601), 1, + sym_where_clause, + STATE(2885), 2, sym_line_comment, sym_block_comment, - [85926] = 5, + [85525] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6149), 1, + STATE(2886), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(977), 3, anon_sym_COLON, - ACTIONS(6147), 2, + anon_sym_GT, + anon_sym_COMMA, + [85541] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6193), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2863), 2, + STATE(2887), 2, + sym_line_comment, + sym_block_comment, + [85559] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1011), 1, + anon_sym_RPAREN, + ACTIONS(4292), 1, + anon_sym_COMMA, + STATE(2590), 1, + aux_sym_arguments_repeat1, + STATE(2888), 2, + sym_line_comment, + sym_block_comment, + [85579] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1655), 1, + anon_sym_GT, + ACTIONS(6195), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_type_arguments_repeat1, + STATE(2889), 2, + sym_line_comment, + sym_block_comment, + [85599] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6197), 1, + anon_sym_SEMI, + STATE(3616), 1, + sym_where_clause, + STATE(2890), 2, sym_line_comment, sym_block_comment, - [85944] = 6, + [85619] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6151), 1, - anon_sym_RBRACE, - ACTIONS(6153), 1, - anon_sym_COMMA, - STATE(3054), 1, - aux_sym_struct_pattern_repeat1, - STATE(2864), 2, + ACTIONS(6199), 1, + sym_identifier, + ACTIONS(6201), 1, + anon_sym_ref, + ACTIONS(6203), 1, + sym_mutable_specifier, + STATE(2891), 2, sym_line_comment, sym_block_comment, - [85964] = 6, + [85639] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4905), 1, + ACTIONS(4945), 1, anon_sym_RBRACE, - ACTIONS(6155), 1, + ACTIONS(6205), 1, anon_sym_COMMA, - STATE(2860), 1, + STATE(3004), 1, aux_sym_field_initializer_list_repeat1, - STATE(2865), 2, + STATE(2892), 2, sym_line_comment, sym_block_comment, - [85984] = 6, + [85659] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6157), 1, - anon_sym_RPAREN, - ACTIONS(6159), 1, + ACTIONS(6209), 1, + anon_sym_COLON, + ACTIONS(6207), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2879), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2866), 2, + STATE(2893), 2, sym_line_comment, sym_block_comment, - [86004] = 6, + [85677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1641), 1, + ACTIONS(5652), 1, anon_sym_GT, - ACTIONS(6161), 1, + ACTIONS(6211), 1, anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, - STATE(2867), 2, + STATE(2894), 3, sym_line_comment, sym_block_comment, - [86024] = 6, + aux_sym_type_arguments_repeat1, + [85695] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6163), 1, - anon_sym_SEMI, - STATE(3498), 1, - sym_where_clause, - STATE(2868), 2, + ACTIONS(6216), 1, + anon_sym_COLON, + ACTIONS(6214), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2895), 2, sym_line_comment, sym_block_comment, - [86044] = 5, + [85713] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6165), 2, - anon_sym_RPAREN, + ACTIONS(1029), 1, + anon_sym_RBRACK, + ACTIONS(6218), 1, anon_sym_COMMA, - STATE(2869), 2, + STATE(2590), 1, + aux_sym_arguments_repeat1, + STATE(2896), 2, sym_line_comment, sym_block_comment, - [86062] = 5, + [85733] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5538), 1, - anon_sym_GT, - ACTIONS(6167), 1, + ACTIONS(6220), 1, + anon_sym_RBRACE, + ACTIONS(6222), 1, anon_sym_COMMA, - STATE(2870), 3, + STATE(3057), 1, + aux_sym_struct_pattern_repeat1, + STATE(2897), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [86080] = 5, + [85753] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6170), 2, - anon_sym_RPAREN, + ACTIONS(1653), 1, + anon_sym_GT, + ACTIONS(6224), 1, anon_sym_COMMA, - STATE(2871), 2, + STATE(2931), 1, + aux_sym_type_arguments_repeat1, + STATE(2898), 2, sym_line_comment, sym_block_comment, - [86098] = 6, + [85773] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5387), 1, + ACTIONS(1653), 1, anon_sym_GT, - ACTIONS(5389), 1, + ACTIONS(6224), 1, anon_sym_COMMA, - STATE(2964), 1, - aux_sym_type_parameters_repeat1, - STATE(2872), 2, + STATE(2894), 1, + aux_sym_type_arguments_repeat1, + STATE(2899), 2, sym_line_comment, sym_block_comment, - [86118] = 6, + [85793] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(949), 1, + ACTIONS(3128), 1, anon_sym_RPAREN, - ACTIONS(4250), 1, + ACTIONS(6226), 1, anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, - STATE(2873), 2, + STATE(2774), 1, + aux_sym_slice_pattern_repeat1, + STATE(2900), 2, sym_line_comment, sym_block_comment, - [86138] = 6, + [85813] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5015), 1, + ACTIONS(5310), 1, anon_sym_RBRACE, - ACTIONS(6110), 1, + ACTIONS(6228), 1, anon_sym_COMMA, - STATE(2933), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2874), 2, + STATE(2954), 1, + aux_sym_struct_pattern_repeat1, + STATE(2901), 2, sym_line_comment, sym_block_comment, - [86158] = 6, + [85833] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6172), 1, + ACTIONS(3106), 1, anon_sym_RPAREN, - ACTIONS(6174), 1, + ACTIONS(6230), 1, anon_sym_COMMA, - STATE(2879), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2875), 2, - sym_line_comment, - sym_block_comment, - [86178] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6176), 1, - sym_identifier, - ACTIONS(6178), 1, - anon_sym_ref, - ACTIONS(6180), 1, - sym_mutable_specifier, - STATE(2876), 2, + STATE(2774), 1, + aux_sym_slice_pattern_repeat1, + STATE(2902), 2, sym_line_comment, sym_block_comment, - [86198] = 6, + [85853] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, - anon_sym_COLON, - ACTIONS(5007), 1, - anon_sym_COLON_COLON, - STATE(2542), 1, - sym_trait_bounds, - STATE(2877), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(6232), 1, + anon_sym_SEMI, + STATE(722), 1, + sym_declaration_list, + STATE(2903), 2, sym_line_comment, sym_block_comment, - [86218] = 6, + [85873] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, + ACTIONS(5264), 1, anon_sym_RBRACE, - ACTIONS(6182), 1, + ACTIONS(6234), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2878), 2, + STATE(2954), 1, + aux_sym_struct_pattern_repeat1, + STATE(2904), 2, sym_line_comment, sym_block_comment, - [86238] = 5, + [85893] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6184), 1, - anon_sym_RPAREN, - ACTIONS(6186), 1, - anon_sym_COMMA, - STATE(2879), 3, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6236), 1, + anon_sym_SEMI, + STATE(3497), 1, + sym_where_clause, + STATE(2905), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [86256] = 6, + [85913] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(963), 1, - anon_sym_RBRACK, - ACTIONS(6189), 1, + ACTIONS(1355), 1, + anon_sym_RPAREN, + ACTIONS(5654), 1, anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, - STATE(2880), 2, + STATE(2999), 1, + aux_sym_parameters_repeat1, + STATE(2906), 2, sym_line_comment, sym_block_comment, - [86276] = 5, + [85933] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6193), 1, - anon_sym_COLON, - ACTIONS(6191), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2881), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(6238), 1, + anon_sym_SEMI, + STATE(622), 1, + sym_declaration_list, + STATE(2907), 2, sym_line_comment, sym_block_comment, - [86294] = 5, + [85953] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6197), 1, - anon_sym_COLON, - ACTIONS(6195), 2, - anon_sym_RBRACE, + ACTIONS(1355), 1, + anon_sym_RPAREN, + ACTIONS(5654), 1, anon_sym_COMMA, - STATE(2882), 2, + STATE(2935), 1, + aux_sym_parameters_repeat1, + STATE(2908), 2, sym_line_comment, sym_block_comment, - [86312] = 6, + [85973] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1627), 1, - anon_sym_GT, - ACTIONS(6199), 1, - anon_sym_COMMA, - STATE(2925), 1, - aux_sym_type_arguments_repeat1, - STATE(2883), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6240), 1, + sym_mutable_specifier, + ACTIONS(6242), 1, + sym_self, + STATE(2909), 2, sym_line_comment, sym_block_comment, - [86332] = 6, + [85993] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1627), 1, + ACTIONS(5866), 1, anon_sym_GT, - ACTIONS(6199), 1, + ACTIONS(6244), 1, anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, - STATE(2884), 2, + STATE(3063), 1, + aux_sym_use_bounds_repeat1, + STATE(2910), 2, sym_line_comment, sym_block_comment, - [86352] = 6, + [86013] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3098), 1, - anon_sym_RPAREN, - ACTIONS(6201), 1, + ACTIONS(5868), 1, + anon_sym_GT, + ACTIONS(6246), 1, anon_sym_COMMA, - STATE(2656), 1, - aux_sym_slice_pattern_repeat1, - STATE(2885), 2, + STATE(3063), 1, + aux_sym_use_bounds_repeat1, + STATE(2911), 2, sym_line_comment, sym_block_comment, - [86372] = 5, + [86033] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6203), 2, + ACTIONS(5092), 1, anon_sym_RBRACE, + ACTIONS(6248), 1, anon_sym_COMMA, - STATE(2886), 2, + STATE(3134), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2912), 2, sym_line_comment, sym_block_comment, - [86390] = 6, + [86053] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5286), 1, + ACTIONS(5092), 1, anon_sym_RBRACE, - ACTIONS(6205), 1, + ACTIONS(6248), 1, anon_sym_COMMA, - STATE(2942), 1, - aux_sym_struct_pattern_repeat1, - STATE(2887), 2, + STATE(2938), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2913), 2, sym_line_comment, sym_block_comment, - [86410] = 6, + [86073] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3100), 1, - anon_sym_RPAREN, - ACTIONS(6207), 1, + ACTIONS(4827), 1, + anon_sym_GT, + ACTIONS(6250), 1, anon_sym_COMMA, - STATE(2656), 1, - aux_sym_slice_pattern_repeat1, - STATE(2888), 2, + STATE(3128), 1, + aux_sym_type_parameters_repeat1, + STATE(2914), 2, sym_line_comment, sym_block_comment, - [86430] = 5, + [86093] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6209), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2889), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(6252), 1, + anon_sym_SEMI, + STATE(1258), 1, + sym_declaration_list, + STATE(2915), 2, sym_line_comment, sym_block_comment, - [86448] = 6, + [86113] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5300), 1, - anon_sym_RBRACE, - ACTIONS(6211), 1, - anon_sym_COMMA, - STATE(2942), 1, - aux_sym_struct_pattern_repeat1, - STATE(2890), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(6254), 1, + anon_sym_SEMI, + STATE(1264), 1, + sym_declaration_list, + STATE(2916), 2, sym_line_comment, sym_block_comment, - [86468] = 6, + [86133] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1399), 1, - anon_sym_RPAREN, - ACTIONS(5677), 1, + ACTIONS(6258), 1, + anon_sym_COLON, + ACTIONS(6256), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2979), 1, - aux_sym_parameters_repeat1, - STATE(2891), 2, + STATE(2917), 2, sym_line_comment, sym_block_comment, - [86488] = 6, + [86151] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(6213), 1, + ACTIONS(6260), 1, anon_sym_SEMI, - ACTIONS(6215), 1, + ACTIONS(6262), 1, anon_sym_EQ, - STATE(2892), 2, + STATE(2918), 2, sym_line_comment, sym_block_comment, - [86508] = 6, + [86171] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1399), 1, - anon_sym_RPAREN, - ACTIONS(5677), 1, + ACTIONS(5096), 1, + anon_sym_RBRACE, + ACTIONS(6264), 1, anon_sym_COMMA, - STATE(2927), 1, - aux_sym_parameters_repeat1, - STATE(2893), 2, + STATE(2949), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2919), 2, sym_line_comment, sym_block_comment, - [86528] = 6, + [86191] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4999), 1, + ACTIONS(5096), 1, anon_sym_RBRACE, - ACTIONS(6217), 1, + ACTIONS(6264), 1, anon_sym_COMMA, - STATE(3039), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2894), 2, + STATE(2948), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2920), 2, sym_line_comment, sym_block_comment, - [86548] = 6, + [86211] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4999), 1, - anon_sym_RBRACE, - ACTIONS(6217), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2895), 2, + STATE(2921), 2, sym_line_comment, sym_block_comment, - [86568] = 6, + ACTIONS(6266), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86227] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(4713), 1, - anon_sym_COLON, - STATE(2542), 1, - sym_trait_bounds, - STATE(2896), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(6268), 1, + anon_sym_SEMI, + STATE(1419), 1, + sym_declaration_list, + STATE(2922), 2, sym_line_comment, sym_block_comment, - [86588] = 4, + [86247] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2897), 2, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(6270), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4861), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86604] = 4, + [86265] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2898), 2, + STATE(2924), 2, sym_line_comment, sym_block_comment, - ACTIONS(4867), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86620] = 6, + ACTIONS(6272), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86281] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6219), 1, - sym_identifier, - ACTIONS(6221), 1, - anon_sym_ref, - ACTIONS(6223), 1, - sym_mutable_specifier, - STATE(2899), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6274), 1, + anon_sym_SEMI, + ACTIONS(6276), 1, + anon_sym_EQ, + STATE(2925), 2, sym_line_comment, sym_block_comment, - [86640] = 6, + [86301] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6225), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6278), 1, anon_sym_SEMI, - STATE(566), 1, - sym_declaration_list, - STATE(2900), 2, + STATE(3486), 1, + sym_where_clause, + STATE(2926), 2, sym_line_comment, sym_block_comment, - [86660] = 6, + [86321] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4761), 1, - anon_sym_GT, - ACTIONS(6227), 1, - anon_sym_COMMA, - STATE(3115), 1, - aux_sym_type_parameters_repeat1, - STATE(2901), 2, + ACTIONS(4176), 1, + anon_sym_LBRACE, + ACTIONS(6280), 1, + anon_sym_COLON_COLON, + STATE(1832), 1, + sym_field_initializer_list, + STATE(2927), 2, sym_line_comment, sym_block_comment, - [86680] = 6, + [86341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6229), 1, - anon_sym_SEMI, - STATE(1241), 1, - sym_declaration_list, - STATE(2902), 2, + ACTIONS(5600), 1, + anon_sym_COLON, + ACTIONS(6282), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2928), 2, sym_line_comment, sym_block_comment, - [86700] = 6, + [86359] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_COLON_COLON, - ACTIONS(4961), 1, - anon_sym_BANG, - ACTIONS(6231), 1, - sym_identifier, - STATE(2903), 2, + ACTIONS(1031), 1, + anon_sym_RPAREN, + ACTIONS(6284), 1, + anon_sym_COMMA, + STATE(2590), 1, + aux_sym_arguments_repeat1, + STATE(2929), 2, sym_line_comment, sym_block_comment, - [86720] = 6, + [86379] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6233), 1, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6286), 1, anon_sym_SEMI, - STATE(1247), 1, - sym_declaration_list, - STATE(2904), 2, + STATE(3755), 1, + sym_where_clause, + STATE(2930), 2, sym_line_comment, sym_block_comment, - [86740] = 4, + [86399] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2905), 2, + ACTIONS(1613), 1, + anon_sym_GT, + ACTIONS(6288), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_type_arguments_repeat1, + STATE(2931), 2, sym_line_comment, sym_block_comment, - ACTIONS(4881), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86756] = 6, + [86419] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6235), 1, - anon_sym_SEMI, - ACTIONS(6237), 1, - anon_sym_EQ, - STATE(2906), 2, + STATE(2932), 2, sym_line_comment, sym_block_comment, - [86776] = 4, + ACTIONS(4973), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86435] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2907), 2, + STATE(2933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4883), 3, + ACTIONS(5015), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86792] = 5, + [86451] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6239), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2908), 2, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6290), 1, + anon_sym_EQ, + STATE(3511), 1, + sym_where_clause, + STATE(2934), 2, sym_line_comment, sym_block_comment, - [86810] = 6, + [86471] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5001), 1, - anon_sym_RBRACE, - ACTIONS(6241), 1, + ACTIONS(1361), 1, + anon_sym_RPAREN, + ACTIONS(6292), 1, anon_sym_COMMA, - STATE(2922), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2909), 2, + STATE(2999), 1, + aux_sym_parameters_repeat1, + STATE(2935), 2, sym_line_comment, sym_block_comment, - [86830] = 6, + [86491] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5001), 1, - anon_sym_RBRACE, - ACTIONS(6241), 1, - anon_sym_COMMA, - STATE(2940), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2910), 2, + ACTIONS(6294), 1, + anon_sym_move, + STATE(237), 1, + sym_closure_parameters, + STATE(2936), 2, sym_line_comment, sym_block_comment, - [86850] = 6, + [86511] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6243), 1, - anon_sym_SEMI, - STATE(1259), 1, - sym_declaration_list, - STATE(2911), 2, + STATE(2937), 2, sym_line_comment, sym_block_comment, - [86870] = 4, + ACTIONS(4971), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86527] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2912), 2, + ACTIONS(5126), 1, + anon_sym_RBRACE, + ACTIONS(6296), 1, + anon_sym_COMMA, + STATE(3134), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2938), 2, sym_line_comment, sym_block_comment, - ACTIONS(4911), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86886] = 4, + [86547] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2913), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(6298), 1, + anon_sym_SEMI, + STATE(1308), 1, + sym_declaration_list, + STATE(2939), 2, sym_line_comment, sym_block_comment, - ACTIONS(4913), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86902] = 6, + [86567] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(6245), 1, + ACTIONS(6300), 1, anon_sym_SEMI, - STATE(568), 1, + STATE(1310), 1, sym_declaration_list, - STATE(2914), 2, + STATE(2940), 2, sym_line_comment, sym_block_comment, - [86922] = 4, + [86587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2915), 2, + ACTIONS(6282), 1, + anon_sym_PIPE, + ACTIONS(6302), 1, + anon_sym_COMMA, + STATE(2941), 3, sym_line_comment, sym_block_comment, - ACTIONS(4921), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86938] = 6, + aux_sym_closure_parameters_repeat1, + [86605] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6247), 1, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(6305), 1, anon_sym_SEMI, - ACTIONS(6249), 1, - anon_sym_EQ, - STATE(2916), 2, + STATE(1316), 1, + sym_declaration_list, + STATE(2942), 2, sym_line_comment, sym_block_comment, - [86958] = 6, + [86625] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6251), 1, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(6307), 1, anon_sym_SEMI, - STATE(3539), 1, - sym_where_clause, - STATE(2917), 2, + STATE(1318), 1, + sym_declaration_list, + STATE(2943), 2, sym_line_comment, sym_block_comment, - [86978] = 4, + [86645] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2918), 2, + STATE(2944), 2, sym_line_comment, sym_block_comment, - ACTIONS(4923), 3, + ACTIONS(4957), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86994] = 4, + [86661] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2919), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6309), 1, + anon_sym_SEMI, + ACTIONS(6311), 1, + anon_sym_EQ, + STATE(2945), 2, sym_line_comment, sym_block_comment, - ACTIONS(4929), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87010] = 4, + [86681] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2920), 2, + STATE(2946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 3, + ACTIONS(4969), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87026] = 6, + [86697] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(965), 1, - anon_sym_RPAREN, - ACTIONS(6253), 1, - anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, - STATE(2921), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5132), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(2947), 2, sym_line_comment, sym_block_comment, - [87046] = 5, + [86717] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6255), 1, + ACTIONS(5027), 1, anon_sym_RBRACE, - ACTIONS(6257), 1, + ACTIONS(6313), 1, anon_sym_COMMA, - STATE(2922), 3, - sym_line_comment, - sym_block_comment, + STATE(2949), 1, aux_sym_field_declaration_list_repeat1, - [87064] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2923), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4813), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87080] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6260), 1, - anon_sym_SEMI, - STATE(3567), 1, - sym_where_clause, - STATE(2924), 2, + STATE(2948), 2, sym_line_comment, sym_block_comment, - [87100] = 6, + [86737] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1643), 1, - anon_sym_GT, - ACTIONS(6262), 1, + ACTIONS(6315), 1, + anon_sym_RBRACE, + ACTIONS(6317), 1, anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, - STATE(2925), 2, + STATE(2949), 3, sym_line_comment, sym_block_comment, - [87120] = 4, + aux_sym_field_declaration_list_repeat1, + [86755] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2926), 2, + STATE(2950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4869), 3, + ACTIONS(4831), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87136] = 6, + [86771] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1401), 1, - anon_sym_RPAREN, - ACTIONS(6264), 1, + ACTIONS(5045), 1, + anon_sym_RBRACE, + ACTIONS(6320), 1, anon_sym_COMMA, - STATE(2979), 1, - aux_sym_parameters_repeat1, - STATE(2927), 2, + STATE(2949), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2951), 2, + sym_line_comment, + sym_block_comment, + [86791] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2952), 2, sym_line_comment, sym_block_comment, - [87156] = 6, + ACTIONS(5564), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86807] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6266), 1, - anon_sym_GT, - ACTIONS(6268), 1, - anon_sym_COMMA, - STATE(2946), 1, - aux_sym_use_bounds_repeat1, - STATE(2928), 2, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6322), 1, + anon_sym_SEMI, + STATE(3713), 1, + sym_where_clause, + STATE(2953), 2, sym_line_comment, sym_block_comment, - [87176] = 6, + [86827] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6270), 1, - anon_sym_GT, - ACTIONS(6272), 1, + ACTIONS(6324), 1, + anon_sym_RBRACE, + ACTIONS(6326), 1, anon_sym_COMMA, - STATE(2947), 1, - aux_sym_use_bounds_repeat1, - STATE(2929), 2, + STATE(2954), 3, sym_line_comment, sym_block_comment, - [87196] = 5, + aux_sym_struct_pattern_repeat1, + [86845] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5550), 1, - anon_sym_COLON, - ACTIONS(6274), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2930), 2, + STATE(2955), 2, sym_line_comment, sym_block_comment, - [87214] = 6, + ACTIONS(4953), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86861] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5005), 1, - anon_sym_RBRACE, - ACTIONS(6276), 1, - anon_sym_COMMA, - STATE(3039), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2931), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(6329), 1, + anon_sym_SEMI, + STATE(1358), 1, + sym_declaration_list, + STATE(2956), 2, sym_line_comment, sym_block_comment, - [87234] = 6, + [86881] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(6278), 1, + ACTIONS(6331), 1, anon_sym_SEMI, - STATE(574), 1, + STATE(1360), 1, sym_declaration_list, - STATE(2932), 2, + STATE(2957), 2, sym_line_comment, sym_block_comment, - [87254] = 6, + [86901] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_RBRACE, - ACTIONS(6280), 1, - anon_sym_COMMA, - STATE(2922), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2933), 2, + STATE(2958), 2, sym_line_comment, sym_block_comment, - [87274] = 6, + ACTIONS(6333), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86917] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(6282), 1, + ACTIONS(6335), 1, anon_sym_SEMI, - STATE(1291), 1, + STATE(1367), 1, sym_declaration_list, - STATE(2934), 2, + STATE(2959), 2, sym_line_comment, sym_block_comment, - [87294] = 6, + [86937] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(6284), 1, + ACTIONS(6337), 1, anon_sym_SEMI, - STATE(1293), 1, + STATE(1369), 1, sym_declaration_list, - STATE(2935), 2, + STATE(2960), 2, sym_line_comment, sym_block_comment, - [87314] = 6, + [86957] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6339), 1, + anon_sym_SEMI, + ACTIONS(6341), 1, + anon_sym_EQ, + STATE(2961), 2, + sym_line_comment, + sym_block_comment, + [86977] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6343), 1, anon_sym_SEMI, - STATE(576), 1, + STATE(1375), 1, sym_declaration_list, - STATE(2936), 2, + STATE(2962), 2, sym_line_comment, sym_block_comment, - [87334] = 6, + [86997] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - ACTIONS(6288), 1, + ACTIONS(6345), 1, anon_sym_SEMI, - STATE(1299), 1, + STATE(1377), 1, sym_declaration_list, - STATE(2937), 2, + STATE(2963), 2, sym_line_comment, sym_block_comment, - [87354] = 6, + [87017] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(6290), 1, + ACTIONS(6347), 1, anon_sym_SEMI, - STATE(1301), 1, + STATE(741), 1, sym_declaration_list, - STATE(2938), 2, + STATE(2964), 2, sym_line_comment, sym_block_comment, - [87374] = 6, + [87037] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(6292), 1, + ACTIONS(6349), 1, anon_sym_SEMI, - ACTIONS(6294), 1, + ACTIONS(6351), 1, anon_sym_EQ, - STATE(2939), 2, + STATE(2965), 2, sym_line_comment, sym_block_comment, - [87394] = 6, + [87057] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5009), 1, + ACTIONS(5102), 1, anon_sym_RBRACE, - ACTIONS(6296), 1, + ACTIONS(6160), 1, anon_sym_COMMA, - STATE(2922), 1, + STATE(2951), 1, aux_sym_field_declaration_list_repeat1, - STATE(2940), 2, + STATE(2966), 2, sym_line_comment, sym_block_comment, - [87414] = 5, + [87077] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6274), 1, - anon_sym_PIPE, - ACTIONS(6298), 1, - anon_sym_COMMA, - STATE(2941), 3, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(6353), 1, + anon_sym_SEMI, + STATE(1395), 1, + sym_declaration_list, + STATE(2967), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [87432] = 5, + [87097] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(6355), 1, + anon_sym_SEMI, + STATE(1397), 1, + sym_declaration_list, + STATE(2968), 2, + sym_line_comment, + sym_block_comment, + [87117] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6301), 1, + ACTIONS(6357), 1, anon_sym_RBRACE, - ACTIONS(6303), 1, + ACTIONS(6359), 1, anon_sym_COMMA, - STATE(2942), 3, + STATE(2969), 3, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [87450] = 6, + aux_sym_use_list_repeat1, + [87135] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(6306), 1, + ACTIONS(6362), 1, anon_sym_SEMI, - STATE(712), 1, + STATE(708), 1, sym_declaration_list, - STATE(2943), 2, + STATE(2970), 2, sym_line_comment, sym_block_comment, - [87470] = 6, + [87155] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6308), 1, - anon_sym_SEMI, - ACTIONS(6310), 1, - anon_sym_EQ, - STATE(2944), 2, + ACTIONS(6364), 1, + anon_sym_RPAREN, + ACTIONS(6366), 1, + anon_sym_COMMA, + STATE(2876), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2971), 2, sym_line_comment, sym_block_comment, - [87490] = 6, + [87175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6312), 1, - anon_sym_EQ, - STATE(3445), 1, - sym_where_clause, - STATE(2945), 2, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(6368), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2972), 2, sym_line_comment, sym_block_comment, - [87510] = 6, + [87193] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5841), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6370), 2, anon_sym_GT, - ACTIONS(6314), 1, anon_sym_COMMA, - STATE(2977), 1, - aux_sym_use_bounds_repeat1, - STATE(2946), 2, + STATE(2973), 2, sym_line_comment, sym_block_comment, - [87530] = 6, + [87211] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5843), 1, - anon_sym_GT, - ACTIONS(6316), 1, - anon_sym_COMMA, - STATE(2977), 1, - aux_sym_use_bounds_repeat1, - STATE(2947), 2, + ACTIONS(6372), 1, + anon_sym_move, + STATE(252), 1, + sym_closure_parameters, + STATE(2974), 2, sym_line_comment, sym_block_comment, - [87550] = 6, + [87231] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6318), 1, - anon_sym_SEMI, - STATE(1341), 1, - sym_declaration_list, - STATE(2948), 2, + ACTIONS(959), 1, + anon_sym_RPAREN, + ACTIONS(4298), 1, + anon_sym_COMMA, + STATE(2590), 1, + aux_sym_arguments_repeat1, + STATE(2975), 2, sym_line_comment, sym_block_comment, - [87570] = 6, + [87251] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6320), 1, - anon_sym_SEMI, - STATE(1343), 1, - sym_declaration_list, - STATE(2949), 2, + ACTIONS(4741), 1, + anon_sym_COLON_COLON, + ACTIONS(5441), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2976), 2, sym_line_comment, sym_block_comment, - [87590] = 6, + [87269] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5518), 1, - anon_sym_RPAREN, - ACTIONS(5520), 1, + ACTIONS(6374), 1, + anon_sym_GT, + ACTIONS(6376), 1, anon_sym_COMMA, - STATE(3078), 1, - aux_sym_parameters_repeat1, - STATE(2950), 2, + STATE(3091), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2977), 2, sym_line_comment, sym_block_comment, - [87610] = 6, + [87289] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6322), 1, - anon_sym_SEMI, - STATE(1350), 1, - sym_declaration_list, - STATE(2951), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(5070), 1, + anon_sym_COLON_COLON, + STATE(2003), 1, + sym_type_arguments, + STATE(2978), 2, sym_line_comment, sym_block_comment, - [87630] = 6, + [87309] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6324), 1, - anon_sym_SEMI, - STATE(1352), 1, - sym_declaration_list, - STATE(2952), 2, + ACTIONS(997), 1, + anon_sym_RPAREN, + ACTIONS(6378), 1, + anon_sym_COMMA, + STATE(2590), 1, + aux_sym_arguments_repeat1, + STATE(2979), 2, sym_line_comment, sym_block_comment, - [87650] = 4, + [87329] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2953), 2, + ACTIONS(4741), 1, + anon_sym_COLON_COLON, + ACTIONS(6380), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2980), 2, + sym_line_comment, + sym_block_comment, + [87347] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2981), 2, sym_line_comment, sym_block_comment, - ACTIONS(4879), 3, + ACTIONS(4975), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87666] = 6, + [87363] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5354), 1, - anon_sym_PLUS, - ACTIONS(6326), 1, - anon_sym_GT, - ACTIONS(6328), 1, - anon_sym_as, - STATE(2954), 2, + ACTIONS(6382), 1, + anon_sym_RBRACE, + ACTIONS(6384), 1, + anon_sym_COMMA, + STATE(3069), 1, + aux_sym_struct_pattern_repeat1, + STATE(2982), 2, sym_line_comment, sym_block_comment, - [87686] = 6, + [87383] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6330), 1, - anon_sym_SEMI, - STATE(1358), 1, - sym_declaration_list, - STATE(2955), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5928), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2983), 2, sym_line_comment, sym_block_comment, - [87706] = 6, + [87401] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6332), 1, - anon_sym_SEMI, - STATE(1360), 1, - sym_declaration_list, - STATE(2956), 2, + ACTIONS(4813), 1, + anon_sym_GT, + ACTIONS(6386), 1, + anon_sym_COMMA, + STATE(3128), 1, + aux_sym_type_parameters_repeat1, + STATE(2984), 2, sym_line_comment, sym_block_comment, - [87726] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [87421] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6334), 1, - anon_sym_move, - STATE(218), 1, - sym_closure_parameters, - STATE(2957), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(6388), 1, + anon_sym_SEMI, + STATE(1139), 1, + sym_declaration_list, + STATE(2985), 2, sym_line_comment, sym_block_comment, - [87746] = 6, + [87441] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6336), 1, - anon_sym_RBRACE, - ACTIONS(6338), 1, + ACTIONS(987), 1, + anon_sym_RBRACK, + ACTIONS(4304), 1, anon_sym_COMMA, - STATE(3066), 1, - aux_sym_struct_pattern_repeat1, - STATE(2958), 2, + STATE(2590), 1, + aux_sym_arguments_repeat1, + STATE(2986), 2, sym_line_comment, sym_block_comment, - [87766] = 6, + [87461] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(6340), 1, + ACTIONS(6390), 1, anon_sym_SEMI, - ACTIONS(6342), 1, - anon_sym_EQ, - STATE(2959), 2, + ACTIONS(6392), 1, + anon_sym_RBRACK, + STATE(2987), 2, sym_line_comment, sym_block_comment, - [87786] = 5, + [87481] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6344), 1, - anon_sym_EQ, - ACTIONS(6346), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2960), 2, + ACTIONS(3434), 1, + anon_sym_LT2, + ACTIONS(5052), 1, + anon_sym_COLON_COLON, + STATE(1123), 1, + sym_type_arguments, + STATE(2988), 2, sym_line_comment, sym_block_comment, - [87804] = 6, + [87501] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6348), 1, - anon_sym_SEMI, - STATE(3533), 1, - sym_where_clause, - STATE(2961), 2, + STATE(2989), 2, sym_line_comment, sym_block_comment, - [87824] = 6, + ACTIONS(6394), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87517] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6350), 1, - anon_sym_SEMI, - STATE(1378), 1, - sym_declaration_list, - STATE(2962), 2, + STATE(2990), 2, sym_line_comment, sym_block_comment, - [87844] = 6, + ACTIONS(4947), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87533] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6352), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6396), 1, anon_sym_SEMI, - STATE(1380), 1, - sym_declaration_list, - STATE(2963), 2, + ACTIONS(6398), 1, + anon_sym_EQ, + STATE(2991), 2, sym_line_comment, sym_block_comment, - [87864] = 6, + [87553] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, - anon_sym_GT, - ACTIONS(6354), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(5942), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3115), 1, - aux_sym_type_parameters_repeat1, - STATE(2964), 2, + STATE(2992), 2, sym_line_comment, sym_block_comment, - [87884] = 5, + [87571] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4671), 1, - anon_sym_COLON_COLON, - ACTIONS(5383), 2, + ACTIONS(3274), 1, anon_sym_RPAREN, + ACTIONS(6400), 1, anon_sym_COMMA, - STATE(2965), 2, + STATE(3075), 1, + aux_sym_tuple_type_repeat1, + STATE(2993), 2, sym_line_comment, sym_block_comment, - [87902] = 6, + [87591] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, - anon_sym_GT, - ACTIONS(6354), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6402), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3126), 1, - aux_sym_type_parameters_repeat1, - STATE(2966), 2, + STATE(2994), 2, sym_line_comment, sym_block_comment, - [87922] = 4, + [87609] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2967), 2, + ACTIONS(5688), 1, + anon_sym_RPAREN, + ACTIONS(5690), 1, + anon_sym_COMMA, + STATE(3005), 1, + aux_sym_parameters_repeat1, + STATE(2995), 2, sym_line_comment, sym_block_comment, - ACTIONS(6356), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87938] = 6, + [87629] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6358), 1, - anon_sym_SEMI, - STATE(740), 1, - sym_declaration_list, - STATE(2968), 2, + ACTIONS(6404), 1, + anon_sym_GT, + ACTIONS(6406), 1, + anon_sym_COMMA, + STATE(3007), 1, + aux_sym_use_bounds_repeat1, + STATE(2996), 2, sym_line_comment, sym_block_comment, - [87958] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [87649] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6360), 1, - anon_sym_move, - STATE(246), 1, - sym_closure_parameters, - STATE(2969), 2, + ACTIONS(6408), 1, + anon_sym_GT, + ACTIONS(6410), 1, + anon_sym_COMMA, + STATE(3008), 1, + aux_sym_use_bounds_repeat1, + STATE(2997), 2, sym_line_comment, sym_block_comment, - [87978] = 6, + [87669] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6362), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2970), 2, + ACTIONS(6412), 1, + anon_sym_RPAREN, + ACTIONS(6414), 1, + anon_sym_COMMA, + STATE(2876), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2998), 2, sym_line_comment, sym_block_comment, - [87998] = 5, + [87689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6364), 2, - anon_sym_RBRACE, + ACTIONS(5942), 1, + anon_sym_RPAREN, + ACTIONS(6416), 1, anon_sym_COMMA, - STATE(2971), 2, + STATE(2999), 3, sym_line_comment, sym_block_comment, - [88016] = 6, + aux_sym_parameters_repeat1, + [87707] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1025), 1, - anon_sym_RPAREN, - ACTIONS(4254), 1, - anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, - STATE(2972), 2, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + ACTIONS(5864), 1, + sym_identifier, + STATE(3278), 1, + sym_lifetime, + STATE(3000), 2, sym_line_comment, sym_block_comment, - [88036] = 6, + [87727] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6366), 1, - anon_sym_SEMI, - STATE(611), 1, - sym_declaration_list, - STATE(2973), 2, + ACTIONS(6419), 1, + anon_sym_move, + STATE(238), 1, + sym_closure_parameters, + STATE(3001), 2, sym_line_comment, sym_block_comment, - [88056] = 6, + [87747] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5554), 1, + ACTIONS(1641), 1, + anon_sym_GT, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(6368), 1, - anon_sym_PIPE, - STATE(3003), 1, - aux_sym_closure_parameters_repeat1, - STATE(2974), 2, + STATE(3009), 1, + aux_sym_type_arguments_repeat1, + STATE(3002), 2, sym_line_comment, sym_block_comment, - [88076] = 5, + [87767] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5915), 2, - anon_sym_RPAREN, + ACTIONS(1641), 1, + anon_sym_GT, + ACTIONS(6421), 1, anon_sym_COMMA, - STATE(2975), 2, + STATE(2894), 1, + aux_sym_type_arguments_repeat1, + STATE(3003), 2, sym_line_comment, sym_block_comment, - [88094] = 4, + [87787] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2976), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6370), 3, - anon_sym_SEMI, + ACTIONS(6423), 1, anon_sym_RBRACE, + ACTIONS(6425), 1, anon_sym_COMMA, - [88110] = 5, + STATE(3004), 3, + sym_line_comment, + sym_block_comment, + aux_sym_field_initializer_list_repeat1, + [87805] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6372), 1, - anon_sym_GT, - ACTIONS(6374), 1, + ACTIONS(1367), 1, + anon_sym_RPAREN, + ACTIONS(5700), 1, anon_sym_COMMA, - STATE(2977), 3, + STATE(2999), 1, + aux_sym_parameters_repeat1, + STATE(3005), 2, sym_line_comment, sym_block_comment, - aux_sym_use_bounds_repeat1, - [88128] = 4, + [87825] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2978), 2, + ACTIONS(1367), 1, + anon_sym_RPAREN, + ACTIONS(5700), 1, + anon_sym_COMMA, + STATE(2846), 1, + aux_sym_parameters_repeat1, + STATE(3006), 2, sym_line_comment, sym_block_comment, - ACTIONS(6377), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88144] = 5, + [87845] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5915), 1, - anon_sym_RPAREN, - ACTIONS(6379), 1, + ACTIONS(5962), 1, + anon_sym_GT, + ACTIONS(6428), 1, anon_sym_COMMA, - STATE(2979), 3, + STATE(3063), 1, + aux_sym_use_bounds_repeat1, + STATE(3007), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [88162] = 6, + [87865] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6382), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(2980), 2, + ACTIONS(5964), 1, + anon_sym_GT, + ACTIONS(6430), 1, + anon_sym_COMMA, + STATE(3063), 1, + aux_sym_use_bounds_repeat1, + STATE(3008), 2, sym_line_comment, sym_block_comment, - [88182] = 4, + [87885] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2981), 2, + ACTIONS(1643), 1, + anon_sym_GT, + ACTIONS(6432), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_type_arguments_repeat1, + STATE(3009), 2, sym_line_comment, sym_block_comment, - ACTIONS(4937), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88198] = 4, + [87905] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2982), 2, + ACTIONS(6434), 1, + sym_identifier, + ACTIONS(6436), 1, + anon_sym_await, + ACTIONS(6438), 1, + sym_integer_literal, + STATE(3010), 2, sym_line_comment, sym_block_comment, - ACTIONS(4939), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88214] = 6, + [87925] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6384), 1, - anon_sym_SEMI, - ACTIONS(6386), 1, - anon_sym_RBRACK, - STATE(2983), 2, + ACTIONS(3270), 1, + anon_sym_RPAREN, + ACTIONS(6440), 1, + anon_sym_COMMA, + STATE(3075), 1, + aux_sym_tuple_type_repeat1, + STATE(3011), 2, sym_line_comment, sym_block_comment, - [88234] = 4, + [87945] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2984), 2, + STATE(3012), 2, sym_line_comment, sym_block_comment, - ACTIONS(4945), 3, + ACTIONS(4967), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88250] = 4, + [87961] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2985), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(6442), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(3013), 2, sym_line_comment, sym_block_comment, - ACTIONS(4947), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88266] = 6, + [87981] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1377), 1, - anon_sym_RPAREN, - ACTIONS(6388), 1, + ACTIONS(4440), 1, + anon_sym_RBRACE, + ACTIONS(6444), 1, anon_sym_COMMA, - STATE(2979), 1, - aux_sym_parameters_repeat1, - STATE(2986), 2, + STATE(2969), 1, + aux_sym_use_list_repeat1, + STATE(3014), 2, sym_line_comment, sym_block_comment, - [88286] = 6, + [88001] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - ACTIONS(4975), 1, - anon_sym_COLON_COLON, - STATE(1106), 1, - sym_type_arguments, - STATE(2987), 2, + ACTIONS(1349), 1, + anon_sym_RPAREN, + ACTIONS(6446), 1, + anon_sym_COMMA, + STATE(2999), 1, + aux_sym_parameters_repeat1, + STATE(3015), 2, sym_line_comment, sym_block_comment, - [88306] = 6, + [88021] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(4885), 1, - anon_sym_LBRACE, - STATE(1993), 1, - sym_type_arguments, - STATE(2988), 2, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6448), 1, + anon_sym_SEMI, + STATE(3504), 1, + sym_where_clause, + STATE(3016), 2, sym_line_comment, sym_block_comment, - [88326] = 6, + [88041] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(6390), 1, - anon_sym_GT, - STATE(3183), 1, - sym_lifetime, - STATE(2989), 2, + ACTIONS(901), 1, + anon_sym_RBRACK, + ACTIONS(4256), 1, + anon_sym_COMMA, + STATE(2590), 1, + aux_sym_arguments_repeat1, + STATE(3017), 2, sym_line_comment, sym_block_comment, - [88346] = 5, + [88061] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6392), 1, - anon_sym_GT, - ACTIONS(6394), 1, - anon_sym_COMMA, - STATE(2990), 3, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(6450), 1, + anon_sym_SEMI, + STATE(714), 1, + sym_declaration_list, + STATE(3018), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [88364] = 6, + [88081] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6397), 1, - anon_sym_SEMI, - STATE(3622), 1, - sym_where_clause, - STATE(2991), 2, + STATE(3019), 2, sym_line_comment, sym_block_comment, - [88384] = 5, + ACTIONS(6452), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88097] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6399), 2, + ACTIONS(5820), 1, anon_sym_RPAREN, + ACTIONS(5822), 1, anon_sym_COMMA, - STATE(2992), 2, + STATE(2847), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3020), 2, sym_line_comment, sym_block_comment, - [88402] = 6, + [88117] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, - anon_sym_RPAREN, - ACTIONS(5558), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_parameters_repeat1, - STATE(2993), 2, + ACTIONS(4124), 1, + anon_sym_LT2, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + STATE(1643), 1, + sym_type_arguments, + STATE(3021), 2, sym_line_comment, sym_block_comment, - [88422] = 6, + [88137] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6401), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6454), 1, anon_sym_GT, - ACTIONS(6403), 1, - anon_sym_COMMA, - STATE(3086), 1, - aux_sym_use_bounds_repeat1, - STATE(2994), 2, + ACTIONS(6456), 1, + anon_sym_as, + STATE(3022), 2, sym_line_comment, sym_block_comment, - [88442] = 6, + [88157] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1623), 1, - anon_sym_GT, - ACTIONS(6405), 1, + ACTIONS(6458), 1, + anon_sym_RBRACE, + ACTIONS(6460), 1, anon_sym_COMMA, - STATE(3005), 1, - aux_sym_type_arguments_repeat1, - STATE(2995), 2, + STATE(3014), 1, + aux_sym_use_list_repeat1, + STATE(3023), 2, sym_line_comment, sym_block_comment, - [88462] = 6, + [88177] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1623), 1, + ACTIONS(1639), 1, anon_sym_GT, - ACTIONS(6405), 1, + ACTIONS(6462), 1, anon_sym_COMMA, - STATE(2870), 1, + STATE(3028), 1, aux_sym_type_arguments_repeat1, - STATE(2996), 2, + STATE(3024), 2, sym_line_comment, sym_block_comment, - [88482] = 6, + [88197] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6407), 1, + ACTIONS(1639), 1, anon_sym_GT, - ACTIONS(6409), 1, + ACTIONS(6462), 1, anon_sym_COMMA, - STATE(3088), 1, - aux_sym_use_bounds_repeat1, - STATE(2997), 2, + STATE(2894), 1, + aux_sym_type_arguments_repeat1, + STATE(3025), 2, sym_line_comment, sym_block_comment, - [88502] = 6, + [88217] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6411), 1, - anon_sym_EQ_GT, - ACTIONS(6413), 1, - anon_sym_PIPE, - ACTIONS(6415), 1, - anon_sym_if, - STATE(2998), 2, + STATE(3026), 2, sym_line_comment, sym_block_comment, - [88522] = 6, + ACTIONS(6464), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88233] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1405), 1, - anon_sym_RPAREN, - ACTIONS(5570), 1, - anon_sym_COMMA, - STATE(2979), 1, - aux_sym_parameters_repeat1, - STATE(2999), 2, + STATE(3027), 2, sym_line_comment, sym_block_comment, - [88542] = 4, + ACTIONS(6466), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88249] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3000), 2, + ACTIONS(1637), 1, + anon_sym_GT, + ACTIONS(6468), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_type_arguments_repeat1, + STATE(3028), 2, sym_line_comment, sym_block_comment, - ACTIONS(4889), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88558] = 6, + [88269] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1405), 1, - anon_sym_RPAREN, - ACTIONS(5570), 1, - anon_sym_COMMA, - STATE(3006), 1, - aux_sym_parameters_repeat1, - STATE(3001), 2, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + ACTIONS(6470), 1, + anon_sym_GT, + STATE(3234), 1, + sym_lifetime, + STATE(3029), 2, sym_line_comment, sym_block_comment, - [88578] = 4, + [88289] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3002), 2, + ACTIONS(3556), 1, + anon_sym_LBRACE, + ACTIONS(6472), 1, + anon_sym_COLON_COLON, + STATE(1518), 1, + sym_field_initializer_list, + STATE(3030), 2, sym_line_comment, sym_block_comment, - ACTIONS(4891), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88594] = 6, + [88309] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5554), 1, + ACTIONS(4813), 1, + anon_sym_GT, + ACTIONS(6386), 1, anon_sym_COMMA, - ACTIONS(6417), 1, - anon_sym_PIPE, - STATE(2941), 1, - aux_sym_closure_parameters_repeat1, - STATE(3003), 2, + STATE(3129), 1, + aux_sym_type_parameters_repeat1, + STATE(3031), 2, sym_line_comment, sym_block_comment, - [88614] = 6, + [88329] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6419), 1, - anon_sym_SEMI, - STATE(594), 1, - sym_declaration_list, - STATE(3004), 2, + ACTIONS(6474), 1, + anon_sym_move, + STATE(229), 1, + sym_closure_parameters, + STATE(3032), 2, sym_line_comment, sym_block_comment, - [88634] = 6, + [88349] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1625), 1, + ACTIONS(6476), 1, anon_sym_GT, - ACTIONS(6421), 1, + ACTIONS(6478), 1, anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, - STATE(3005), 2, + STATE(3033), 3, sym_line_comment, sym_block_comment, - [88654] = 6, + aux_sym_for_lifetimes_repeat1, + [88367] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1407), 1, - anon_sym_RPAREN, - ACTIONS(6423), 1, + ACTIONS(5490), 1, + anon_sym_GT, + ACTIONS(5492), 1, anon_sym_COMMA, - STATE(2979), 1, - aux_sym_parameters_repeat1, - STATE(3006), 2, + STATE(2984), 1, + aux_sym_type_parameters_repeat1, + STATE(3034), 2, sym_line_comment, sym_block_comment, - [88674] = 6, + [88387] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6425), 1, - anon_sym_GT, - ACTIONS(6427), 1, - anon_sym_COMMA, - STATE(3010), 1, - aux_sym_use_bounds_repeat1, - STATE(3007), 2, + STATE(3035), 2, sym_line_comment, sym_block_comment, - [88694] = 6, + ACTIONS(1499), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88403] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6429), 1, - anon_sym_GT, - ACTIONS(6431), 1, - anon_sym_COMMA, - STATE(3012), 1, - aux_sym_use_bounds_repeat1, - STATE(3008), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6481), 1, + anon_sym_SEMI, + ACTIONS(6483), 1, + anon_sym_EQ, + STATE(3036), 2, sym_line_comment, sym_block_comment, - [88714] = 4, + [88423] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3009), 2, + STATE(3037), 2, sym_line_comment, sym_block_comment, - ACTIONS(4777), 3, + ACTIONS(5025), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88730] = 6, + [88439] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5752), 1, - anon_sym_GT, - ACTIONS(6433), 1, + ACTIONS(6485), 1, + sym_identifier, + ACTIONS(6487), 1, + anon_sym_await, + ACTIONS(6489), 1, + sym_integer_literal, + STATE(3038), 2, + sym_line_comment, + sym_block_comment, + [88459] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(979), 1, + anon_sym_RBRACK, + ACTIONS(6491), 1, anon_sym_COMMA, - STATE(2977), 1, - aux_sym_use_bounds_repeat1, - STATE(3010), 2, + STATE(2590), 1, + aux_sym_arguments_repeat1, + STATE(3039), 2, sym_line_comment, sym_block_comment, - [88750] = 6, + [88479] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, - anon_sym_PLUS, - ACTIONS(6435), 1, - sym_mutable_specifier, - ACTIONS(6437), 1, - sym_self, - STATE(3011), 2, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(6493), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3040), 2, sym_line_comment, sym_block_comment, - [88770] = 6, + [88497] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, - anon_sym_GT, - ACTIONS(6439), 1, + ACTIONS(6493), 1, + anon_sym_RPAREN, + ACTIONS(6495), 1, anon_sym_COMMA, - STATE(2977), 1, - aux_sym_use_bounds_repeat1, - STATE(3012), 2, + STATE(3041), 3, sym_line_comment, sym_block_comment, - [88790] = 6, + aux_sym_tuple_pattern_repeat1, + [88515] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(6441), 1, + ACTIONS(6498), 1, anon_sym_SEMI, - STATE(596), 1, + STATE(506), 1, sym_declaration_list, - STATE(3013), 2, + STATE(3042), 2, sym_line_comment, sym_block_comment, - [88810] = 4, + [88535] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3014), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6500), 1, + anon_sym_SEMI, + ACTIONS(6502), 1, + anon_sym_RBRACK, + STATE(3043), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88826] = 4, + [88555] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3015), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(6504), 1, + anon_sym_SEMI, + STATE(508), 1, + sym_declaration_list, + STATE(3044), 2, sym_line_comment, sym_block_comment, - ACTIONS(5586), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88842] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [88575] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6443), 1, - anon_sym_move, - STATE(216), 1, - sym_closure_parameters, - STATE(3016), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(6506), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(3045), 2, sym_line_comment, sym_block_comment, - [88862] = 4, + [88595] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3017), 2, + STATE(3046), 2, sym_line_comment, sym_block_comment, - ACTIONS(4925), 3, + ACTIONS(4983), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88878] = 4, + [88611] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3018), 2, + STATE(3047), 2, sym_line_comment, sym_block_comment, - ACTIONS(4927), 3, + ACTIONS(4985), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88894] = 4, + [88627] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3019), 2, + ACTIONS(1649), 1, + anon_sym_GT, + ACTIONS(6508), 1, + anon_sym_COMMA, + STATE(2889), 1, + aux_sym_type_arguments_repeat1, + STATE(3048), 2, sym_line_comment, sym_block_comment, - ACTIONS(4941), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88910] = 6, + [88647] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(5007), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, - STATE(3020), 2, + ACTIONS(6510), 1, + anon_sym_GT, + ACTIONS(6512), 1, + anon_sym_COMMA, + STATE(3096), 1, + aux_sym_use_bounds_repeat1, + STATE(3049), 2, sym_line_comment, sym_block_comment, - [88930] = 4, + [88667] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3021), 2, + ACTIONS(1649), 1, + anon_sym_GT, + ACTIONS(6508), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_type_arguments_repeat1, + STATE(3050), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88946] = 6, + [88687] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6514), 1, + anon_sym_GT, + ACTIONS(6516), 1, + anon_sym_COMMA, + STATE(3098), 1, + aux_sym_use_bounds_repeat1, + STATE(3051), 2, + sym_line_comment, + sym_block_comment, + [88707] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4084), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(5019), 1, + ACTIONS(6518), 1, anon_sym_COLON_COLON, - STATE(1682), 1, + STATE(2003), 1, sym_type_arguments, - STATE(3022), 2, + STATE(3052), 2, sym_line_comment, sym_block_comment, - [88966] = 4, + [88727] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3023), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6520), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3053), 2, sym_line_comment, sym_block_comment, - ACTIONS(4957), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88982] = 4, + [88745] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3024), 2, + ACTIONS(3138), 1, + anon_sym_RPAREN, + ACTIONS(6522), 1, + anon_sym_COMMA, + STATE(2774), 1, + aux_sym_slice_pattern_repeat1, + STATE(3054), 2, sym_line_comment, sym_block_comment, - ACTIONS(4865), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88998] = 4, + [88765] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3025), 2, + ACTIONS(6526), 1, + anon_sym_COLON, + ACTIONS(6524), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3055), 2, sym_line_comment, sym_block_comment, - ACTIONS(4863), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89014] = 6, + [88783] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1631), 1, - anon_sym_GT, - ACTIONS(6445), 1, - anon_sym_COMMA, - STATE(3029), 1, - aux_sym_type_arguments_repeat1, - STATE(3026), 2, + STATE(3056), 2, sym_line_comment, sym_block_comment, - [89034] = 6, + ACTIONS(6528), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88799] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1631), 1, - anon_sym_GT, - ACTIONS(6445), 1, + ACTIONS(5374), 1, + anon_sym_RBRACE, + ACTIONS(6530), 1, anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, - STATE(3027), 2, + STATE(2954), 1, + aux_sym_struct_pattern_repeat1, + STATE(3057), 2, sym_line_comment, sym_block_comment, - [89054] = 6, + [88819] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(3556), 1, anon_sym_LBRACE, - ACTIONS(6447), 1, - anon_sym_SEMI, - STATE(729), 1, - sym_declaration_list, - STATE(3028), 2, + ACTIONS(6532), 1, + anon_sym_COLON_COLON, + STATE(1518), 1, + sym_field_initializer_list, + STATE(3058), 2, sym_line_comment, sym_block_comment, - [89074] = 6, + [88839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1633), 1, - anon_sym_GT, - ACTIONS(6449), 1, + ACTIONS(6536), 1, + anon_sym_COLON, + ACTIONS(6534), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, - STATE(3029), 2, + STATE(3059), 2, sym_line_comment, sym_block_comment, - [89094] = 6, + [88857] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6451), 1, - anon_sym_SEMI, - ACTIONS(6453), 1, - anon_sym_EQ, - STATE(3030), 2, + ACTIONS(6538), 1, + anon_sym_LPAREN, + ACTIONS(6540), 1, + anon_sym_LBRACK, + ACTIONS(6542), 1, + anon_sym_LBRACE, + STATE(3060), 2, sym_line_comment, sym_block_comment, - [89114] = 6, + [88877] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6455), 1, - sym_identifier, - ACTIONS(6457), 1, - anon_sym_await, - ACTIONS(6459), 1, - sym_integer_literal, - STATE(3031), 2, + ACTIONS(6544), 1, + anon_sym_LPAREN, + ACTIONS(6546), 1, + anon_sym_LBRACK, + ACTIONS(6548), 1, + anon_sym_LBRACE, + STATE(3061), 2, sym_line_comment, sym_block_comment, - [89134] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [88897] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6461), 1, - anon_sym_move, - STATE(230), 1, - sym_closure_parameters, - STATE(3032), 2, + ACTIONS(6550), 1, + anon_sym_RBRACE, + ACTIONS(6552), 1, + anon_sym_COMMA, + STATE(2892), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3062), 2, sym_line_comment, sym_block_comment, - [89154] = 6, + [88917] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6463), 1, - anon_sym_SEMI, - STATE(3685), 1, - sym_where_clause, - STATE(3033), 2, + ACTIONS(6554), 1, + anon_sym_GT, + ACTIONS(6556), 1, + anon_sym_COMMA, + STATE(3063), 3, sym_line_comment, sym_block_comment, - [89174] = 6, + aux_sym_use_bounds_repeat1, + [88935] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3258), 1, - anon_sym_RPAREN, - ACTIONS(6465), 1, - anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, - STATE(3034), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(6559), 1, + anon_sym_LBRACE, + STATE(2008), 1, + sym_type_arguments, + STATE(3064), 2, sym_line_comment, sym_block_comment, - [89194] = 4, + [88955] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3035), 2, + STATE(3065), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 3, + ACTIONS(4626), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89210] = 4, + [88971] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3036), 2, + ACTIONS(5604), 1, + anon_sym_COMMA, + ACTIONS(6561), 1, + anon_sym_PIPE, + STATE(3083), 1, + aux_sym_closure_parameters_repeat1, + STATE(3066), 2, sym_line_comment, sym_block_comment, - ACTIONS(6467), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [89226] = 6, + [88991] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, + ACTIONS(3112), 1, anon_sym_RPAREN, - ACTIONS(6469), 1, + ACTIONS(6563), 1, anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, - STATE(3037), 2, + STATE(2774), 1, + aux_sym_slice_pattern_repeat1, + STATE(3067), 2, sym_line_comment, sym_block_comment, - [89246] = 6, + [89011] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_RBRACK, - ACTIONS(6471), 1, + ACTIONS(5547), 1, + anon_sym_RPAREN, + ACTIONS(5549), 1, anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, - STATE(3038), 2, + STATE(3079), 1, + aux_sym_parameters_repeat1, + STATE(3068), 2, sym_line_comment, sym_block_comment, - [89266] = 5, + [89031] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6473), 1, + ACTIONS(5298), 1, anon_sym_RBRACE, - ACTIONS(6475), 1, + ACTIONS(6565), 1, anon_sym_COMMA, - STATE(3039), 3, + STATE(2954), 1, + aux_sym_struct_pattern_repeat1, + STATE(3069), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [89284] = 5, + [89051] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6478), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6567), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3040), 2, + STATE(3070), 2, sym_line_comment, sym_block_comment, - [89302] = 5, + [89069] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6478), 1, + ACTIONS(2570), 1, anon_sym_RPAREN, - ACTIONS(6480), 1, + ACTIONS(6569), 1, anon_sym_COMMA, - STATE(3041), 3, + STATE(3041), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3071), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [89320] = 6, + [89089] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, + ACTIONS(6571), 1, + anon_sym_AMP_AMP, + ACTIONS(4332), 2, + anon_sym_LBRACE, anon_sym_SQUOTE, - ACTIONS(5750), 1, - sym_identifier, - STATE(3157), 1, - sym_lifetime, - STATE(3042), 2, + STATE(3072), 2, sym_line_comment, sym_block_comment, - [89340] = 5, + [89107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6485), 1, + ACTIONS(6571), 1, + anon_sym_AMP_AMP, + ACTIONS(6573), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(3073), 2, + sym_line_comment, + sym_block_comment, + [89125] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6575), 1, + anon_sym_SEMI, + ACTIONS(6577), 1, anon_sym_EQ, - ACTIONS(6483), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3043), 2, + STATE(3074), 2, sym_line_comment, sym_block_comment, - [89358] = 6, + [89145] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5037), 1, - anon_sym_RBRACE, - ACTIONS(6487), 1, + ACTIONS(6567), 1, + anon_sym_RPAREN, + ACTIONS(6579), 1, anon_sym_COMMA, - STATE(3039), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3044), 2, + STATE(3075), 3, sym_line_comment, sym_block_comment, - [89378] = 6, + aux_sym_tuple_type_repeat1, + [89163] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6489), 1, - anon_sym_SEMI, - STATE(707), 1, - sym_declaration_list, - STATE(3045), 2, + STATE(3076), 2, sym_line_comment, sym_block_comment, - [89398] = 6, + ACTIONS(4959), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89179] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6491), 1, - anon_sym_RBRACE, - ACTIONS(6493), 1, - anon_sym_COMMA, - STATE(2850), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3046), 2, + STATE(3077), 2, sym_line_comment, sym_block_comment, - [89418] = 6, + ACTIONS(4961), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89195] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1607), 1, + ACTIONS(6582), 1, anon_sym_GT, - ACTIONS(6495), 1, + ACTIONS(6584), 1, anon_sym_COMMA, - STATE(2867), 1, - aux_sym_type_arguments_repeat1, - STATE(3047), 2, + STATE(2871), 1, + aux_sym_type_parameters_repeat1, + STATE(3078), 2, + sym_line_comment, + sym_block_comment, + [89215] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1359), 1, + anon_sym_RPAREN, + ACTIONS(5724), 1, + anon_sym_COMMA, + STATE(2999), 1, + aux_sym_parameters_repeat1, + STATE(3079), 2, sym_line_comment, sym_block_comment, - [89438] = 6, + [89235] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1607), 1, - anon_sym_GT, - ACTIONS(6495), 1, - anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, - STATE(3048), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(6586), 1, + anon_sym_SEMI, + STATE(1164), 1, + sym_declaration_list, + STATE(3080), 2, sym_line_comment, sym_block_comment, - [89458] = 6, + [89255] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5041), 1, anon_sym_where, - ACTIONS(6497), 1, + ACTIONS(6588), 1, anon_sym_SEMI, - STATE(3566), 1, + STATE(3599), 1, sym_where_clause, - STATE(3049), 2, + STATE(3081), 2, sym_line_comment, sym_block_comment, - [89478] = 6, + [89275] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1001), 1, - anon_sym_RBRACK, - ACTIONS(4234), 1, - anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, - STATE(3050), 2, + STATE(3082), 2, sym_line_comment, sym_block_comment, - [89498] = 6, + ACTIONS(6590), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3088), 1, - anon_sym_RPAREN, - ACTIONS(6499), 1, + ACTIONS(5604), 1, anon_sym_COMMA, - STATE(2656), 1, - aux_sym_slice_pattern_repeat1, - STATE(3051), 2, + ACTIONS(6592), 1, + anon_sym_PIPE, + STATE(2941), 1, + aux_sym_closure_parameters_repeat1, + STATE(3083), 2, sym_line_comment, sym_block_comment, - [89518] = 4, + [89311] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3052), 2, + ACTIONS(1359), 1, + anon_sym_RPAREN, + ACTIONS(5724), 1, + anon_sym_COMMA, + STATE(3015), 1, + aux_sym_parameters_repeat1, + STATE(3084), 2, sym_line_comment, sym_block_comment, - ACTIONS(6501), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [89534] = 5, + [89331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6505), 1, - anon_sym_COLON, - ACTIONS(6503), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3053), 2, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6594), 1, + anon_sym_SEMI, + STATE(3675), 1, + sym_where_clause, + STATE(3085), 2, sym_line_comment, sym_block_comment, - [89552] = 6, + [89351] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5252), 1, - anon_sym_RBRACE, - ACTIONS(6507), 1, - anon_sym_COMMA, - STATE(2942), 1, - aux_sym_struct_pattern_repeat1, - STATE(3054), 2, + STATE(3086), 2, sym_line_comment, sym_block_comment, - [89572] = 6, + ACTIONS(4835), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89367] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6509), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6596), 1, anon_sym_SEMI, - STATE(3636), 1, - sym_where_clause, - STATE(3055), 2, + ACTIONS(6598), 1, + anon_sym_RBRACK, + STATE(3087), 2, sym_line_comment, sym_block_comment, - [89592] = 6, + [89387] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(6511), 1, - anon_sym_COLON_COLON, - STATE(1508), 1, - sym_field_initializer_list, - STATE(3056), 2, + ACTIONS(6600), 1, + anon_sym_SEMI, + STATE(546), 1, + sym_declaration_list, + STATE(3088), 2, sym_line_comment, sym_block_comment, - [89612] = 4, + [89407] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3057), 2, + STATE(3089), 2, sym_line_comment, sym_block_comment, - ACTIONS(6513), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [89628] = 6, + ACTIONS(4965), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89423] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6515), 1, - anon_sym_LPAREN, - ACTIONS(6517), 1, - anon_sym_LBRACK, - ACTIONS(6519), 1, - anon_sym_LBRACE, - STATE(3058), 2, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + ACTIONS(6602), 1, + anon_sym_GT, + STATE(3234), 1, + sym_lifetime, + STATE(3090), 2, sym_line_comment, sym_block_comment, - [89648] = 6, + [89443] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6521), 1, - anon_sym_LBRACE, - STATE(1993), 1, - sym_type_arguments, - STATE(3059), 2, + ACTIONS(6602), 1, + anon_sym_GT, + ACTIONS(6604), 1, + anon_sym_COMMA, + STATE(3033), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3091), 2, sym_line_comment, sym_block_comment, - [89668] = 6, + [89463] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6523), 1, - anon_sym_RPAREN, - ACTIONS(6525), 1, - anon_sym_COMMA, - STATE(2879), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(3060), 2, + STATE(3092), 2, sym_line_comment, sym_block_comment, - [89688] = 6, + ACTIONS(5005), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89479] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2722), 1, - anon_sym_RPAREN, - ACTIONS(6527), 1, - anon_sym_COMMA, - STATE(3041), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3061), 2, + STATE(3093), 2, sym_line_comment, sym_block_comment, - [89708] = 6, + ACTIONS(5017), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89495] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6529), 1, - anon_sym_SEMI, - STATE(503), 1, - sym_declaration_list, - STATE(3062), 2, + STATE(3094), 2, sym_line_comment, sym_block_comment, - [89728] = 6, + ACTIONS(4989), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89511] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4126), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(6531), 1, - anon_sym_COLON_COLON, - STATE(1842), 1, - sym_field_initializer_list, - STATE(3063), 2, + ACTIONS(6606), 1, + anon_sym_SEMI, + STATE(642), 1, + sym_declaration_list, + STATE(3095), 2, sym_line_comment, sym_block_comment, - [89748] = 6, + [89531] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3090), 1, - anon_sym_RPAREN, - ACTIONS(6533), 1, + ACTIONS(6054), 1, + anon_sym_GT, + ACTIONS(6608), 1, anon_sym_COMMA, - STATE(2656), 1, - aux_sym_slice_pattern_repeat1, - STATE(3064), 2, + STATE(3063), 1, + aux_sym_use_bounds_repeat1, + STATE(3096), 2, sym_line_comment, sym_block_comment, - [89768] = 6, + [89551] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3094), 1, - anon_sym_RBRACK, - ACTIONS(6535), 1, - anon_sym_COMMA, - STATE(2656), 1, - aux_sym_slice_pattern_repeat1, - STATE(3065), 2, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6610), 1, + anon_sym_SEMI, + STATE(3608), 1, + sym_where_clause, + STATE(3097), 2, sym_line_comment, sym_block_comment, - [89788] = 6, + [89571] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5254), 1, - anon_sym_RBRACE, - ACTIONS(6537), 1, + ACTIONS(6056), 1, + anon_sym_GT, + ACTIONS(6612), 1, anon_sym_COMMA, - STATE(2942), 1, - aux_sym_struct_pattern_repeat1, - STATE(3066), 2, + STATE(3063), 1, + aux_sym_use_bounds_repeat1, + STATE(3098), 2, sym_line_comment, sym_block_comment, - [89808] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [89591] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6539), 1, - anon_sym_move, - STATE(215), 1, - sym_closure_parameters, - STATE(3067), 2, + ACTIONS(6614), 1, + anon_sym_EQ, + ACTIONS(6616), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3099), 2, sym_line_comment, sym_block_comment, - [89828] = 4, + [89609] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3068), 2, + STATE(3100), 2, sym_line_comment, sym_block_comment, - ACTIONS(6541), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [89844] = 6, + ACTIONS(4863), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89625] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5955), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6618), 2, anon_sym_RPAREN, - ACTIONS(5957), 1, anon_sym_COMMA, - STATE(3061), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3069), 2, + STATE(3101), 2, sym_line_comment, sym_block_comment, - [89864] = 4, + [89643] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3070), 2, + STATE(3102), 2, sym_line_comment, sym_block_comment, - ACTIONS(995), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [89880] = 5, + ACTIONS(5019), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89659] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6543), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3071), 2, + STATE(3103), 2, sym_line_comment, sym_block_comment, - [89898] = 6, + ACTIONS(4937), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89675] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(6545), 1, + ACTIONS(6620), 1, anon_sym_SEMI, - STATE(505), 1, + STATE(710), 1, sym_declaration_list, - STATE(3072), 2, + STATE(3104), 2, sym_line_comment, sym_block_comment, - [89918] = 5, + [89695] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6547), 2, - anon_sym_RPAREN, + ACTIONS(6622), 1, + anon_sym_RBRACE, + ACTIONS(6624), 1, anon_sym_COMMA, - STATE(3073), 2, + STATE(3110), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3105), 2, sym_line_comment, sym_block_comment, - [89936] = 4, + [89715] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3074), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(6626), 1, + anon_sym_SEMI, + STATE(548), 1, + sym_declaration_list, + STATE(3106), 2, sym_line_comment, sym_block_comment, - ACTIONS(6549), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89952] = 5, + [89735] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6547), 1, - anon_sym_RPAREN, - ACTIONS(6551), 1, - anon_sym_COMMA, - STATE(3075), 3, + STATE(3107), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [89970] = 5, + ACTIONS(4951), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89751] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6554), 2, - anon_sym_GT, + STATE(3108), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4977), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89767] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6630), 1, + anon_sym_EQ, + ACTIONS(6628), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3076), 2, + STATE(3109), 2, sym_line_comment, sym_block_comment, - [89988] = 5, + [89785] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4671), 1, - anon_sym_COLON_COLON, - ACTIONS(6556), 2, - anon_sym_RPAREN, + ACTIONS(5088), 1, + anon_sym_RBRACE, + ACTIONS(6632), 1, anon_sym_COMMA, - STATE(3077), 2, + STATE(3134), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3110), 2, sym_line_comment, sym_block_comment, - [90006] = 6, + [89805] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1381), 1, - anon_sym_RPAREN, - ACTIONS(5627), 1, + ACTIONS(5088), 1, + anon_sym_RBRACE, + ACTIONS(6632), 1, anon_sym_COMMA, - STATE(2979), 1, - aux_sym_parameters_repeat1, - STATE(3078), 2, + STATE(3143), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3111), 2, sym_line_comment, sym_block_comment, - [90026] = 5, + [89825] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(5855), 2, - anon_sym_RPAREN, + ACTIONS(6634), 1, + anon_sym_RBRACE, + ACTIONS(6636), 1, anon_sym_COMMA, - STATE(3079), 2, + STATE(2884), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3112), 2, sym_line_comment, sym_block_comment, - [90044] = 6, + [89845] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6558), 1, - anon_sym_SEMI, - ACTIONS(6560), 1, - anon_sym_EQ, - STATE(3080), 2, + ACTIONS(4774), 1, + anon_sym_COLON, + ACTIONS(5070), 1, + anon_sym_COLON_COLON, + STATE(2565), 1, + sym_trait_bounds, + STATE(3113), 2, sym_line_comment, sym_block_comment, - [90064] = 6, + [89865] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1381), 1, + ACTIONS(6638), 1, anon_sym_RPAREN, - ACTIONS(5627), 1, + ACTIONS(6640), 1, anon_sym_COMMA, - STATE(2986), 1, - aux_sym_parameters_repeat1, - STATE(3081), 2, + STATE(2876), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3114), 2, sym_line_comment, sym_block_comment, - [90084] = 6, + [89885] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - ACTIONS(6562), 1, - anon_sym_GT, - STATE(3183), 1, - sym_lifetime, - STATE(3082), 2, + ACTIONS(6642), 1, + anon_sym_EQ_GT, + ACTIONS(6644), 1, + anon_sym_PIPE, + ACTIONS(6646), 1, + anon_sym_if, + STATE(3115), 2, sym_line_comment, sym_block_comment, - [90104] = 6, + [89905] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6562), 1, - anon_sym_GT, - ACTIONS(6564), 1, - anon_sym_COMMA, - STATE(2990), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3083), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + ACTIONS(6648), 1, + anon_sym_SEMI, + STATE(1185), 1, + sym_declaration_list, + STATE(3116), 2, sym_line_comment, sym_block_comment, - [90124] = 5, + [89925] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6566), 1, - anon_sym_RBRACE, - ACTIONS(6568), 1, + ACTIONS(941), 1, + anon_sym_RBRACK, + ACTIONS(4248), 1, anon_sym_COMMA, - STATE(3084), 3, + STATE(2590), 1, + aux_sym_arguments_repeat1, + STATE(3117), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [90142] = 6, + [89945] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6571), 1, - anon_sym_SEMI, - STATE(1122), 1, - sym_declaration_list, - STATE(3085), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6650), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3118), 2, sym_line_comment, sym_block_comment, - [90162] = 6, + [89963] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5869), 1, - anon_sym_GT, - ACTIONS(6573), 1, - anon_sym_COMMA, - STATE(2977), 1, - aux_sym_use_bounds_repeat1, - STATE(3086), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6652), 1, + anon_sym_SEMI, + ACTIONS(6654), 1, + anon_sym_EQ, + STATE(3119), 2, sym_line_comment, sym_block_comment, - [90182] = 6, + [89983] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, - anon_sym_GT, - ACTIONS(6577), 1, - anon_sym_COMMA, - STATE(3083), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3087), 2, + ACTIONS(6656), 1, + anon_sym_LPAREN, + ACTIONS(6658), 1, + anon_sym_LBRACK, + ACTIONS(6660), 1, + anon_sym_LBRACE, + STATE(3120), 2, sym_line_comment, sym_block_comment, - [90202] = 6, + [90003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6662), 2, anon_sym_GT, - ACTIONS(6579), 1, anon_sym_COMMA, - STATE(2977), 1, - aux_sym_use_bounds_repeat1, - STATE(3088), 2, + STATE(3121), 2, sym_line_comment, sym_block_comment, - [90222] = 6, + [90021] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6581), 1, - anon_sym_SEMI, - STATE(511), 1, - sym_declaration_list, - STATE(3089), 2, + ACTIONS(6664), 1, + sym_identifier, + ACTIONS(6666), 1, + anon_sym_ref, + ACTIONS(6668), 1, + sym_mutable_specifier, + STATE(3122), 2, sym_line_comment, sym_block_comment, - [90242] = 5, + [90041] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - anon_sym_AMP_AMP, - ACTIONS(4332), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(4979), 1, anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(3090), 2, + STATE(2008), 1, + sym_type_arguments, + STATE(3123), 2, sym_line_comment, sym_block_comment, - [90260] = 4, + [90061] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3091), 2, + ACTIONS(6670), 1, + anon_sym_LPAREN, + ACTIONS(6672), 1, + anon_sym_LBRACK, + ACTIONS(6674), 1, + anon_sym_LBRACE, + STATE(3124), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90276] = 4, + [90081] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3092), 2, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + ACTIONS(4991), 1, + anon_sym_BANG, + ACTIONS(6676), 1, + sym_identifier, + STATE(3125), 2, sym_line_comment, sym_block_comment, - ACTIONS(4933), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90292] = 6, + [90101] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - ACTIONS(6585), 1, + ACTIONS(6678), 1, anon_sym_SEMI, - STATE(513), 1, + STATE(517), 1, sym_declaration_list, - STATE(3093), 2, + STATE(3126), 2, sym_line_comment, sym_block_comment, - [90312] = 6, + [90121] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6587), 1, - sym_identifier, - ACTIONS(6589), 1, - anon_sym_await, - ACTIONS(6591), 1, - sym_integer_literal, - STATE(3094), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(6680), 1, + anon_sym_SEMI, + STATE(565), 1, + sym_declaration_list, + STATE(3127), 2, sym_line_comment, sym_block_comment, - [90332] = 4, + [90141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3095), 2, + ACTIONS(6682), 1, + anon_sym_GT, + ACTIONS(6684), 1, + anon_sym_COMMA, + STATE(3128), 3, sym_line_comment, sym_block_comment, - ACTIONS(4943), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90348] = 5, + aux_sym_type_parameters_repeat1, + [90159] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6595), 1, - anon_sym_EQ, - ACTIONS(6593), 2, - anon_sym_RBRACE, + ACTIONS(4825), 1, + anon_sym_GT, + ACTIONS(6687), 1, anon_sym_COMMA, - STATE(3096), 2, + STATE(3128), 1, + aux_sym_type_parameters_repeat1, + STATE(3129), 2, sym_line_comment, sym_block_comment, - [90366] = 4, + [90179] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3097), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(6689), 1, + anon_sym_SEMI, + STATE(613), 1, + sym_declaration_list, + STATE(3130), 2, sym_line_comment, sym_block_comment, - ACTIONS(4949), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90382] = 6, + [90199] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_RBRACE, - ACTIONS(6597), 1, - anon_sym_COMMA, - STATE(3039), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3098), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(6691), 1, + anon_sym_SEMI, + STATE(519), 1, + sym_declaration_list, + STATE(3131), 2, sym_line_comment, sym_block_comment, - [90402] = 4, + [90219] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3099), 2, + STATE(3132), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 3, + ACTIONS(5021), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [90418] = 6, + [90235] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_RBRACE, - ACTIONS(6597), 1, + ACTIONS(3110), 1, + anon_sym_RBRACK, + ACTIONS(6693), 1, anon_sym_COMMA, - STATE(3044), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3100), 2, + STATE(2774), 1, + aux_sym_slice_pattern_repeat1, + STATE(3133), 2, sym_line_comment, sym_block_comment, - [90438] = 6, + [90255] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(937), 1, - anon_sym_RBRACK, - ACTIONS(4186), 1, + ACTIONS(6695), 1, + anon_sym_RBRACE, + ACTIONS(6697), 1, anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, - STATE(3101), 2, + STATE(3134), 3, sym_line_comment, sym_block_comment, - [90458] = 4, + aux_sym_enum_variant_list_repeat2, + [90273] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3102), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(6700), 1, + anon_sym_SEMI, + STATE(525), 1, + sym_declaration_list, + STATE(3135), 2, sym_line_comment, sym_block_comment, - ACTIONS(4953), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90474] = 6, + [90293] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5786), 1, + ACTIONS(6104), 1, anon_sym_RPAREN, - ACTIONS(5788), 1, + ACTIONS(6106), 1, anon_sym_COMMA, - STATE(2832), 1, + STATE(3071), 1, aux_sym_tuple_pattern_repeat1, - STATE(3103), 2, + STATE(3136), 2, sym_line_comment, sym_block_comment, - [90494] = 6, + [90313] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6599), 1, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(6702), 1, anon_sym_SEMI, - STATE(3543), 1, - sym_where_clause, - STATE(3104), 2, + STATE(620), 1, + sym_declaration_list, + STATE(3137), 2, sym_line_comment, sym_block_comment, - [90514] = 6, + [90333] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, - anon_sym_RBRACK, - ACTIONS(4178), 1, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(6704), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2576), 1, - aux_sym_arguments_repeat1, - STATE(3105), 2, - sym_line_comment, - sym_block_comment, - [90534] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3496), 1, - anon_sym_LBRACE, - ACTIONS(6601), 1, - anon_sym_COLON_COLON, - STATE(1508), 1, - sym_field_initializer_list, - STATE(3106), 2, + STATE(3138), 2, sym_line_comment, sym_block_comment, - [90554] = 6, + [90351] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6603), 1, - anon_sym_LPAREN, - ACTIONS(6605), 1, - anon_sym_LBRACK, - ACTIONS(6607), 1, - anon_sym_LBRACE, - STATE(3107), 2, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + ACTIONS(4774), 1, + anon_sym_COLON, + STATE(2565), 1, + sym_trait_bounds, + STATE(3139), 2, sym_line_comment, sym_block_comment, - [90574] = 4, + [90371] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3108), 2, + STATE(3140), 2, sym_line_comment, sym_block_comment, - ACTIONS(4576), 3, + ACTIONS(4929), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [90590] = 6, + [90387] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - anon_sym_LPAREN, - ACTIONS(6611), 1, - anon_sym_LBRACK, - ACTIONS(6613), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - STATE(3109), 2, + ACTIONS(6706), 1, + anon_sym_SEMI, + STATE(527), 1, + sym_declaration_list, + STATE(3141), 2, sym_line_comment, sym_block_comment, - [90610] = 5, + [90407] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6615), 2, - anon_sym_GT, + ACTIONS(6710), 1, + anon_sym_EQ, + ACTIONS(6708), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3110), 2, - sym_line_comment, - sym_block_comment, - [90628] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6617), 1, - anon_sym_SEMI, - ACTIONS(6619), 1, - anon_sym_RBRACK, - STATE(3111), 2, + STATE(3142), 2, sym_line_comment, sym_block_comment, - [90648] = 4, + [90425] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3112), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6621), 3, - anon_sym_SEMI, + ACTIONS(5114), 1, anon_sym_RBRACE, + ACTIONS(6712), 1, anon_sym_COMMA, - [90664] = 6, + STATE(3134), 1, + aux_sym_enum_variant_list_repeat2, + STATE(3143), 2, + sym_line_comment, + sym_block_comment, + [90445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(6623), 1, + ACTIONS(5118), 1, anon_sym_for, - STATE(1993), 1, + STATE(2008), 1, sym_type_arguments, - STATE(3113), 2, + STATE(3144), 2, sym_line_comment, sym_block_comment, - [90684] = 6, + [90465] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6625), 1, - anon_sym_COLON_COLON, - STATE(1994), 1, - sym_type_arguments, - STATE(3114), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(6714), 1, + anon_sym_SEMI, + STATE(765), 1, + sym_declaration_list, + STATE(3145), 2, sym_line_comment, sym_block_comment, - [90704] = 5, + [90485] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - anon_sym_GT, - ACTIONS(6629), 1, - anon_sym_COMMA, - STATE(3115), 3, + ACTIONS(5110), 1, + anon_sym_LBRACE, + ACTIONS(6716), 1, + anon_sym_SEMI, + STATE(630), 1, + sym_declaration_list, + STATE(3146), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [90722] = 5, + [90505] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - anon_sym_AMP_AMP, - ACTIONS(6632), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(3116), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(6718), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(3147), 2, sym_line_comment, sym_block_comment, - [90740] = 6, + [90525] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4644), 1, anon_sym_LT2, - ACTIONS(5074), 1, + ACTIONS(6720), 1, anon_sym_for, - STATE(1993), 1, + STATE(2008), 1, sym_type_arguments, - STATE(3117), 2, + STATE(3148), 2, sym_line_comment, sym_block_comment, - [90760] = 6, + [90545] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, + ACTIONS(3230), 1, anon_sym_PLUS, - ACTIONS(6634), 1, + ACTIONS(6722), 1, anon_sym_SEMI, - ACTIONS(6636), 1, + ACTIONS(6724), 1, anon_sym_EQ, - STATE(3118), 2, + STATE(3149), 2, sym_line_comment, sym_block_comment, - [90780] = 6, + [90565] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6638), 1, - anon_sym_RBRACE, - ACTIONS(6640), 1, - anon_sym_COMMA, - STATE(2833), 1, - aux_sym_use_list_repeat1, - STATE(3119), 2, + ACTIONS(5041), 1, + anon_sym_where, + ACTIONS(6726), 1, + anon_sym_EQ, + STATE(3727), 1, + sym_where_clause, + STATE(3150), 2, sym_line_comment, sym_block_comment, - [90800] = 6, + [90585] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6642), 1, - anon_sym_GT, - ACTIONS(6644), 1, - anon_sym_COMMA, - STATE(2852), 1, - aux_sym_type_parameters_repeat1, - STATE(3120), 2, + ACTIONS(4644), 1, + anon_sym_LT2, + ACTIONS(6728), 1, + anon_sym_for, + STATE(2008), 1, + sym_type_arguments, + STATE(3151), 2, sym_line_comment, sym_block_comment, - [90820] = 6, + [90605] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6646), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(3121), 2, + STATE(3152), 2, sym_line_comment, sym_block_comment, - [90840] = 6, + ACTIONS(6730), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90621] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - ACTIONS(6648), 1, - anon_sym_SEMI, - STATE(1147), 1, - sym_declaration_list, - STATE(3122), 2, + ACTIONS(6732), 1, + sym_identifier, + ACTIONS(6734), 1, + anon_sym_ref, + ACTIONS(6736), 1, + sym_mutable_specifier, + STATE(3153), 2, sym_line_comment, sym_block_comment, - [90860] = 6, + [90641] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6650), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(3123), 2, + ACTIONS(999), 1, + anon_sym_RBRACK, + ACTIONS(4270), 1, + anon_sym_COMMA, + STATE(2590), 1, + aux_sym_arguments_repeat1, + STATE(3154), 2, sym_line_comment, sym_block_comment, - [90880] = 6, + [90661] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6652), 1, - anon_sym_EQ, - STATE(3704), 1, - sym_where_clause, - STATE(3124), 2, + ACTIONS(6738), 1, + anon_sym_move, + STATE(248), 1, + sym_closure_parameters, + STATE(3155), 2, sym_line_comment, sym_block_comment, - [90900] = 6, + [90681] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_LT2, - ACTIONS(6654), 1, - anon_sym_for, - STATE(1993), 1, - sym_type_arguments, - STATE(3125), 2, + ACTIONS(6740), 1, + anon_sym_RPAREN, + ACTIONS(6742), 1, + anon_sym_COLON_COLON, + STATE(3156), 2, sym_line_comment, sym_block_comment, - [90920] = 6, + [90698] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4771), 1, - anon_sym_GT, - ACTIONS(6656), 1, - anon_sym_COMMA, - STATE(3115), 1, - aux_sym_type_parameters_repeat1, - STATE(3126), 2, + ACTIONS(5560), 1, + sym_super, + ACTIONS(6744), 1, + sym_identifier, + STATE(3157), 2, sym_line_comment, sym_block_comment, - [90940] = 6, + [90715] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, - anon_sym_where, - ACTIONS(6658), 1, - anon_sym_SEMI, - STATE(3525), 1, - sym_where_clause, - STATE(3127), 2, + ACTIONS(4118), 1, + anon_sym_LPAREN, + STATE(1662), 1, + sym_parameters, + STATE(3158), 2, sym_line_comment, sym_block_comment, - [90960] = 6, + [90732] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6660), 1, - sym_identifier, - ACTIONS(6662), 1, - anon_sym_ref, - ACTIONS(6664), 1, - sym_mutable_specifier, - STATE(3128), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(1218), 1, + sym_declaration_list, + STATE(3159), 2, sym_line_comment, sym_block_comment, - [90980] = 4, + [90749] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3129), 2, + STATE(238), 1, + sym_closure_parameters, + STATE(3160), 2, sym_line_comment, sym_block_comment, - ACTIONS(6666), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90996] = 4, + [90766] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3130), 2, + ACTIONS(5773), 1, + sym_identifier, + ACTIONS(5775), 1, + sym_super, + STATE(3161), 2, sym_line_comment, sym_block_comment, - ACTIONS(6668), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [91012] = 6, + [90783] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - ACTIONS(6670), 1, - anon_sym_SEMI, - STATE(699), 1, - sym_declaration_list, - STATE(3131), 2, + ACTIONS(4332), 1, + anon_sym_EQ_GT, + ACTIONS(6746), 1, + anon_sym_AMP_AMP, + STATE(3162), 2, sym_line_comment, sym_block_comment, - [91032] = 6, + [90800] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3264), 1, + ACTIONS(5928), 2, anon_sym_RPAREN, - ACTIONS(6672), 1, anon_sym_COMMA, - STATE(3075), 1, - aux_sym_tuple_type_repeat1, - STATE(3132), 2, + STATE(3163), 2, sym_line_comment, sym_block_comment, - [91052] = 4, + [90815] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6674), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3133), 2, + STATE(236), 1, + sym_closure_parameters, + STATE(3164), 2, sym_line_comment, sym_block_comment, - [91067] = 5, + [90832] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6676), 1, - anon_sym_SEMI, - ACTIONS(6678), 1, - anon_sym_as, - STATE(3134), 2, + ACTIONS(6573), 1, + anon_sym_EQ_GT, + ACTIONS(6746), 1, + anon_sym_AMP_AMP, + STATE(3165), 2, sym_line_comment, sym_block_comment, - [91084] = 5, + [90849] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3776), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_PLUS, - STATE(3135), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(645), 1, + sym_declaration_list, + STATE(3166), 2, sym_line_comment, sym_block_comment, - [91101] = 4, + [90866] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6680), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3136), 2, + ACTIONS(5288), 1, + anon_sym_RBRACE, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(3167), 2, sym_line_comment, sym_block_comment, - [91116] = 5, + [90883] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, + ACTIONS(5076), 1, anon_sym_LBRACE, - STATE(759), 1, + STATE(726), 1, sym_field_declaration_list, - STATE(3137), 2, + STATE(3168), 2, sym_line_comment, sym_block_comment, - [91133] = 5, + [90900] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2285), 1, - sym_parameters, - STATE(3138), 2, + ACTIONS(5938), 1, + sym_identifier, + ACTIONS(5940), 1, + sym_super, + STATE(3169), 2, sym_line_comment, sym_block_comment, - [91150] = 5, + [90917] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 1, + ACTIONS(5840), 2, + sym_identifier, sym_super, - ACTIONS(6682), 1, + STATE(3170), 2, + sym_line_comment, + sym_block_comment, + [90932] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6750), 1, sym_identifier, - STATE(3139), 2, + ACTIONS(6752), 1, + sym_super, + STATE(3171), 2, sym_line_comment, sym_block_comment, - [91167] = 5, + [90949] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6684), 1, - anon_sym_SEMI, - ACTIONS(6686), 1, - anon_sym_as, - STATE(3140), 2, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + ACTIONS(6442), 1, + anon_sym_for, + STATE(3172), 2, sym_line_comment, sym_block_comment, - [91184] = 5, + [90966] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6688), 1, + ACTIONS(6754), 1, sym_identifier, - ACTIONS(6690), 1, + ACTIONS(6756), 1, sym_super, - STATE(3141), 2, + STATE(3173), 2, sym_line_comment, sym_block_comment, - [91201] = 5, + [90983] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(6382), 1, - anon_sym_for, - STATE(3142), 2, + ACTIONS(5312), 1, + sym_super, + ACTIONS(5836), 1, + sym_identifier, + STATE(3174), 2, sym_line_comment, sym_block_comment, - [91218] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91000] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(246), 1, - sym_closure_parameters, - STATE(3143), 2, + ACTIONS(6758), 1, + sym_identifier, + ACTIONS(6760), 1, + sym_super, + STATE(3175), 2, sym_line_comment, sym_block_comment, - [91235] = 5, + [91017] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - STATE(3087), 1, - sym_lifetime, - STATE(3144), 2, + STATE(231), 1, + sym_closure_parameters, + STATE(3176), 2, sym_line_comment, sym_block_comment, - [91252] = 5, + [91034] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 1, - sym_super, - ACTIONS(6692), 1, - sym_identifier, - STATE(3145), 2, + ACTIONS(6762), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3177), 2, sym_line_comment, sym_block_comment, - [91269] = 5, + [91049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(6362), 1, - anon_sym_for, - STATE(3146), 2, + ACTIONS(6764), 1, + anon_sym_LT, + STATE(937), 1, + sym_type_parameters, + STATE(3178), 2, sym_line_comment, sym_block_comment, - [91286] = 4, + [91066] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5915), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3147), 2, + ACTIONS(6766), 1, + anon_sym_SEMI, + ACTIONS(6768), 1, + anon_sym_EQ, + STATE(3179), 2, sym_line_comment, sym_block_comment, - [91301] = 5, + [91083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6694), 1, - sym_identifier, - ACTIONS(6696), 1, - sym_super, - STATE(3148), 2, + ACTIONS(4118), 1, + anon_sym_LPAREN, + STATE(1696), 1, + sym_parameters, + STATE(3180), 2, sym_line_comment, sym_block_comment, - [91318] = 4, + [91100] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6698), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3149), 2, + ACTIONS(6282), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(3181), 2, sym_line_comment, sym_block_comment, - [91333] = 5, + [91115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, - sym_super, - ACTIONS(6700), 1, - sym_identifier, - STATE(3150), 2, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(6770), 1, + anon_sym_in, + STATE(3182), 2, sym_line_comment, sym_block_comment, - [91350] = 5, + [91132] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, - anon_sym_LPAREN, - STATE(1178), 1, - sym_parameters, - STATE(3151), 2, + ACTIONS(5942), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3183), 2, sym_line_comment, sym_block_comment, - [91367] = 4, + [91147] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6702), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3152), 2, + ACTIONS(6772), 2, + sym_identifier, + sym_super, + STATE(3184), 2, sym_line_comment, sym_block_comment, - [91382] = 5, + [91162] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - STATE(1654), 1, - sym_parameters, - STATE(3153), 2, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + ACTIONS(5132), 1, + anon_sym_for, + STATE(3185), 2, sym_line_comment, sym_block_comment, - [91399] = 5, + [91179] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(5037), 1, anon_sym_LBRACE, - STATE(637), 1, - sym_declaration_list, - STATE(3154), 2, + STATE(1224), 1, + sym_field_declaration_list, + STATE(3186), 2, sym_line_comment, sym_block_comment, - [91416] = 5, + [91196] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5242), 1, - anon_sym_RBRACE, - ACTIONS(6704), 1, - anon_sym_SEMI, - STATE(3155), 2, + ACTIONS(3556), 1, + anon_sym_LBRACE, + STATE(1518), 1, + sym_field_initializer_list, + STATE(3187), 2, sym_line_comment, sym_block_comment, - [91433] = 4, + [91213] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6706), 2, - anon_sym_GT, + ACTIONS(6423), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3156), 2, + STATE(3188), 2, sym_line_comment, sym_block_comment, - [91448] = 4, + [91228] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6372), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3157), 2, + ACTIONS(6774), 1, + anon_sym_RPAREN, + ACTIONS(6776), 1, + anon_sym_COLON_COLON, + STATE(3189), 2, sym_line_comment, sym_block_comment, - [91463] = 5, + [91245] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3832), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_PLUS, - STATE(3158), 2, + ACTIONS(4118), 1, + anon_sym_LPAREN, + STATE(1695), 1, + sym_parameters, + STATE(3190), 2, sym_line_comment, sym_block_comment, - [91480] = 5, + [91262] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, - anon_sym_LPAREN, - ACTIONS(6710), 1, - anon_sym_COLON_COLON, - STATE(3159), 2, + ACTIONS(6778), 2, + sym_identifier, + sym_metavariable, + STATE(3191), 2, sym_line_comment, sym_block_comment, - [91497] = 5, + [91277] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - STATE(533), 1, + STATE(677), 1, sym_declaration_list, - STATE(3160), 2, + STATE(3192), 2, sym_line_comment, sym_block_comment, - [91514] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91294] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(222), 1, - sym_closure_parameters, - STATE(3161), 2, + ACTIONS(6764), 1, + anon_sym_LT, + STATE(1048), 1, + sym_type_parameters, + STATE(3193), 2, sym_line_comment, sym_block_comment, - [91531] = 5, + [91311] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3836), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_PLUS, - STATE(3162), 2, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + STATE(3234), 1, + sym_lifetime, + STATE(3194), 2, sym_line_comment, sym_block_comment, - [91548] = 4, + [91328] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6712), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3163), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(1229), 1, + sym_declaration_list, + STATE(3195), 2, sym_line_comment, sym_block_comment, - [91563] = 5, + [91345] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6018), 1, - sym_identifier, - ACTIONS(6020), 1, + ACTIONS(5312), 1, sym_super, - STATE(3164), 2, + ACTIONS(5816), 1, + sym_identifier, + STATE(3196), 2, sym_line_comment, sym_block_comment, - [91580] = 4, + [91362] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5917), 2, - sym_identifier, - sym_super, - STATE(3165), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(1270), 1, + sym_declaration_list, + STATE(3197), 2, sym_line_comment, sym_block_comment, - [91595] = 5, + [91379] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6714), 1, + STATE(237), 1, + sym_closure_parameters, + STATE(3198), 2, + sym_line_comment, + sym_block_comment, + [91396] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5775), 2, sym_identifier, - ACTIONS(6716), 1, sym_super, - STATE(3166), 2, + STATE(3199), 2, sym_line_comment, sym_block_comment, - [91612] = 5, + [91411] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5385), 1, - anon_sym_LBRACE, - STATE(644), 1, - sym_enum_variant_list, - STATE(3167), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2303), 1, + sym_parameters, + STATE(3200), 2, sym_line_comment, sym_block_comment, - [91629] = 5, + [91428] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6682), 1, - sym_identifier, - ACTIONS(6718), 1, + ACTIONS(6760), 1, sym_super, - STATE(3168), 2, + ACTIONS(6780), 1, + sym_identifier, + STATE(3201), 2, + sym_line_comment, + sym_block_comment, + [91445] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(1277), 1, + sym_declaration_list, + STATE(3202), 2, sym_line_comment, sym_block_comment, - [91646] = 5, + [91462] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - STATE(761), 1, - sym_field_declaration_list, - STATE(3169), 2, + STATE(1278), 1, + sym_declaration_list, + STATE(3203), 2, sym_line_comment, sym_block_comment, - [91663] = 5, + [91479] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5822), 1, - sym_identifier, - STATE(3170), 2, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6782), 1, + anon_sym_RPAREN, + STATE(3204), 2, sym_line_comment, sym_block_comment, - [91680] = 5, + [91496] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6720), 1, - sym_identifier, - ACTIONS(6722), 1, + ACTIONS(5312), 1, sym_super, - STATE(3171), 2, + ACTIONS(5808), 1, + sym_identifier, + STATE(3205), 2, sym_line_comment, sym_block_comment, - [91697] = 4, + [91513] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6255), 2, + ACTIONS(6784), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(3172), 2, + STATE(3206), 2, sym_line_comment, sym_block_comment, - [91712] = 5, + [91528] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_COLON_COLON, - ACTIONS(4961), 1, - anon_sym_BANG, - STATE(3173), 2, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6782), 1, + anon_sym_RBRACK, + STATE(3207), 2, sym_line_comment, sym_block_comment, - [91729] = 5, + [91545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_COLON, - STATE(2542), 1, - sym_trait_bounds, - STATE(3174), 2, + ACTIONS(5710), 1, + sym_super, + ACTIONS(6786), 1, + sym_identifier, + STATE(3208), 2, sym_line_comment, sym_block_comment, - [91746] = 5, + [91562] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6724), 1, - anon_sym_LT, - STATE(940), 1, - sym_type_parameters, - STATE(3175), 2, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6788), 1, + anon_sym_RBRACE, + STATE(3209), 2, sym_line_comment, sym_block_comment, - [91763] = 4, + [91579] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5383), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3176), 2, + STATE(248), 1, + sym_closure_parameters, + STATE(3210), 2, sym_line_comment, sym_block_comment, - [91778] = 5, + [91596] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - STATE(1640), 1, - sym_parameters, - STATE(3177), 2, + ACTIONS(4124), 1, + anon_sym_LT2, + STATE(1754), 1, + sym_type_arguments, + STATE(3211), 2, sym_line_comment, sym_block_comment, - [91795] = 4, + [91613] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6726), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3178), 2, + ACTIONS(6790), 1, + anon_sym_SEMI, + ACTIONS(6792), 1, + anon_sym_EQ, + STATE(3212), 2, sym_line_comment, sym_block_comment, - [91810] = 5, + [91630] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, + ACTIONS(5616), 1, anon_sym_PIPE, - ACTIONS(6728), 1, - anon_sym_in, - STATE(3179), 2, + ACTIONS(5704), 1, + anon_sym_COLON, + STATE(3213), 2, sym_line_comment, sym_block_comment, - [91827] = 5, + [91647] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3496), 1, + ACTIONS(5394), 1, anon_sym_LBRACE, - STATE(1508), 1, - sym_field_initializer_list, - STATE(3180), 2, + STATE(1199), 1, + sym_enum_variant_list, + STATE(3214), 2, sym_line_comment, sym_block_comment, - [91844] = 5, + [91664] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6724), 1, - anon_sym_LT, - STATE(1085), 1, - sym_type_parameters, - STATE(3181), 2, + ACTIONS(5441), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3215), 2, sym_line_comment, sym_block_comment, - [91861] = 4, + [91679] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6730), 2, - sym_identifier, - sym_super, - STATE(3182), 2, + ACTIONS(6794), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3216), 2, sym_line_comment, sym_block_comment, - [91876] = 4, + [91694] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6392), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3183), 2, + ACTIONS(5560), 1, + sym_super, + ACTIONS(6796), 1, + sym_identifier, + STATE(3217), 2, sym_line_comment, sym_block_comment, - [91891] = 5, + [91711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5440), 1, + ACTIONS(5394), 1, anon_sym_LBRACE, - STATE(1182), 1, + STATE(1286), 1, sym_enum_variant_list, - STATE(3184), 2, - sym_line_comment, - sym_block_comment, - [91908] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5244), 1, - anon_sym_RBRACE, - ACTIONS(6704), 1, - anon_sym_SEMI, - STATE(3185), 2, + STATE(3218), 2, sym_line_comment, sym_block_comment, - [91925] = 4, + [91728] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6732), 2, + ACTIONS(6798), 2, sym_identifier, sym_metavariable, - STATE(3186), 2, + STATE(3219), 2, sym_line_comment, sym_block_comment, - [91940] = 5, + [91743] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4078), 1, - anon_sym_LPAREN, - STATE(1677), 1, - sym_parameters, - STATE(3187), 2, + ACTIONS(6800), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3220), 2, sym_line_comment, sym_block_comment, - [91957] = 5, + [91758] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(762), 1, - sym_declaration_list, - STATE(3188), 2, + STATE(250), 1, + sym_closure_parameters, + STATE(3221), 2, sym_line_comment, sym_block_comment, - [91974] = 4, + [91775] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6734), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3189), 2, + ACTIONS(6802), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3222), 2, sym_line_comment, sym_block_comment, - [91989] = 5, + [91790] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6736), 1, - anon_sym_SEMI, - ACTIONS(6738), 1, - anon_sym_as, - STATE(3190), 2, + ACTIONS(5394), 1, + anon_sym_LBRACE, + STATE(1234), 1, + sym_enum_variant_list, + STATE(3223), 2, sym_line_comment, sym_block_comment, - [92006] = 5, + [91807] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 1, - sym_super, - ACTIONS(6740), 1, + ACTIONS(5940), 2, sym_identifier, - STATE(3191), 2, + sym_super, + STATE(3224), 2, sym_line_comment, sym_block_comment, - [92023] = 4, + [91822] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6274), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(3192), 2, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1289), 1, + sym_field_declaration_list, + STATE(3225), 2, sym_line_comment, sym_block_comment, - [92038] = 5, + [91839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6742), 1, - anon_sym_in, - STATE(3193), 2, + ACTIONS(6756), 1, + sym_super, + ACTIONS(6804), 1, + sym_identifier, + STATE(3226), 2, sym_line_comment, sym_block_comment, - [92055] = 5, + [91856] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, + ACTIONS(5312), 1, sym_super, - ACTIONS(6744), 1, + ACTIONS(5773), 1, sym_identifier, - STATE(3194), 2, + STATE(3227), 2, sym_line_comment, sym_block_comment, - [92072] = 5, + [91873] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6746), 1, - anon_sym_RPAREN, - STATE(3195), 2, + ACTIONS(6760), 1, + sym_super, + ACTIONS(6806), 1, + sym_identifier, + STATE(3228), 2, sym_line_comment, sym_block_comment, - [92089] = 5, + [91890] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_RPAREN, - ACTIONS(6750), 1, - anon_sym_COLON_COLON, - STATE(3196), 2, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1291), 1, + sym_field_declaration_list, + STATE(3229), 2, sym_line_comment, sym_block_comment, - [92106] = 5, + [91907] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4570), 1, - anon_sym_BANG, - ACTIONS(6752), 1, - anon_sym_COLON_COLON, - STATE(3197), 2, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6808), 1, + anon_sym_RPAREN, + STATE(3230), 2, sym_line_comment, sym_block_comment, - [92123] = 5, + [91924] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, + ACTIONS(6748), 1, anon_sym_SEMI, - ACTIONS(6746), 1, + ACTIONS(6808), 1, anon_sym_RBRACK, - STATE(3198), 2, + STATE(3231), 2, sym_line_comment, sym_block_comment, - [92140] = 5, + [91941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1253), 1, - sym_declaration_list, - STATE(3199), 2, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6810), 1, + anon_sym_RBRACE, + STATE(3232), 2, sym_line_comment, sym_block_comment, - [92157] = 4, + [91958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 2, - sym_identifier, + ACTIONS(6756), 1, sym_super, - STATE(3200), 2, + ACTIONS(6812), 1, + sym_identifier, + STATE(3233), 2, sym_line_comment, sym_block_comment, - [92172] = 5, + [91975] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5385), 1, - anon_sym_LBRACE, - STATE(494), 1, - sym_enum_variant_list, - STATE(3201), 2, + ACTIONS(6476), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3234), 2, sym_line_comment, sym_block_comment, - [92189] = 5, + [91990] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 1, + ACTIONS(6756), 1, sym_super, - ACTIONS(6754), 1, + ACTIONS(6814), 1, sym_identifier, - STATE(3202), 2, + STATE(3235), 2, sym_line_comment, sym_block_comment, - [92206] = 5, + [92007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6756), 1, - anon_sym_RBRACE, - STATE(3203), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(1292), 1, + sym_declaration_list, + STATE(3236), 2, sym_line_comment, sym_block_comment, - [92223] = 5, + [92024] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, - anon_sym_RPAREN, - ACTIONS(6760), 1, + ACTIONS(6742), 1, anon_sym_COLON_COLON, - STATE(3204), 2, - sym_line_comment, - sym_block_comment, - [92240] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(216), 1, - sym_closure_parameters, - STATE(3205), 2, + ACTIONS(6774), 1, + anon_sym_RPAREN, + STATE(3237), 2, sym_line_comment, sym_block_comment, - [92257] = 4, + [92041] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 2, + ACTIONS(6816), 2, sym_identifier, sym_super, - STATE(3206), 2, + STATE(3238), 2, sym_line_comment, sym_block_comment, - [92272] = 5, + [92056] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - STATE(1260), 1, + STATE(729), 1, sym_declaration_list, - STATE(3207), 2, + STATE(3239), 2, sym_line_comment, sym_block_comment, - [92289] = 5, + [92073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6750), 1, - anon_sym_COLON_COLON, - ACTIONS(6762), 1, - anon_sym_RPAREN, - STATE(3208), 2, + ACTIONS(5710), 1, + sym_super, + ACTIONS(6818), 1, + sym_identifier, + STATE(3240), 2, sym_line_comment, sym_block_comment, - [92306] = 4, + [92090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6764), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3209), 2, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1237), 1, + sym_field_declaration_list, + STATE(3241), 2, sym_line_comment, sym_block_comment, - [92321] = 5, + [92107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, - sym_super, - ACTIONS(6766), 1, - sym_identifier, - STATE(3210), 2, + ACTIONS(4176), 1, + anon_sym_LBRACE, + STATE(1832), 1, + sym_field_initializer_list, + STATE(3242), 2, sym_line_comment, sym_block_comment, - [92338] = 5, + [92124] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1261), 1, - sym_declaration_list, - STATE(3211), 2, + STATE(229), 1, + sym_closure_parameters, + STATE(3243), 2, sym_line_comment, sym_block_comment, - [92355] = 5, + [92141] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, - anon_sym_RPAREN, - ACTIONS(6768), 1, - anon_sym_COLON_COLON, - STATE(3212), 2, + ACTIONS(6324), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3244), 2, sym_line_comment, sym_block_comment, - [92372] = 5, + [92156] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6758), 1, - anon_sym_RPAREN, - ACTIONS(6770), 1, - anon_sym_COLON_COLON, - STATE(3213), 2, + ACTIONS(6820), 1, + sym_identifier, + ACTIONS(6822), 1, + sym_super, + STATE(3245), 2, sym_line_comment, sym_block_comment, - [92389] = 5, + [92173] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6760), 1, - anon_sym_COLON_COLON, - ACTIONS(6772), 1, - anon_sym_RPAREN, - STATE(3214), 2, + ACTIONS(5775), 1, + sym_super, + ACTIONS(5836), 1, + sym_identifier, + STATE(3246), 2, sym_line_comment, sym_block_comment, - [92406] = 5, + [92190] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(224), 1, + STATE(235), 1, sym_closure_parameters, - STATE(3215), 2, + STATE(3247), 2, sym_line_comment, sym_block_comment, - [92423] = 5, + [92207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5218), 1, - anon_sym_RPAREN, - ACTIONS(6704), 1, - anon_sym_SEMI, - STATE(3216), 2, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(561), 1, + sym_field_declaration_list, + STATE(3248), 2, sym_line_comment, sym_block_comment, - [92440] = 5, + [92224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6768), 1, - anon_sym_COLON_COLON, - ACTIONS(6772), 1, - anon_sym_RPAREN, - STATE(3217), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2397), 1, + sym_parameters, + STATE(3249), 2, sym_line_comment, sym_block_comment, - [92457] = 5, + [92241] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6770), 1, - anon_sym_COLON_COLON, - ACTIONS(6772), 1, - anon_sym_RPAREN, - STATE(3218), 2, + ACTIONS(6824), 1, + sym_identifier, + ACTIONS(6826), 1, + sym_super, + STATE(3250), 2, sym_line_comment, sym_block_comment, - [92474] = 4, + [92258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6020), 2, + ACTIONS(6758), 1, sym_identifier, + ACTIONS(6828), 1, sym_super, - STATE(3219), 2, + STATE(3251), 2, sym_line_comment, sym_block_comment, - [92489] = 5, + [92275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, + ACTIONS(5775), 1, sym_super, - ACTIONS(6774), 1, + ACTIONS(5988), 1, sym_identifier, - STATE(3220), 2, + STATE(3252), 2, sym_line_comment, sym_block_comment, - [92506] = 5, + [92292] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, + ACTIONS(6828), 1, sym_super, - ACTIONS(5701), 1, + ACTIONS(6830), 1, sym_identifier, - STATE(3221), 2, + STATE(3253), 2, sym_line_comment, sym_block_comment, - [92523] = 5, + [92309] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6722), 1, - sym_super, - ACTIONS(6776), 1, - sym_identifier, - STATE(3222), 2, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(576), 1, + sym_field_declaration_list, + STATE(3254), 2, sym_line_comment, sym_block_comment, - [92540] = 4, + [92326] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3318), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3223), 2, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1240), 1, + sym_field_declaration_list, + STATE(3255), 2, sym_line_comment, sym_block_comment, - [92555] = 5, + [92343] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6778), 1, - anon_sym_RPAREN, - STATE(3224), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(652), 1, + sym_declaration_list, + STATE(3256), 2, sym_line_comment, sym_block_comment, - [92572] = 5, + [92360] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6778), 1, - anon_sym_RBRACK, - STATE(3225), 2, + ACTIONS(6760), 2, + sym_identifier, + sym_super, + STATE(3257), 2, sym_line_comment, sym_block_comment, - [92589] = 5, + [92375] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6780), 1, - anon_sym_RBRACE, - STATE(3226), 2, + ACTIONS(6493), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3258), 2, sym_line_comment, sym_block_comment, - [92606] = 5, + [92390] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2249), 1, - sym_parameters, - STATE(3227), 2, + ACTIONS(5312), 2, + sym_identifier, + sym_super, + STATE(3259), 2, sym_line_comment, sym_block_comment, - [92623] = 5, + [92405] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5218), 1, - anon_sym_RBRACK, - ACTIONS(6704), 1, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(6832), 1, + anon_sym_in, + STATE(3260), 2, + sym_line_comment, + sym_block_comment, + [92422] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6834), 1, anon_sym_SEMI, - STATE(3228), 2, + ACTIONS(6836), 1, + anon_sym_as, + STATE(3261), 2, sym_line_comment, sym_block_comment, - [92640] = 5, + [92439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(542), 1, - sym_declaration_list, - STATE(3229), 2, + ACTIONS(6774), 1, + anon_sym_RPAREN, + ACTIONS(6838), 1, + anon_sym_COLON_COLON, + STATE(3262), 2, sym_line_comment, sym_block_comment, - [92657] = 5, + [92456] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5228), 1, - anon_sym_RBRACE, - ACTIONS(6704), 1, - anon_sym_SEMI, - STATE(3230), 2, + ACTIONS(6822), 1, + sym_super, + ACTIONS(6840), 1, + sym_identifier, + STATE(3263), 2, sym_line_comment, sym_block_comment, - [92674] = 5, + [92473] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5440), 1, - anon_sym_LBRACE, - STATE(1269), 1, - sym_enum_variant_list, - STATE(3231), 2, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + ACTIONS(6506), 1, + anon_sym_for, + STATE(3264), 2, sym_line_comment, sym_block_comment, - [92691] = 5, + [92490] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(543), 1, - sym_declaration_list, - STATE(3232), 2, + ACTIONS(6756), 1, + sym_super, + ACTIONS(6842), 1, + sym_identifier, + STATE(3265), 2, sym_line_comment, sym_block_comment, - [92708] = 5, + [92507] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5230), 1, - anon_sym_RPAREN, - ACTIONS(6704), 1, - anon_sym_SEMI, - STATE(3233), 2, + ACTIONS(5775), 1, + sym_super, + ACTIONS(5828), 1, + sym_identifier, + STATE(3266), 2, sym_line_comment, sym_block_comment, - [92725] = 5, + [92524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - STATE(1272), 1, - sym_field_declaration_list, - STATE(3234), 2, + ACTIONS(6828), 1, + sym_super, + ACTIONS(6844), 1, + sym_identifier, + STATE(3267), 2, sym_line_comment, sym_block_comment, - [92742] = 5, + [92541] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3906), 1, - anon_sym_COLON, - ACTIONS(5354), 1, - anon_sym_PLUS, - STATE(3235), 2, + ACTIONS(6846), 1, + anon_sym_SEMI, + ACTIONS(6848), 1, + anon_sym_as, + STATE(3268), 2, sym_line_comment, sym_block_comment, - [92759] = 5, + [92558] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - STATE(1274), 1, - sym_field_declaration_list, - STATE(3236), 2, + ACTIONS(6850), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3269), 2, sym_line_comment, sym_block_comment, - [92776] = 5, + [92573] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5230), 1, - anon_sym_RBRACK, - ACTIONS(6704), 1, - anon_sym_SEMI, - STATE(3237), 2, + ACTIONS(6852), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3270), 2, + sym_line_comment, + sym_block_comment, + [92588] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6764), 1, + anon_sym_LT, + STATE(981), 1, + sym_type_parameters, + STATE(3271), 2, sym_line_comment, sym_block_comment, - [92793] = 5, + [92605] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1275), 1, - sym_declaration_list, - STATE(3238), 2, + ACTIONS(6854), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3272), 2, sym_line_comment, sym_block_comment, - [92810] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92620] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(230), 1, - sym_closure_parameters, - STATE(3239), 2, + ACTIONS(6816), 1, + sym_super, + ACTIONS(6856), 1, + sym_identifier, + STATE(3273), 2, sym_line_comment, sym_block_comment, - [92827] = 4, + [92637] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6473), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3240), 2, + ACTIONS(6756), 1, + sym_super, + ACTIONS(6858), 1, + sym_identifier, + STATE(3274), 2, sym_line_comment, sym_block_comment, - [92842] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92654] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(218), 1, - sym_closure_parameters, - STATE(3241), 2, + ACTIONS(5840), 1, + sym_super, + ACTIONS(5944), 1, + sym_identifier, + STATE(3275), 2, sym_line_comment, sym_block_comment, - [92859] = 5, + [92671] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6782), 1, - sym_identifier, - ACTIONS(6784), 1, + ACTIONS(6772), 1, sym_super, - STATE(3242), 2, + ACTIONS(6860), 1, + sym_identifier, + STATE(3276), 2, sym_line_comment, sym_block_comment, - [92876] = 5, + [92688] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5232), 1, - anon_sym_RBRACE, - ACTIONS(6704), 1, - anon_sym_SEMI, - STATE(3243), 2, + ACTIONS(3426), 1, + anon_sym_LPAREN, + STATE(1153), 1, + sym_parameters, + STATE(3277), 2, sym_line_comment, sym_block_comment, - [92893] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92705] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(232), 1, - sym_closure_parameters, - STATE(3244), 2, + ACTIONS(6554), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3278), 2, sym_line_comment, sym_block_comment, - [92910] = 5, + [92720] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, + ACTIONS(5076), 1, anon_sym_LBRACE, - STATE(1199), 1, + STATE(675), 1, sym_field_declaration_list, - STATE(3245), 2, + STATE(3279), 2, sym_line_comment, sym_block_comment, - [92927] = 5, + [92737] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1200), 1, - sym_declaration_list, - STATE(3246), 2, + ACTIONS(5560), 1, + sym_super, + ACTIONS(6820), 1, + sym_identifier, + STATE(3280), 2, sym_line_comment, sym_block_comment, - [92944] = 5, + [92754] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6756), 1, + sym_super, ACTIONS(6786), 1, sym_identifier, - ACTIONS(6788), 1, - sym_super, - STATE(3247), 2, + STATE(3281), 2, sym_line_comment, sym_block_comment, - [92961] = 5, + [92771] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(747), 1, - sym_field_declaration_list, - STATE(3248), 2, + ACTIONS(5312), 1, + sym_super, + ACTIONS(5988), 1, + sym_identifier, + STATE(3282), 2, sym_line_comment, sym_block_comment, - [92978] = 5, + [92788] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 1, + ACTIONS(6760), 1, sym_super, - ACTIONS(5780), 1, + ACTIONS(6830), 1, sym_identifier, - STATE(3249), 2, + STATE(3283), 2, sym_line_comment, sym_block_comment, - [92995] = 5, + [92805] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6790), 1, - sym_identifier, - ACTIONS(6792), 1, + ACTIONS(6822), 1, sym_super, - STATE(3250), 2, + ACTIONS(6862), 1, + sym_identifier, + STATE(3284), 2, sym_line_comment, sym_block_comment, - [93012] = 5, + [92822] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1201), 1, - sym_declaration_list, - STATE(3251), 2, + ACTIONS(5775), 1, + sym_super, + ACTIONS(5986), 1, + sym_identifier, + STATE(3285), 2, sym_line_comment, sym_block_comment, - [93029] = 4, + [92839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6478), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3252), 2, + ACTIONS(6828), 1, + sym_super, + ACTIONS(6864), 1, + sym_identifier, + STATE(3286), 2, sym_line_comment, sym_block_comment, - [93044] = 5, + [92856] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6776), 1, + ACTIONS(6822), 1, + sym_super, + ACTIONS(6866), 1, sym_identifier, - ACTIONS(6792), 1, + STATE(3287), 2, + sym_line_comment, + sym_block_comment, + [92873] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5775), 1, sym_super, - STATE(3253), 2, + ACTIONS(6000), 1, + sym_identifier, + STATE(3288), 2, sym_line_comment, sym_block_comment, - [93061] = 5, + [92890] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_BANG, - ACTIONS(4781), 1, - anon_sym_COLON_COLON, - STATE(3254), 2, + ACTIONS(6828), 1, + sym_super, + ACTIONS(6868), 1, + sym_identifier, + STATE(3289), 2, sym_line_comment, sym_block_comment, - [93078] = 4, + [92907] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 2, + ACTIONS(6822), 1, + sym_super, + ACTIONS(6870), 1, sym_identifier, + STATE(3290), 2, + sym_line_comment, + sym_block_comment, + [92924] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5775), 1, sym_super, - STATE(3255), 2, + ACTIONS(6008), 1, + sym_identifier, + STATE(3291), 2, sym_line_comment, sym_block_comment, - [93093] = 5, + [92941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, + ACTIONS(6828), 1, sym_super, - ACTIONS(6794), 1, + ACTIONS(6872), 1, sym_identifier, - STATE(3256), 2, + STATE(3292), 2, sym_line_comment, sym_block_comment, - [93110] = 5, + [92958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_declaration_list, - STATE(3257), 2, + ACTIONS(5560), 1, + sym_super, + ACTIONS(6870), 1, + sym_identifier, + STATE(3293), 2, sym_line_comment, sym_block_comment, - [93127] = 5, + [92975] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, + ACTIONS(5312), 1, sym_super, - ACTIONS(6796), 1, + ACTIONS(6008), 1, sym_identifier, - STATE(3258), 2, + STATE(3294), 2, sym_line_comment, sym_block_comment, - [93144] = 5, + [92992] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 1, + ACTIONS(6760), 1, sym_super, - ACTIONS(5794), 1, + ACTIONS(6872), 1, sym_identifier, - STATE(3259), 2, + STATE(3295), 2, sym_line_comment, sym_block_comment, - [93161] = 5, + [93009] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6792), 1, + ACTIONS(5710), 1, sym_super, - ACTIONS(6798), 1, + ACTIONS(6814), 1, sym_identifier, - STATE(3260), 2, + STATE(3296), 2, sym_line_comment, sym_block_comment, - [93178] = 5, + [93026] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(647), 1, - sym_field_declaration_list, - STATE(3261), 2, + ACTIONS(6874), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3297), 2, sym_line_comment, sym_block_comment, - [93195] = 4, + [93041] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6301), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3262), 2, + ACTIONS(6876), 1, + anon_sym_RPAREN, + ACTIONS(6878), 1, + anon_sym_COLON_COLON, + STATE(3298), 2, sym_line_comment, sym_block_comment, - [93210] = 5, + [93058] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6800), 1, + ACTIONS(6880), 1, anon_sym_SEMI, - ACTIONS(6802), 1, + ACTIONS(6882), 1, anon_sym_EQ, - STATE(3263), 2, + STATE(3299), 2, sym_line_comment, sym_block_comment, - [93227] = 4, + [93075] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 2, + ACTIONS(6826), 2, sym_identifier, sym_super, - STATE(3264), 2, + STATE(3300), 2, sym_line_comment, sym_block_comment, - [93242] = 5, + [93090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6804), 1, - anon_sym_SEMI, - ACTIONS(6806), 1, - anon_sym_EQ, - STATE(3265), 2, + ACTIONS(6884), 1, + anon_sym_LPAREN, + ACTIONS(6886), 1, + anon_sym_COLON_COLON, + STATE(3301), 2, sym_line_comment, sym_block_comment, - [93259] = 5, + [93107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6176), 1, - sym_identifier, - ACTIONS(6180), 1, - sym_mutable_specifier, - STATE(3266), 2, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6888), 1, + anon_sym_RBRACE, + STATE(3302), 2, sym_line_comment, sym_block_comment, - [93276] = 5, + [93124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6808), 1, - sym_identifier, - ACTIONS(6810), 1, - sym_super, - STATE(3267), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + ACTIONS(6890), 1, + anon_sym_GT, + STATE(3303), 2, sym_line_comment, sym_block_comment, - [93293] = 5, + [93141] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, - sym_super, - ACTIONS(6812), 1, - sym_identifier, - STATE(3268), 2, + ACTIONS(6892), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3304), 2, sym_line_comment, sym_block_comment, - [93310] = 5, + [93156] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5917), 1, - sym_super, - ACTIONS(6026), 1, - sym_identifier, - STATE(3269), 2, + ACTIONS(3518), 1, + anon_sym_PLUS, + ACTIONS(3602), 1, + anon_sym_COLON_COLON, + STATE(3305), 2, sym_line_comment, sym_block_comment, - [93327] = 5, + [93173] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6730), 1, - sym_super, - ACTIONS(6814), 1, - sym_identifier, - STATE(3270), 2, + ACTIONS(3518), 1, + anon_sym_PLUS, + ACTIONS(3604), 1, + anon_sym_COLON_COLON, + STATE(3306), 2, sym_line_comment, sym_block_comment, - [93344] = 5, + [93190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6722), 1, - sym_super, - ACTIONS(6816), 1, - sym_identifier, - STATE(3271), 2, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6894), 1, + anon_sym_RBRACE, + STATE(3307), 2, sym_line_comment, sym_block_comment, - [93361] = 4, + [93207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3272), 2, + ACTIONS(6896), 1, + anon_sym_BANG, + ACTIONS(6898), 1, + anon_sym_COLON_COLON, + STATE(3308), 2, sym_line_comment, sym_block_comment, - [93376] = 5, + [93224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, - sym_super, - ACTIONS(6782), 1, - sym_identifier, - STATE(3273), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2390), 1, + sym_parameters, + STATE(3309), 2, sym_line_comment, sym_block_comment, - [93393] = 5, + [93241] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, - sym_super, - ACTIONS(6754), 1, - sym_identifier, - STATE(3274), 2, + ACTIONS(5394), 1, + anon_sym_LBRACE, + STATE(1157), 1, + sym_enum_variant_list, + STATE(3310), 2, sym_line_comment, sym_block_comment, - [93410] = 5, + [93258] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5780), 1, + ACTIONS(5560), 2, sym_identifier, - STATE(3275), 2, + sym_super, + STATE(3311), 2, sym_line_comment, sym_block_comment, - [93427] = 5, + [93273] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6722), 1, - sym_super, - ACTIONS(6790), 1, - sym_identifier, - STATE(3276), 2, + ACTIONS(6764), 1, + anon_sym_LT, + STATE(889), 1, + sym_type_parameters, + STATE(3312), 2, sym_line_comment, sym_block_comment, - [93444] = 5, + [93290] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, - sym_super, - ACTIONS(6820), 1, - sym_identifier, - STATE(3277), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(750), 1, + sym_declaration_list, + STATE(3313), 2, sym_line_comment, sym_block_comment, - [93461] = 5, + [93307] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5776), 1, - sym_identifier, - ACTIONS(5778), 1, - sym_super, - STATE(3278), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(1335), 1, + sym_declaration_list, + STATE(3314), 2, sym_line_comment, sym_block_comment, - [93478] = 5, + [93324] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6792), 1, - sym_super, - ACTIONS(6822), 1, - sym_identifier, - STATE(3279), 2, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(669), 1, + sym_field_declaration_list, + STATE(3315), 2, sym_line_comment, sym_block_comment, - [93495] = 5, + [93341] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, - sym_super, - ACTIONS(6824), 1, - sym_identifier, - STATE(3280), 2, + ACTIONS(6900), 2, + sym_float_literal, + sym_integer_literal, + STATE(3316), 2, sym_line_comment, sym_block_comment, - [93512] = 5, + [93356] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5820), 1, - sym_identifier, - STATE(3281), 2, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(6902), 1, + anon_sym_EQ, + STATE(3317), 2, sym_line_comment, sym_block_comment, - [93529] = 5, + [93373] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6792), 1, - sym_super, - ACTIONS(6826), 1, - sym_identifier, - STATE(3282), 2, + ACTIONS(6764), 1, + anon_sym_LT, + STATE(883), 1, + sym_type_parameters, + STATE(3318), 2, sym_line_comment, sym_block_comment, - [93546] = 5, + [93390] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, - sym_super, - ACTIONS(6828), 1, - sym_identifier, - STATE(3283), 2, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(6904), 1, + anon_sym_EQ, + STATE(3319), 2, sym_line_comment, sym_block_comment, - [93563] = 5, + [93407] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5834), 1, - sym_identifier, - STATE(3284), 2, + ACTIONS(3434), 1, + anon_sym_LT2, + STATE(1431), 1, + sym_type_arguments, + STATE(3320), 2, sym_line_comment, sym_block_comment, - [93580] = 5, + [93424] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6792), 1, - sym_super, - ACTIONS(6830), 1, - sym_identifier, - STATE(3285), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2290), 1, + sym_parameters, + STATE(3321), 2, sym_line_comment, sym_block_comment, - [93597] = 5, + [93441] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, - sym_super, - ACTIONS(6828), 1, - sym_identifier, - STATE(3286), 2, + ACTIONS(6906), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3322), 2, sym_line_comment, sym_block_comment, - [93614] = 5, + [93456] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5834), 1, - sym_identifier, - STATE(3287), 2, + ACTIONS(3426), 1, + anon_sym_LPAREN, + STATE(1195), 1, + sym_parameters, + STATE(3323), 2, sym_line_comment, sym_block_comment, - [93631] = 5, + [93473] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6722), 1, - sym_super, - ACTIONS(6830), 1, - sym_identifier, - STATE(3288), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(767), 1, + sym_declaration_list, + STATE(3324), 2, sym_line_comment, sym_block_comment, - [93648] = 5, + [93490] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(732), 1, - sym_declaration_list, - STATE(3289), 2, + ACTIONS(6908), 1, + sym_identifier, + ACTIONS(6910), 1, + sym_mutable_specifier, + STATE(3325), 2, sym_line_comment, sym_block_comment, - [93665] = 5, + [93507] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2027), 1, - sym_parameters, - STATE(3290), 2, + ACTIONS(6912), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3326), 2, sym_line_comment, sym_block_comment, - [93682] = 5, + [93522] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - STATE(773), 1, - sym_field_declaration_list, - STATE(3291), 2, + STATE(1344), 1, + sym_declaration_list, + STATE(3327), 2, sym_line_comment, sym_block_comment, - [93699] = 5, + [93539] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - STATE(1207), 1, - sym_field_declaration_list, - STATE(3292), 2, + STATE(1345), 1, + sym_declaration_list, + STATE(3328), 2, sym_line_comment, sym_block_comment, - [93716] = 5, + [93556] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - anon_sym_SEMI, - ACTIONS(6834), 1, - anon_sym_EQ, - STATE(3293), 2, + ACTIONS(5710), 1, + sym_super, + ACTIONS(6914), 1, + sym_identifier, + STATE(3329), 2, sym_line_comment, sym_block_comment, - [93733] = 5, + [93573] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - sym_identifier, - ACTIONS(6838), 1, - sym_mutable_specifier, - STATE(3294), 2, + ACTIONS(5330), 1, + anon_sym_RPAREN, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(3330), 2, sym_line_comment, sym_block_comment, - [93750] = 5, + [93590] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 1, - sym_super, - ACTIONS(6840), 1, - sym_identifier, - STATE(3295), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2280), 1, + sym_parameters, + STATE(3331), 2, sym_line_comment, sym_block_comment, - [93767] = 5, + [93607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6724), 1, - anon_sym_LT, - STATE(898), 1, - sym_type_parameters, - STATE(3296), 2, + ACTIONS(5330), 1, + anon_sym_RBRACK, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(3332), 2, sym_line_comment, sym_block_comment, - [93784] = 5, + [93624] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5510), 1, - sym_super, - ACTIONS(6842), 1, - sym_identifier, - STATE(3297), 2, + ACTIONS(6916), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3333), 2, sym_line_comment, sym_block_comment, - [93801] = 4, + [93639] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6844), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3298), 2, + ACTIONS(5346), 1, + anon_sym_RPAREN, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(3334), 2, sym_line_comment, sym_block_comment, - [93816] = 5, + [93656] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, - anon_sym_LPAREN, - ACTIONS(6846), 1, - anon_sym_COLON_COLON, - STATE(3299), 2, + ACTIONS(6760), 1, + sym_super, + ACTIONS(6918), 1, + sym_identifier, + STATE(3335), 2, sym_line_comment, sym_block_comment, - [93833] = 4, + [93673] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6848), 2, - sym_float_literal, - sym_integer_literal, - STATE(3300), 2, + ACTIONS(5346), 1, + anon_sym_RBRACK, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(3336), 2, sym_line_comment, sym_block_comment, - [93848] = 5, + [93690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1212), 1, - sym_declaration_list, - STATE(3301), 2, + ACTIONS(5710), 1, + sym_super, + ACTIONS(6812), 1, + sym_identifier, + STATE(3337), 2, sym_line_comment, sym_block_comment, - [93865] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [93707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(215), 1, - sym_closure_parameters, - STATE(3302), 2, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1167), 1, + sym_field_declaration_list, + STATE(3338), 2, sym_line_comment, sym_block_comment, - [93882] = 4, + [93724] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6850), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3303), 2, + ACTIONS(5324), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3339), 2, sym_line_comment, sym_block_comment, - [93897] = 5, + [93739] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6852), 1, - anon_sym_BANG, - ACTIONS(6854), 1, - anon_sym_COLON_COLON, - STATE(3304), 2, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(579), 1, + sym_field_declaration_list, + STATE(3340), 2, sym_line_comment, sym_block_comment, - [93914] = 4, + [93756] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6788), 2, + ACTIONS(5710), 2, sym_identifier, sym_super, - STATE(3305), 2, + STATE(3341), 2, sym_line_comment, sym_block_comment, - [93929] = 5, + [93771] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_BANG, - ACTIONS(4785), 1, - anon_sym_COLON_COLON, - STATE(3306), 2, + ACTIONS(5100), 1, + anon_sym_LBRACE, + STATE(1170), 1, + sym_declaration_list, + STATE(3342), 2, sym_line_comment, sym_block_comment, - [93946] = 5, + [93788] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4126), 1, + ACTIONS(5110), 1, anon_sym_LBRACE, - STATE(1842), 1, - sym_field_initializer_list, - STATE(3307), 2, + STATE(499), 1, + sym_declaration_list, + STATE(3343), 2, sym_line_comment, sym_block_comment, - [93963] = 5, + [93805] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(733), 1, - sym_declaration_list, - STATE(3308), 2, + ACTIONS(6920), 1, + anon_sym_SEMI, + ACTIONS(6922), 1, + anon_sym_as, + STATE(3344), 2, sym_line_comment, sym_block_comment, - [93980] = 5, + [93822] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(5055), 1, - anon_sym_for, - STATE(3309), 2, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3894), 1, + anon_sym_COLON, + STATE(3345), 2, sym_line_comment, sym_block_comment, - [93997] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [93839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(220), 1, - sym_closure_parameters, - STATE(3310), 2, + ACTIONS(5076), 1, + anon_sym_LBRACE, + STATE(735), 1, + sym_field_declaration_list, + STATE(3346), 2, sym_line_comment, sym_block_comment, - [94014] = 5, + [93856] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5440), 1, + ACTIONS(5400), 1, anon_sym_LBRACE, - STATE(1217), 1, + STATE(700), 1, sym_enum_variant_list, - STATE(3311), 2, + STATE(3347), 2, sym_line_comment, sym_block_comment, - [94031] = 5, + [93873] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - STATE(1159), 1, - sym_field_declaration_list, - STATE(3312), 2, + ACTIONS(6924), 2, + sym_float_literal, + sym_integer_literal, + STATE(3348), 2, sym_line_comment, sym_block_comment, - [94048] = 5, + [93888] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - STATE(1220), 1, - sym_field_declaration_list, - STATE(3313), 2, + ACTIONS(6926), 1, + anon_sym_SEMI, + ACTIONS(6928), 1, + anon_sym_EQ, + STATE(3349), 2, sym_line_comment, sym_block_comment, - [94065] = 5, + [93905] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6724), 1, - anon_sym_LT, - STATE(1079), 1, - sym_type_parameters, - STATE(3314), 2, + ACTIONS(6878), 1, + anon_sym_COLON_COLON, + ACTIONS(6930), 1, + anon_sym_RPAREN, + STATE(3350), 2, sym_line_comment, sym_block_comment, - [94082] = 5, + [93922] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5651), 1, + ACTIONS(6822), 1, sym_super, - ACTIONS(6856), 1, + ACTIONS(6932), 1, sym_identifier, - STATE(3315), 2, + STATE(3351), 2, sym_line_comment, sym_block_comment, - [94099] = 4, + [93939] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6858), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3316), 2, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1176), 1, + sym_field_declaration_list, + STATE(3352), 2, sym_line_comment, sym_block_comment, - [94114] = 5, + [93956] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(624), 1, - sym_declaration_list, - STATE(3317), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2294), 1, + sym_parameters, + STATE(3353), 2, sym_line_comment, sym_block_comment, - [94131] = 5, + [93973] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2272), 1, - sym_parameters, - STATE(3318), 2, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6934), 1, + anon_sym_RPAREN, + STATE(3354), 2, sym_line_comment, sym_block_comment, - [94148] = 4, + [93990] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6860), 2, - sym_float_literal, - sym_integer_literal, - STATE(3319), 2, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6934), 1, + anon_sym_RBRACK, + STATE(3355), 2, sym_line_comment, sym_block_comment, - [94163] = 5, + [94007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6700), 1, - sym_identifier, - ACTIONS(6784), 1, - sym_super, - STATE(3320), 2, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6936), 1, + anon_sym_RPAREN, + STATE(3356), 2, sym_line_comment, sym_block_comment, - [94180] = 5, + [94024] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, - anon_sym_LT2, - STATE(1477), 1, - sym_type_arguments, - STATE(3321), 2, + ACTIONS(6748), 1, + anon_sym_SEMI, + ACTIONS(6936), 1, + anon_sym_RBRACK, + STATE(3357), 2, sym_line_comment, sym_block_comment, - [94197] = 4, + [94041] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6862), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3322), 2, + ACTIONS(6740), 1, + anon_sym_RPAREN, + ACTIONS(6838), 1, + anon_sym_COLON_COLON, + STATE(3358), 2, sym_line_comment, sym_block_comment, - [94212] = 4, + [94058] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6864), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3323), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(779), 1, + sym_declaration_list, + STATE(3359), 2, sym_line_comment, sym_block_comment, - [94227] = 5, + [94075] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(625), 1, - sym_declaration_list, - STATE(3324), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2263), 1, + sym_parameters, + STATE(3360), 2, sym_line_comment, sym_block_comment, - [94244] = 4, + [94092] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6866), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3325), 2, + ACTIONS(6828), 2, + sym_identifier, + sym_super, + STATE(3361), 2, sym_line_comment, sym_block_comment, - [94259] = 4, + [94107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6566), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3326), 2, + ACTIONS(6938), 1, + anon_sym_SEMI, + ACTIONS(6940), 1, + anon_sym_as, + STATE(3362), 2, sym_line_comment, sym_block_comment, - [94274] = 4, + [94124] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6868), 2, - anon_sym_RPAREN, + ACTIONS(6942), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3327), 2, + STATE(3363), 2, sym_line_comment, sym_block_comment, - [94289] = 4, + [94139] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5855), 2, + ACTIONS(6740), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3328), 2, + ACTIONS(6776), 1, + anon_sym_COLON_COLON, + STATE(3364), 2, sym_line_comment, sym_block_comment, - [94304] = 5, + [94156] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_RPAREN, - ACTIONS(6704), 1, - anon_sym_SEMI, - STATE(3329), 2, + ACTIONS(6357), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3365), 2, sym_line_comment, sym_block_comment, - [94321] = 5, + [94171] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, + ACTIONS(4646), 1, anon_sym_LPAREN, - STATE(1111), 1, + STATE(2300), 1, sym_parameters, - STATE(3330), 2, + STATE(3366), 2, sym_line_comment, sym_block_comment, - [94338] = 5, + [94188] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5266), 1, - anon_sym_RBRACK, - ACTIONS(6704), 1, + ACTIONS(5360), 1, + anon_sym_RPAREN, + ACTIONS(6748), 1, anon_sym_SEMI, - STATE(3331), 2, + STATE(3367), 2, sym_line_comment, sym_block_comment, - [94355] = 5, + [94205] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, - anon_sym_RPAREN, - ACTIONS(6704), 1, - anon_sym_SEMI, - STATE(3332), 2, + ACTIONS(6884), 1, + anon_sym_LPAREN, + ACTIONS(6944), 1, + anon_sym_COLON_COLON, + STATE(3368), 2, sym_line_comment, sym_block_comment, - [94372] = 5, + [94222] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5268), 1, - anon_sym_RBRACK, - ACTIONS(6704), 1, - anon_sym_SEMI, - STATE(3333), 2, + ACTIONS(6946), 1, + anon_sym_STAR_SLASH, + ACTIONS(6948), 1, + sym__block_comment_content, + STATE(3369), 2, sym_line_comment, sym_block_comment, - [94389] = 4, + [94239] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6870), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3334), 2, + ACTIONS(6822), 2, + sym_identifier, + sym_super, + STATE(3370), 2, sym_line_comment, sym_block_comment, - [94404] = 5, + [94254] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - STATE(1223), 1, - sym_field_declaration_list, - STATE(3335), 2, + STATE(1387), 1, + sym_declaration_list, + STATE(3371), 2, sym_line_comment, sym_block_comment, - [94421] = 5, + [94271] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3058), 1, - anon_sym_SQUOTE, - STATE(3183), 1, - sym_lifetime, - STATE(3336), 2, + ACTIONS(6950), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3372), 2, sym_line_comment, sym_block_comment, - [94438] = 4, + [94286] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 2, - sym_identifier, - sym_super, - STATE(3337), 2, + ACTIONS(5360), 1, + anon_sym_RBRACK, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(3373), 2, sym_line_comment, sym_block_comment, - [94453] = 4, + [94303] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5328), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3338), 2, + ACTIONS(6806), 1, + sym_identifier, + ACTIONS(6828), 1, + sym_super, + STATE(3374), 2, sym_line_comment, sym_block_comment, - [94468] = 5, + [94320] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(6872), 1, - anon_sym_AMP_AMP, - STATE(3339), 2, + ACTIONS(5560), 1, + sym_super, + ACTIONS(6952), 1, + sym_identifier, + STATE(3375), 2, sym_line_comment, sym_block_comment, - [94485] = 5, + [94337] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6632), 1, - anon_sym_EQ_GT, - ACTIONS(6872), 1, - anon_sym_AMP_AMP, - STATE(3340), 2, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3954), 1, + anon_sym_COLON, + STATE(3376), 2, sym_line_comment, sym_block_comment, - [94502] = 5, + [94354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5385), 1, - anon_sym_LBRACE, - STATE(755), 1, - sym_enum_variant_list, - STATE(3341), 2, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6822), 1, + sym_super, + STATE(3377), 2, sym_line_comment, sym_block_comment, - [94519] = 5, + [94371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1318), 1, - sym_declaration_list, - STATE(3342), 2, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(6954), 1, + anon_sym_COLON_COLON, + STATE(3378), 2, sym_line_comment, sym_block_comment, - [94536] = 5, + [94388] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6874), 1, - sym_identifier, - ACTIONS(6876), 1, - sym_mutable_specifier, - STATE(3343), 2, + ACTIONS(6956), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3379), 2, sym_line_comment, sym_block_comment, - [94553] = 5, + [94403] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5385), 1, - anon_sym_LBRACE, - STATE(727), 1, - sym_enum_variant_list, - STATE(3344), 2, + ACTIONS(6958), 1, + anon_sym_LPAREN, + ACTIONS(6960), 1, + anon_sym_COLON_COLON, + STATE(3380), 2, sym_line_comment, sym_block_comment, - [94570] = 5, + [94420] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(5673), 1, - anon_sym_COLON, - STATE(3345), 2, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + ACTIONS(4991), 1, + anon_sym_BANG, + STATE(3381), 2, sym_line_comment, sym_block_comment, - [94587] = 5, + [94437] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2257), 1, - sym_parameters, - STATE(3346), 2, + ACTIONS(6962), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3382), 2, sym_line_comment, sym_block_comment, - [94604] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [94452] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(238), 1, - sym_closure_parameters, - STATE(3347), 2, + ACTIONS(3518), 1, + anon_sym_PLUS, + ACTIONS(4290), 1, + anon_sym_COLON_COLON, + STATE(3383), 2, sym_line_comment, sym_block_comment, - [94621] = 5, + [94469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6878), 1, - anon_sym_RPAREN, - STATE(3348), 2, + ACTIONS(3518), 1, + anon_sym_PLUS, + ACTIONS(4306), 1, + anon_sym_COLON_COLON, + STATE(3384), 2, sym_line_comment, sym_block_comment, - [94638] = 5, + [94486] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6878), 1, - anon_sym_RBRACK, - STATE(3349), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(655), 1, + sym_declaration_list, + STATE(3385), 2, sym_line_comment, sym_block_comment, - [94655] = 5, + [94503] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6880), 1, - anon_sym_RPAREN, - STATE(3350), 2, + ACTIONS(4634), 1, + anon_sym_BANG, + ACTIONS(6898), 1, + anon_sym_COLON_COLON, + STATE(3386), 2, sym_line_comment, sym_block_comment, - [94672] = 5, + [94520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6880), 1, - anon_sym_RBRACK, - STATE(3351), 2, + ACTIONS(5400), 1, + anon_sym_LBRACE, + STATE(573), 1, + sym_enum_variant_list, + STATE(3387), 2, sym_line_comment, sym_block_comment, - [94689] = 5, + [94537] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2290), 1, - sym_parameters, - STATE(3352), 2, + ACTIONS(6764), 1, + anon_sym_LT, + STATE(914), 1, + sym_type_parameters, + STATE(3388), 2, sym_line_comment, sym_block_comment, - [94706] = 5, + [94554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(720), 1, - sym_declaration_list, - STATE(3353), 2, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + ACTIONS(6158), 1, + anon_sym_for, + STATE(3389), 2, sym_line_comment, sym_block_comment, - [94723] = 4, + [94571] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6882), 2, - anon_sym_RBRACE, + ACTIONS(6682), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3354), 2, + STATE(3390), 2, sym_line_comment, sym_block_comment, - [94738] = 5, + [94586] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1327), 1, - sym_declaration_list, - STATE(3355), 2, + ACTIONS(4797), 1, + anon_sym_BANG, + ACTIONS(4879), 1, + anon_sym_COLON_COLON, + STATE(3391), 2, sym_line_comment, sym_block_comment, - [94755] = 5, + [94603] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5726), 1, - sym_identifier, - STATE(3356), 2, + ACTIONS(6695), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3392), 2, sym_line_comment, sym_block_comment, - [94772] = 5, + [94618] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5076), 1, anon_sym_LBRACE, - STATE(1328), 1, - sym_declaration_list, - STATE(3357), 2, + STATE(748), 1, + sym_field_declaration_list, + STATE(3393), 2, sym_line_comment, sym_block_comment, - [94789] = 4, + [94635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 2, - sym_identifier, - sym_super, - STATE(3358), 2, + ACTIONS(5039), 1, + anon_sym_LT, + STATE(884), 1, + sym_type_parameters, + STATE(3394), 2, sym_line_comment, sym_block_comment, - [94804] = 5, + [94652] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6722), 1, - sym_super, - ACTIONS(6884), 1, - sym_identifier, - STATE(3359), 2, + ACTIONS(5386), 1, + anon_sym_RBRACE, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(3395), 2, sym_line_comment, sym_block_comment, - [94821] = 5, + [94669] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2284), 1, - sym_parameters, - STATE(3360), 2, + ACTIONS(5710), 1, + sym_super, + ACTIONS(6754), 1, + sym_identifier, + STATE(3396), 2, sym_line_comment, sym_block_comment, - [94838] = 5, + [94686] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5701), 1, - sym_identifier, - ACTIONS(5778), 1, - sym_super, - STATE(3361), 2, + ACTIONS(6315), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3397), 2, sym_line_comment, sym_block_comment, - [94855] = 5, + [94701] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4084), 1, - anon_sym_LT2, - STATE(1855), 1, - sym_type_arguments, - STATE(3362), 2, + ACTIONS(6884), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_COLON_COLON, + STATE(3398), 2, sym_line_comment, sym_block_comment, - [94872] = 5, + [94718] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5296), 1, - sym_super, - ACTIONS(5839), 1, - sym_identifier, - STATE(3363), 2, + ACTIONS(5400), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym_enum_variant_list, + STATE(3399), 2, sym_line_comment, sym_block_comment, - [94889] = 5, + [94735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6886), 1, - anon_sym_SEMI, - ACTIONS(6888), 1, - anon_sym_as, - STATE(3364), 2, + ACTIONS(6966), 1, + anon_sym_BANG, + ACTIONS(6968), 1, + anon_sym_COLON_COLON, + STATE(3400), 2, sym_line_comment, sym_block_comment, - [94906] = 5, + [94752] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(650), 1, - sym_field_declaration_list, - STATE(3365), 2, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(4006), 1, + anon_sym_COLON, + STATE(3401), 2, sym_line_comment, sym_block_comment, - [94923] = 4, + [94769] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6890), 2, - sym_identifier, - sym_metavariable, - STATE(3366), 2, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3746), 1, + anon_sym_COLON, + STATE(3402), 2, sym_line_comment, sym_block_comment, - [94938] = 5, + [94786] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6892), 1, - anon_sym_SEMI, - ACTIONS(6894), 1, - anon_sym_EQ, - STATE(3367), 2, + ACTIONS(6884), 1, + anon_sym_LPAREN, + ACTIONS(6970), 1, + anon_sym_COLON_COLON, + STATE(3403), 2, sym_line_comment, sym_block_comment, - [94955] = 5, + [94803] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6896), 1, - anon_sym_LBRACK, - ACTIONS(6898), 1, + ACTIONS(4634), 1, anon_sym_BANG, - STATE(3368), 2, + ACTIONS(6968), 1, + anon_sym_COLON_COLON, + STATE(3404), 2, sym_line_comment, sym_block_comment, - [94972] = 5, + [94820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6900), 1, - anon_sym_STAR_SLASH, - ACTIONS(6902), 1, - sym__block_comment_content, - STATE(3369), 2, + ACTIONS(5152), 1, + anon_sym_COLON, + STATE(2565), 1, + sym_trait_bounds, + STATE(3405), 2, sym_line_comment, sym_block_comment, - [94989] = 5, + [94837] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6904), 1, - anon_sym_LPAREN, - ACTIONS(6906), 1, + ACTIONS(4797), 1, + anon_sym_BANG, + ACTIONS(4839), 1, anon_sym_COLON_COLON, - STATE(3370), 2, + STATE(3406), 2, sym_line_comment, sym_block_comment, - [95006] = 5, + [94854] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, - sym_super, - ACTIONS(6740), 1, - sym_identifier, - STATE(3371), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(566), 1, + sym_declaration_list, + STATE(3407), 2, sym_line_comment, sym_block_comment, - [95023] = 4, + [94871] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 2, - sym_identifier, - sym_super, - STATE(3372), 2, + ACTIONS(6972), 1, + anon_sym_LBRACK, + ACTIONS(6974), 1, + anon_sym_BANG, + STATE(3408), 2, sym_line_comment, sym_block_comment, - [95038] = 5, + [94888] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6908), 1, - anon_sym_BANG, - ACTIONS(6910), 1, - anon_sym_COLON_COLON, - STATE(3373), 2, + ACTIONS(6976), 2, + sym_identifier, + sym_metavariable, + STATE(3409), 2, sym_line_comment, sym_block_comment, - [95055] = 5, + [94903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, + ACTIONS(6978), 1, sym_identifier, - ACTIONS(6784), 1, + ACTIONS(6980), 1, sym_super, - STATE(3374), 2, + STATE(3410), 2, sym_line_comment, sym_block_comment, - [95072] = 5, + [94920] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6724), 1, - anon_sym_LT, - STATE(1080), 1, - sym_type_parameters, - STATE(3375), 2, + ACTIONS(6982), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3411), 2, sym_line_comment, sym_block_comment, - [95089] = 5, + [94935] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 1, - sym_super, - ACTIONS(5822), 1, - sym_identifier, - STATE(3376), 2, + ACTIONS(6984), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3412), 2, sym_line_comment, sym_block_comment, - [95106] = 5, + [94950] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6720), 1, - sym_identifier, - ACTIONS(6792), 1, - sym_super, - STATE(3377), 2, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(6986), 1, + anon_sym_in, + STATE(3413), 2, sym_line_comment, sym_block_comment, - [95123] = 4, + [94967] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6912), 2, + ACTIONS(6756), 2, sym_identifier, - sym_metavariable, - STATE(3378), 2, + sym_super, + STATE(3414), 2, sym_line_comment, sym_block_comment, - [95138] = 4, + [94982] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6138), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3379), 2, + STATE(252), 1, + sym_closure_parameters, + STATE(3415), 2, sym_line_comment, sym_block_comment, - [95153] = 5, + [94999] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, - anon_sym_LBRACE, - STATE(586), 1, - sym_declaration_list, - STATE(3380), 2, + ACTIONS(6988), 2, + sym_identifier, + sym_metavariable, + STATE(3416), 2, sym_line_comment, sym_block_comment, - [95170] = 5, + [95014] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5082), 1, - anon_sym_PLUS, - ACTIONS(6914), 1, - anon_sym_GT, - STATE(3381), 2, + ACTIONS(3426), 1, + anon_sym_LPAREN, + STATE(1128), 1, + sym_parameters, + STATE(3417), 2, sym_line_comment, sym_block_comment, - [95187] = 5, + [95031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, - anon_sym_LPAREN, - ACTIONS(6916), 1, - anon_sym_COLON_COLON, - STATE(3382), 2, + ACTIONS(6764), 1, + anon_sym_LT, + STATE(983), 1, + sym_type_parameters, + STATE(3418), 2, sym_line_comment, sym_block_comment, - [95204] = 5, + [95048] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(632), 1, - sym_field_declaration_list, - STATE(3383), 2, + ACTIONS(6764), 1, + anon_sym_LT, + STATE(984), 1, + sym_type_parameters, + STATE(3419), 2, sym_line_comment, sym_block_comment, - [95221] = 5, + [95065] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(6623), 1, - anon_sym_for, - STATE(3384), 2, + ACTIONS(3060), 1, + anon_sym_SQUOTE, + STATE(2977), 1, + sym_lifetime, + STATE(3420), 2, sym_line_comment, sym_block_comment, - [95238] = 4, + [95082] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3385), 2, + ACTIONS(5362), 1, + anon_sym_RBRACE, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(3421), 2, sym_line_comment, sym_block_comment, - [95253] = 5, + [95099] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2023), 1, - sym_parameters, - STATE(3386), 2, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + ACTIONS(5118), 1, + anon_sym_for, + STATE(3422), 2, sym_line_comment, sym_block_comment, - [95270] = 5, + [95116] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6708), 1, - anon_sym_LPAREN, - ACTIONS(6918), 1, - anon_sym_COLON_COLON, - STATE(3387), 2, + ACTIONS(5037), 1, + anon_sym_LBRACE, + STATE(1216), 1, + sym_field_declaration_list, + STATE(3423), 2, sym_line_comment, sym_block_comment, - [95287] = 5, + [95133] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6724), 1, - anon_sym_LT, - STATE(953), 1, - sym_type_parameters, - STATE(3388), 2, + ACTIONS(6990), 1, + sym_identifier, + ACTIONS(6992), 1, + sym_mutable_specifier, + STATE(3424), 2, sym_line_comment, sym_block_comment, - [95304] = 5, + [95150] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6920), 1, - anon_sym_EQ, - STATE(3389), 2, + ACTIONS(5300), 1, + anon_sym_RPAREN, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(3425), 2, sym_line_comment, sym_block_comment, - [95321] = 5, + [95167] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3354), 1, - anon_sym_LPAREN, - STATE(1136), 1, - sym_parameters, - STATE(3390), 2, + ACTIONS(5400), 1, + anon_sym_LBRACE, + STATE(591), 1, + sym_enum_variant_list, + STATE(3426), 2, sym_line_comment, sym_block_comment, - [95338] = 5, + [95184] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6922), 1, - anon_sym_LBRACK, - ACTIONS(6924), 1, - anon_sym_BANG, - STATE(3391), 2, + ACTIONS(5300), 1, + anon_sym_RBRACK, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(3427), 2, sym_line_comment, sym_block_comment, - [95355] = 4, + [95201] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6926), 2, + ACTIONS(6994), 2, sym_identifier, sym_metavariable, - STATE(3392), 2, + STATE(3428), 2, sym_line_comment, sym_block_comment, - [95370] = 5, + [95216] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6928), 1, - anon_sym_in, - STATE(3393), 2, + STATE(243), 1, + sym_closure_parameters, + STATE(3429), 2, sym_line_comment, sym_block_comment, - [95387] = 4, + [95233] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6930), 2, - sym_identifier, - sym_metavariable, - STATE(3394), 2, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + ACTIONS(6718), 1, + anon_sym_for, + STATE(3430), 2, sym_line_comment, sym_block_comment, - [95402] = 4, + [95250] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6932), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3395), 2, + ACTIONS(5382), 1, + anon_sym_RBRACE, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(3431), 2, sym_line_comment, sym_block_comment, - [95417] = 5, + [95267] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, + ACTIONS(4727), 1, anon_sym_COLON_COLON, - ACTIONS(5074), 1, + ACTIONS(6720), 1, anon_sym_for, - STATE(3396), 2, + STATE(3432), 2, sym_line_comment, sym_block_comment, - [95434] = 4, + [95284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6934), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3397), 2, + ACTIONS(6996), 1, + sym_identifier, + ACTIONS(6998), 1, + sym_super, + STATE(3433), 2, sym_line_comment, sym_block_comment, - [95449] = 5, + [95301] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3930), 1, - anon_sym_COLON, - ACTIONS(5354), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - STATE(3398), 2, + ACTIONS(3850), 1, + anon_sym_COLON, + STATE(3434), 2, sym_line_comment, sym_block_comment, - [95466] = 5, + [95318] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5440), 1, - anon_sym_LBRACE, - STATE(1140), 1, - sym_enum_variant_list, - STATE(3399), 2, + ACTIONS(7000), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3435), 2, sym_line_comment, sym_block_comment, - [95483] = 4, + [95333] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6722), 2, - sym_identifier, - sym_super, - STATE(3400), 2, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(7002), 1, + anon_sym_in, + STATE(3436), 2, sym_line_comment, sym_block_comment, - [95498] = 5, + [95350] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_EQ, - STATE(3401), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2449), 1, + sym_parameters, + STATE(3437), 2, sym_line_comment, sym_block_comment, - [95515] = 4, + [95367] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6792), 2, - sym_identifier, - sym_super, - STATE(3402), 2, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + ACTIONS(6728), 1, + anon_sym_for, + STATE(3438), 2, sym_line_comment, sym_block_comment, - [95530] = 4, + [95384] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6938), 2, + ACTIONS(5560), 1, + sym_super, + ACTIONS(6932), 1, sym_identifier, - sym_metavariable, - STATE(3403), 2, + STATE(3439), 2, sym_line_comment, sym_block_comment, - [95545] = 5, + [95401] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(6646), 1, - anon_sym_for, - STATE(3404), 2, + ACTIONS(7004), 1, + anon_sym_LBRACK, + ACTIONS(7006), 1, + anon_sym_BANG, + STATE(3440), 2, sym_line_comment, sym_block_comment, - [95562] = 5, + [95418] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6940), 1, - anon_sym_RBRACE, - STATE(3405), 2, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(7008), 1, + anon_sym_in, + STATE(3441), 2, sym_line_comment, sym_block_comment, - [95579] = 5, + [95435] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(6650), 1, - anon_sym_for, - STATE(3406), 2, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(7010), 1, + anon_sym_in, + STATE(3442), 2, sym_line_comment, sym_block_comment, - [95596] = 5, + [95452] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6718), 1, - sym_super, - ACTIONS(6840), 1, - sym_identifier, - STATE(3407), 2, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(7012), 1, + anon_sym_in, + STATE(3443), 2, sym_line_comment, sym_block_comment, - [95613] = 5, + [95469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, + ACTIONS(5616), 1, anon_sym_PIPE, - ACTIONS(6942), 1, + ACTIONS(7014), 1, anon_sym_in, - STATE(3408), 2, + STATE(3444), 2, sym_line_comment, sym_block_comment, - [95630] = 5, + [95486] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - ACTIONS(6654), 1, - anon_sym_for, - STATE(3409), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2080), 1, + sym_parameters, + STATE(3445), 2, sym_line_comment, sym_block_comment, - [95647] = 5, + [95503] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - ACTIONS(6944), 1, - anon_sym_RBRACE, - STATE(3410), 2, + ACTIONS(6732), 1, + sym_identifier, + ACTIONS(6736), 1, + sym_mutable_specifier, + STATE(3446), 2, sym_line_comment, sym_block_comment, - [95664] = 5, + [95520] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6946), 1, - anon_sym_LBRACK, - ACTIONS(6948), 1, - anon_sym_BANG, - STATE(3411), 2, + ACTIONS(7016), 2, + sym_identifier, + sym_metavariable, + STATE(3447), 2, sym_line_comment, sym_block_comment, - [95681] = 5, + [95535] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6950), 1, - anon_sym_in, - STATE(3412), 2, + ACTIONS(7018), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3448), 2, sym_line_comment, sym_block_comment, - [95698] = 5, + [95550] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6952), 1, - anon_sym_in, - STATE(3413), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(538), 1, + sym_declaration_list, + STATE(3449), 2, sym_line_comment, sym_block_comment, - [95715] = 5, + [95567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6954), 1, - anon_sym_in, - STATE(3414), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2077), 1, + sym_parameters, + STATE(3450), 2, sym_line_comment, sym_block_comment, - [95732] = 5, + [95584] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5544), 1, - anon_sym_PIPE, - ACTIONS(6956), 1, - anon_sym_in, - STATE(3415), 2, + ACTIONS(3378), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3451), 2, sym_line_comment, sym_block_comment, - [95749] = 5, + [95599] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4987), 1, - anon_sym_LT, - STATE(882), 1, - sym_type_parameters, - STATE(3416), 2, + ACTIONS(7020), 1, + anon_sym_LBRACK, + ACTIONS(7022), 1, + anon_sym_BANG, + STATE(3452), 2, sym_line_comment, sym_block_comment, - [95766] = 5, + [95616] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6660), 1, + ACTIONS(6199), 1, sym_identifier, - ACTIONS(6664), 1, + ACTIONS(6203), 1, sym_mutable_specifier, - STATE(3417), 2, + STATE(3453), 2, sym_line_comment, sym_block_comment, - [95783] = 5, + [95633] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - anon_sym_LBRACE, - STATE(1150), 1, - sym_field_declaration_list, - STATE(3418), 2, + ACTIONS(7024), 1, + sym_identifier, + ACTIONS(7026), 1, + sym_mutable_specifier, + STATE(3454), 2, sym_line_comment, sym_block_comment, - [95800] = 5, + [95650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_LBRACE, - STATE(1153), 1, - sym_declaration_list, - STATE(3419), 2, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(2082), 1, + sym_parameters, + STATE(3455), 2, sym_line_comment, sym_block_comment, - [95817] = 5, + [95667] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - sym_identifier, - ACTIONS(6960), 1, - sym_mutable_specifier, - STATE(3420), 2, + ACTIONS(5110), 1, + anon_sym_LBRACE, + STATE(636), 1, + sym_declaration_list, + STATE(3456), 2, sym_line_comment, sym_block_comment, - [95834] = 5, + [95684] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, + ACTIONS(5100), 1, anon_sym_LBRACE, - STATE(1370), 1, + STATE(1217), 1, sym_declaration_list, - STATE(3421), 2, + STATE(3457), 2, sym_line_comment, sym_block_comment, - [95851] = 5, + [95701] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4568), 1, - anon_sym_LPAREN, - STATE(2010), 1, - sym_parameters, - STATE(3422), 2, + ACTIONS(7028), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3458), 2, sym_line_comment, sym_block_comment, - [95868] = 5, + [95716] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_LBRACE, - STATE(623), 1, - sym_field_declaration_list, - STATE(3423), 2, + ACTIONS(7030), 1, + anon_sym_RBRACE, + STATE(3459), 2, sym_line_comment, sym_block_comment, - [95885] = 4, + [95730] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 1, - anon_sym_SEMI, - STATE(3424), 2, + ACTIONS(4056), 1, + anon_sym_COLON_COLON, + STATE(3460), 2, sym_line_comment, sym_block_comment, - [95899] = 4, + [95744] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6964), 1, - sym_identifier, - STATE(3425), 2, + ACTIONS(6742), 1, + anon_sym_COLON_COLON, + STATE(3461), 2, sym_line_comment, sym_block_comment, - [95913] = 4, + [95758] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6966), 1, + ACTIONS(7032), 1, sym_identifier, - STATE(3426), 2, + STATE(3462), 2, sym_line_comment, sym_block_comment, - [95927] = 4, + [95772] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6106), 1, - anon_sym_RBRACE, - STATE(3427), 2, + ACTIONS(875), 1, + anon_sym_RBRACK, + STATE(3463), 2, sym_line_comment, sym_block_comment, - [95941] = 4, + [95786] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6968), 1, - sym_identifier, - STATE(3428), 2, + ACTIONS(7034), 1, + anon_sym_RBRACK, + STATE(3464), 2, sym_line_comment, sym_block_comment, - [95955] = 4, + [95800] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6970), 1, + ACTIONS(6788), 1, anon_sym_SEMI, - STATE(3429), 2, + STATE(3465), 2, sym_line_comment, sym_block_comment, - [95969] = 4, + [95814] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6972), 1, - anon_sym_RBRACE, - STATE(3430), 2, + ACTIONS(7036), 1, + anon_sym_RBRACK, + STATE(3466), 2, sym_line_comment, sym_block_comment, - [95983] = 4, + [95828] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6974), 1, - sym_identifier, - STATE(3431), 2, + ACTIONS(5924), 1, + anon_sym_RBRACK, + STATE(3467), 2, sym_line_comment, sym_block_comment, - [95997] = 4, + [95842] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6976), 1, - sym_identifier, - STATE(3432), 2, + ACTIONS(7038), 1, + anon_sym_RBRACK, + STATE(3468), 2, sym_line_comment, sym_block_comment, - [96011] = 4, + [95856] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6978), 1, - sym_identifier, - STATE(3433), 2, + ACTIONS(7040), 1, + anon_sym_RBRACE, + STATE(3469), 2, sym_line_comment, sym_block_comment, - [96025] = 4, + [95870] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6980), 1, - sym_identifier, - STATE(3434), 2, + ACTIONS(7042), 1, + anon_sym_COLON, + STATE(3470), 2, sym_line_comment, sym_block_comment, - [96039] = 4, + [95884] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6982), 1, - sym_identifier, - STATE(3435), 2, + ACTIONS(7044), 1, + anon_sym_SEMI, + STATE(3471), 2, sym_line_comment, sym_block_comment, - [96053] = 4, + [95898] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(961), 1, - anon_sym_EQ_GT, - STATE(3436), 2, + ACTIONS(7046), 1, + anon_sym_LT2, + STATE(3472), 2, sym_line_comment, sym_block_comment, - [96067] = 4, + [95912] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6270), 1, - anon_sym_GT, - STATE(3437), 2, + ACTIONS(3188), 1, + anon_sym_PLUS, + STATE(3473), 2, sym_line_comment, sym_block_comment, - [96081] = 4, + [95926] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6984), 1, - anon_sym_SEMI, - STATE(3438), 2, + ACTIONS(7048), 1, + anon_sym_RPAREN, + STATE(3474), 2, sym_line_comment, sym_block_comment, - [96095] = 4, + [95940] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, - anon_sym_COLON_COLON, - STATE(3439), 2, + ACTIONS(7050), 1, + sym_identifier, + STATE(3475), 2, sym_line_comment, sym_block_comment, - [96109] = 4, + [95954] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6986), 1, - sym__raw_string_literal_end, - STATE(3440), 2, + ACTIONS(5052), 1, + anon_sym_COLON_COLON, + STATE(3476), 2, sym_line_comment, sym_block_comment, - [96123] = 4, + [95968] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(7052), 1, anon_sym_COLON_COLON, - STATE(3441), 2, + STATE(3477), 2, sym_line_comment, sym_block_comment, - [96137] = 4, + [95982] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6988), 1, - anon_sym_RBRACK, - STATE(3442), 2, + ACTIONS(7054), 1, + anon_sym_fn, + STATE(3478), 2, sym_line_comment, sym_block_comment, - [96151] = 4, + [95996] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6990), 1, + ACTIONS(7056), 1, sym_identifier, - STATE(3443), 2, + STATE(3479), 2, sym_line_comment, sym_block_comment, - [96165] = 4, + [96010] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6992), 1, - anon_sym_SEMI, - STATE(3444), 2, + ACTIONS(6036), 1, + anon_sym_LBRACE, + STATE(3480), 2, sym_line_comment, sym_block_comment, - [96179] = 4, + [96024] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6994), 1, - anon_sym_EQ, - STATE(3445), 2, + ACTIONS(7058), 1, + sym__line_doc_content, + STATE(3481), 2, sym_line_comment, sym_block_comment, - [96193] = 4, + [96038] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6996), 1, - anon_sym_EQ_GT, - STATE(3446), 2, + ACTIONS(7060), 1, + anon_sym_SEMI, + STATE(3482), 2, sym_line_comment, sym_block_comment, - [96207] = 4, + [96052] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6998), 1, - sym_identifier, - STATE(3447), 2, + ACTIONS(7062), 1, + ts_builtin_sym_end, + STATE(3483), 2, sym_line_comment, sym_block_comment, - [96221] = 4, + [96066] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5332), 1, - anon_sym_COLON_COLON, - STATE(3448), 2, + ACTIONS(5842), 1, + anon_sym_RPAREN, + STATE(3484), 2, sym_line_comment, sym_block_comment, - [96235] = 4, + [96080] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4671), 1, - anon_sym_COLON_COLON, - STATE(3449), 2, + ACTIONS(7064), 1, + anon_sym_fn, + STATE(3485), 2, sym_line_comment, sym_block_comment, - [96249] = 4, + [96094] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_COLON_COLON, - STATE(3450), 2, + ACTIONS(7066), 1, + anon_sym_SEMI, + STATE(3486), 2, + sym_line_comment, + sym_block_comment, + [96108] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7068), 1, + anon_sym_SEMI, + STATE(3487), 2, sym_line_comment, sym_block_comment, - [96263] = 4, + [96122] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7000), 1, - anon_sym_EQ_GT, - STATE(3451), 2, + ACTIONS(7070), 1, + sym__raw_string_literal_end, + STATE(3488), 2, sym_line_comment, sym_block_comment, - [96277] = 4, + [96136] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(953), 1, - anon_sym_EQ_GT, - STATE(3452), 2, + ACTIONS(7072), 1, + sym__raw_string_literal_end, + STATE(3489), 2, sym_line_comment, sym_block_comment, - [96291] = 4, + [96150] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7002), 1, - sym_identifier, - STATE(3453), 2, + ACTIONS(7074), 1, + anon_sym_SEMI, + STATE(3490), 2, sym_line_comment, sym_block_comment, - [96305] = 4, + [96164] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7004), 1, - anon_sym_COLON, - STATE(3454), 2, + ACTIONS(7076), 1, + anon_sym_SEMI, + STATE(3491), 2, sym_line_comment, sym_block_comment, - [96319] = 4, + [96178] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7006), 1, - anon_sym_fn, - STATE(3455), 2, + ACTIONS(7078), 1, + anon_sym_RBRACK, + STATE(3492), 2, sym_line_comment, sym_block_comment, - [96333] = 4, + [96192] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7008), 1, - sym_identifier, - STATE(3456), 2, + ACTIONS(7080), 1, + anon_sym_SEMI, + STATE(3493), 2, sym_line_comment, sym_block_comment, - [96347] = 4, + [96206] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7010), 1, - anon_sym_COLON_COLON, - STATE(3457), 2, + ACTIONS(7082), 1, + anon_sym_RPAREN, + STATE(3494), 2, sym_line_comment, sym_block_comment, - [96361] = 4, + [96220] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7012), 1, + ACTIONS(7084), 1, sym_identifier, - STATE(3458), 2, + STATE(3495), 2, sym_line_comment, sym_block_comment, - [96375] = 4, + [96234] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7014), 1, + ACTIONS(7086), 1, sym_identifier, - STATE(3459), 2, + STATE(3496), 2, sym_line_comment, sym_block_comment, - [96389] = 4, + [96248] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7016), 1, + ACTIONS(7088), 1, anon_sym_SEMI, - STATE(3460), 2, + STATE(3497), 2, sym_line_comment, sym_block_comment, - [96403] = 4, + [96262] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7018), 1, - anon_sym_COLON_COLON, - STATE(3461), 2, + ACTIONS(7090), 1, + anon_sym_SEMI, + STATE(3498), 2, sym_line_comment, sym_block_comment, - [96417] = 4, + [96276] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5244), 1, - anon_sym_SEMI, - STATE(3462), 2, + ACTIONS(7092), 1, + anon_sym_RBRACE, + STATE(3499), 2, sym_line_comment, sym_block_comment, - [96431] = 4, + [96290] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7020), 1, - anon_sym_COLON, - STATE(3463), 2, + ACTIONS(7094), 1, + sym_identifier, + STATE(3500), 2, sym_line_comment, sym_block_comment, - [96445] = 4, + [96304] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7022), 1, - sym__raw_string_literal_end, - STATE(3464), 2, + ACTIONS(7096), 1, + sym_identifier, + STATE(3501), 2, sym_line_comment, sym_block_comment, - [96459] = 4, + [96318] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7024), 1, - anon_sym_COLON_COLON, - STATE(3465), 2, + ACTIONS(6748), 1, + anon_sym_SEMI, + STATE(3502), 2, sym_line_comment, sym_block_comment, - [96473] = 4, + [96332] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7026), 1, + ACTIONS(7098), 1, sym_identifier, - STATE(3466), 2, + STATE(3503), 2, sym_line_comment, sym_block_comment, - [96487] = 4, + [96346] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7028), 1, - anon_sym_COLON_COLON, - STATE(3467), 2, + ACTIONS(7100), 1, + anon_sym_SEMI, + STATE(3504), 2, sym_line_comment, sym_block_comment, - [96501] = 4, + [96360] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7030), 1, - sym_identifier, - STATE(3468), 2, + ACTIONS(7102), 1, + anon_sym_RPAREN, + STATE(3505), 2, sym_line_comment, sym_block_comment, - [96515] = 4, + [96374] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7032), 1, + ACTIONS(7104), 1, sym_identifier, - STATE(3469), 2, + STATE(3506), 2, sym_line_comment, sym_block_comment, - [96529] = 4, + [96388] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7034), 1, - sym_identifier, - STATE(3470), 2, + ACTIONS(6118), 1, + anon_sym_RBRACE, + STATE(3507), 2, sym_line_comment, sym_block_comment, - [96543] = 4, + [96402] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7036), 1, - sym_identifier, - STATE(3471), 2, + ACTIONS(7106), 1, + sym_self, + STATE(3508), 2, sym_line_comment, sym_block_comment, - [96557] = 4, + [96416] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 1, - sym_identifier, - STATE(3472), 2, + ACTIONS(7108), 1, + anon_sym_EQ_GT, + STATE(3509), 2, sym_line_comment, sym_block_comment, - [96571] = 4, + [96430] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7040), 1, - anon_sym_RBRACK, - STATE(3473), 2, + ACTIONS(7110), 1, + anon_sym_SEMI, + STATE(3510), 2, sym_line_comment, sym_block_comment, - [96585] = 4, + [96444] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6780), 1, - anon_sym_SEMI, - STATE(3474), 2, + ACTIONS(7112), 1, + anon_sym_EQ, + STATE(3511), 2, sym_line_comment, sym_block_comment, - [96599] = 4, + [96458] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7042), 1, - anon_sym_RPAREN, - STATE(3475), 2, + ACTIONS(7114), 1, + anon_sym_RBRACK, + STATE(3512), 2, sym_line_comment, sym_block_comment, - [96613] = 4, + [96472] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7044), 1, - sym_identifier, - STATE(3476), 2, + ACTIONS(4727), 1, + anon_sym_COLON_COLON, + STATE(3513), 2, sym_line_comment, sym_block_comment, - [96627] = 4, + [96486] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 1, - anon_sym_fn, - STATE(3477), 2, + ACTIONS(7116), 1, + anon_sym_SEMI, + STATE(3514), 2, sym_line_comment, sym_block_comment, - [96641] = 4, + [96500] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(871), 1, - anon_sym_RBRACK, - STATE(3478), 2, + ACTIONS(5646), 1, + anon_sym_RPAREN, + STATE(3515), 2, sym_line_comment, sym_block_comment, - [96655] = 4, + [96514] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7048), 1, - anon_sym_SEMI, - STATE(3479), 2, + ACTIONS(7118), 1, + sym_identifier, + STATE(3516), 2, sym_line_comment, sym_block_comment, - [96669] = 4, + [96528] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7050), 1, - anon_sym_LPAREN, - STATE(3480), 2, + ACTIONS(5386), 1, + anon_sym_SEMI, + STATE(3517), 2, sym_line_comment, sym_block_comment, - [96683] = 4, + [96542] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7052), 1, - anon_sym_SEMI, - STATE(3481), 2, + ACTIONS(6622), 1, + anon_sym_RBRACE, + STATE(3518), 2, sym_line_comment, sym_block_comment, - [96697] = 4, + [96556] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7054), 1, - anon_sym_COLON, - STATE(3482), 2, + ACTIONS(7120), 1, + anon_sym_SEMI, + STATE(3519), 2, sym_line_comment, sym_block_comment, - [96711] = 4, + [96570] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7056), 1, + ACTIONS(1007), 1, anon_sym_EQ_GT, - STATE(3483), 2, + STATE(3520), 2, sym_line_comment, sym_block_comment, - [96725] = 4, + [96584] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7058), 1, - sym_identifier, - STATE(3484), 2, + ACTIONS(7122), 1, + anon_sym_SEMI, + STATE(3521), 2, sym_line_comment, sym_block_comment, - [96739] = 4, + [96598] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_COLON_COLON, - STATE(3485), 2, + ACTIONS(4155), 1, + sym_identifier, + STATE(3522), 2, sym_line_comment, sym_block_comment, - [96753] = 4, + [96612] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7060), 1, + ACTIONS(7124), 1, sym_identifier, - STATE(3486), 2, + STATE(3523), 2, sym_line_comment, sym_block_comment, - [96767] = 4, + [96626] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7062), 1, - anon_sym_COLON_COLON, - STATE(3487), 2, + ACTIONS(7126), 1, + sym__line_doc_content, + STATE(3524), 2, sym_line_comment, sym_block_comment, - [96781] = 4, + [96640] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7064), 1, - anon_sym_fn, - STATE(3488), 2, + ACTIONS(7128), 1, + sym_identifier, + STATE(3525), 2, sym_line_comment, sym_block_comment, - [96795] = 4, + [96654] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5242), 1, - anon_sym_SEMI, - STATE(3489), 2, + ACTIONS(7130), 1, + anon_sym_EQ, + STATE(3526), 2, sym_line_comment, sym_block_comment, - [96809] = 4, + [96668] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5871), 1, - anon_sym_LBRACE, - STATE(3490), 2, + ACTIONS(7132), 1, + anon_sym_RBRACE, + STATE(3527), 2, sym_line_comment, sym_block_comment, - [96823] = 4, + [96682] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5556), 1, - anon_sym_RPAREN, - STATE(3491), 2, + ACTIONS(7134), 1, + anon_sym_RBRACE, + STATE(3528), 2, sym_line_comment, sym_block_comment, - [96837] = 4, + [96696] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6132), 1, - anon_sym_RBRACE, - STATE(3492), 2, + ACTIONS(7136), 1, + anon_sym_COLON, + STATE(3529), 2, sym_line_comment, sym_block_comment, - [96851] = 4, + [96710] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7066), 1, - sym_identifier, - STATE(3493), 2, + ACTIONS(7138), 1, + anon_sym_SEMI, + STATE(3530), 2, sym_line_comment, sym_block_comment, - [96865] = 4, + [96724] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7068), 1, - anon_sym_SEMI, - STATE(3494), 2, + ACTIONS(7140), 1, + sym_identifier, + STATE(3531), 2, sym_line_comment, sym_block_comment, - [96879] = 4, + [96738] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7070), 1, - sym_identifier, - STATE(3495), 2, + ACTIONS(7142), 1, + anon_sym_COLON, + STATE(3532), 2, sym_line_comment, sym_block_comment, - [96893] = 4, + [96752] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7072), 1, - sym__line_doc_content, - STATE(3496), 2, + ACTIONS(7144), 1, + sym_identifier, + STATE(3533), 2, sym_line_comment, sym_block_comment, - [96907] = 4, + [96766] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7074), 1, - anon_sym_COLON, - STATE(3497), 2, + ACTIONS(6122), 1, + anon_sym_RBRACE, + STATE(3534), 2, sym_line_comment, sym_block_comment, - [96921] = 4, + [96780] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7076), 1, - anon_sym_SEMI, - STATE(3498), 2, + ACTIONS(7146), 1, + anon_sym_STAR_SLASH, + STATE(3535), 2, sym_line_comment, sym_block_comment, - [96935] = 4, + [96794] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7078), 1, - anon_sym_RBRACE, - STATE(3499), 2, + ACTIONS(7148), 1, + sym_identifier, + STATE(3536), 2, sym_line_comment, sym_block_comment, - [96949] = 4, + [96808] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7080), 1, - anon_sym_SEMI, - STATE(3500), 2, + ACTIONS(7150), 1, + sym__raw_string_literal_end, + STATE(3537), 2, sym_line_comment, sym_block_comment, - [96963] = 4, + [96822] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7082), 1, - anon_sym_SEMI, - STATE(3501), 2, + ACTIONS(7152), 1, + anon_sym_LT, + STATE(3538), 2, sym_line_comment, sym_block_comment, - [96977] = 4, + [96836] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7084), 1, + ACTIONS(7154), 1, sym__line_doc_content, - STATE(3502), 2, + STATE(3539), 2, sym_line_comment, sym_block_comment, - [96991] = 4, + [96850] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7086), 1, - anon_sym_COLON, - STATE(3503), 2, + ACTIONS(7156), 1, + anon_sym_LPAREN, + STATE(3540), 2, sym_line_comment, sym_block_comment, - [97005] = 4, + [96864] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7088), 1, - sym_identifier, - STATE(3504), 2, + ACTIONS(7158), 1, + anon_sym_SEMI, + STATE(3541), 2, sym_line_comment, sym_block_comment, - [97019] = 4, + [96878] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 1, - sym_identifier, - STATE(3505), 2, + ACTIONS(7160), 1, + anon_sym_fn, + STATE(3542), 2, sym_line_comment, sym_block_comment, - [97033] = 4, + [96892] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7092), 1, - sym_identifier, - STATE(3506), 2, + ACTIONS(7162), 1, + sym_raw_string_literal_content, + STATE(3543), 2, sym_line_comment, sym_block_comment, - [97047] = 4, + [96906] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5232), 1, - anon_sym_SEMI, - STATE(3507), 2, + ACTIONS(7164), 1, + sym_identifier, + STATE(3544), 2, sym_line_comment, sym_block_comment, - [97061] = 4, + [96920] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7094), 1, + ACTIONS(7166), 1, anon_sym_SEMI, - STATE(3508), 2, + STATE(3545), 2, sym_line_comment, sym_block_comment, - [97075] = 4, + [96934] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5671), 1, - anon_sym_RPAREN, - STATE(3509), 2, + ACTIONS(7168), 1, + anon_sym_LBRACK, + STATE(3546), 2, sym_line_comment, sym_block_comment, - [97089] = 4, + [96948] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7096), 1, - anon_sym_RBRACK, - STATE(3510), 2, + ACTIONS(7170), 1, + anon_sym_RPAREN, + STATE(3547), 2, sym_line_comment, sym_block_comment, - [97103] = 4, + [96962] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, - anon_sym_RBRACE, - STATE(3511), 2, + ACTIONS(3198), 1, + anon_sym_PLUS, + STATE(3548), 2, sym_line_comment, sym_block_comment, - [97117] = 4, + [96976] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5923), 1, - anon_sym_RPAREN, - STATE(3512), 2, + ACTIONS(7172), 1, + sym__raw_string_literal_end, + STATE(3549), 2, sym_line_comment, sym_block_comment, - [97131] = 4, + [96990] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4791), 1, - anon_sym_COLON_COLON, - STATE(3513), 2, + ACTIONS(7174), 1, + anon_sym_SEMI, + STATE(3550), 2, sym_line_comment, sym_block_comment, - [97145] = 4, + [97004] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7100), 1, - anon_sym_SEMI, - STATE(3514), 2, + ACTIONS(7176), 1, + sym_identifier, + STATE(3551), 2, sym_line_comment, sym_block_comment, - [97159] = 4, + [97018] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7102), 1, - anon_sym_SEMI, - STATE(3515), 2, + ACTIONS(7178), 1, + anon_sym_COLON_COLON, + STATE(3552), 2, sym_line_comment, sym_block_comment, - [97173] = 4, + [97032] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7104), 1, - anon_sym_LT, - STATE(3516), 2, + ACTIONS(7180), 1, + sym_identifier, + STATE(3553), 2, sym_line_comment, sym_block_comment, - [97187] = 4, + [97046] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, - anon_sym_PLUS, - STATE(3517), 2, + ACTIONS(7182), 1, + anon_sym_RBRACK, + STATE(3554), 2, sym_line_comment, sym_block_comment, - [97201] = 4, + [97060] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7106), 1, - anon_sym_SEMI, - STATE(3518), 2, + ACTIONS(7184), 1, + sym_identifier, + STATE(3555), 2, sym_line_comment, sym_block_comment, - [97215] = 4, + [97074] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6704), 1, - anon_sym_SEMI, - STATE(3519), 2, + ACTIONS(7186), 1, + anon_sym_COLON, + STATE(3556), 2, sym_line_comment, sym_block_comment, - [97229] = 4, + [97088] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7108), 1, - sym_identifier, - STATE(3520), 2, + ACTIONS(7188), 1, + anon_sym_COLON_COLON, + STATE(3557), 2, sym_line_comment, sym_block_comment, - [97243] = 4, + [97102] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7110), 1, - anon_sym_COLON, - STATE(3521), 2, + ACTIONS(7190), 1, + anon_sym_RBRACK, + STATE(3558), 2, sym_line_comment, sym_block_comment, - [97257] = 4, + [97116] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7112), 1, - anon_sym_LT2, - STATE(3522), 2, + ACTIONS(6634), 1, + anon_sym_RBRACE, + STATE(3559), 2, sym_line_comment, sym_block_comment, - [97271] = 4, + [97130] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6407), 1, - anon_sym_GT, - STATE(3523), 2, + ACTIONS(7192), 1, + anon_sym_RBRACK, + STATE(3560), 2, sym_line_comment, sym_block_comment, - [97285] = 4, + [97144] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6118), 1, - anon_sym_RBRACE, - STATE(3524), 2, + ACTIONS(7194), 1, + sym_identifier, + STATE(3561), 2, sym_line_comment, sym_block_comment, - [97299] = 4, + [97158] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7114), 1, - anon_sym_SEMI, - STATE(3525), 2, + ACTIONS(5846), 1, + anon_sym_RPAREN, + STATE(3562), 2, sym_line_comment, sym_block_comment, - [97313] = 4, + [97172] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7116), 1, - sym_self, - STATE(3526), 2, + ACTIONS(6518), 1, + anon_sym_COLON_COLON, + STATE(3563), 2, sym_line_comment, sym_block_comment, - [97327] = 4, + [97186] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7118), 1, + ACTIONS(7196), 1, anon_sym_EQ_GT, - STATE(3527), 2, + STATE(3564), 2, sym_line_comment, sym_block_comment, - [97341] = 4, + [97200] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7120), 1, - anon_sym_SEMI, - STATE(3528), 2, + ACTIONS(5918), 1, + anon_sym_RPAREN, + STATE(3565), 2, sym_line_comment, sym_block_comment, - [97355] = 4, + [97214] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7122), 1, - sym__raw_string_literal_end, - STATE(3529), 2, + ACTIONS(7198), 1, + anon_sym_STAR_SLASH, + STATE(3566), 2, sym_line_comment, sym_block_comment, - [97369] = 4, + [97228] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7124), 1, - anon_sym_SEMI, - STATE(3530), 2, + ACTIONS(744), 1, + anon_sym_RBRACK, + STATE(3567), 2, sym_line_comment, sym_block_comment, - [97383] = 4, + [97242] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7126), 1, - anon_sym_RBRACE, - STATE(3531), 2, + ACTIONS(7200), 1, + sym__line_doc_content, + STATE(3568), 2, sym_line_comment, sym_block_comment, - [97397] = 4, + [97256] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7128), 1, - anon_sym_SEMI, - STATE(3532), 2, + ACTIONS(4849), 1, + anon_sym_COLON_COLON, + STATE(3569), 2, sym_line_comment, sym_block_comment, - [97411] = 4, + [97270] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7130), 1, - anon_sym_SEMI, - STATE(3533), 2, + ACTIONS(7202), 1, + anon_sym_EQ_GT, + STATE(3570), 2, sym_line_comment, sym_block_comment, - [97425] = 4, + [97284] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7132), 1, - anon_sym_RPAREN, - STATE(3534), 2, + ACTIONS(7204), 1, + anon_sym_SEMI, + STATE(3571), 2, sym_line_comment, sym_block_comment, - [97439] = 4, + [97298] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7134), 1, - sym_identifier, - STATE(3535), 2, + ACTIONS(7206), 1, + anon_sym_SEMI, + STATE(3572), 2, sym_line_comment, sym_block_comment, - [97453] = 4, + [97312] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7136), 1, - anon_sym_fn, - STATE(3536), 2, + ACTIONS(5688), 1, + anon_sym_RPAREN, + STATE(3573), 2, sym_line_comment, sym_block_comment, - [97467] = 4, + [97326] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7138), 1, - sym_identifier, - STATE(3537), 2, + ACTIONS(7208), 1, + anon_sym_COLON, + STATE(3574), 2, sym_line_comment, sym_block_comment, - [97481] = 4, + [97340] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7140), 1, - sym_identifier, - STATE(3538), 2, + ACTIONS(7210), 1, + sym__raw_string_literal_end, + STATE(3575), 2, sym_line_comment, sym_block_comment, - [97495] = 4, + [97354] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, - anon_sym_SEMI, - STATE(3539), 2, + ACTIONS(6514), 1, + anon_sym_GT, + STATE(3576), 2, sym_line_comment, sym_block_comment, - [97509] = 4, + [97368] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7144), 1, + ACTIONS(7212), 1, anon_sym_SEMI, - STATE(3540), 2, + STATE(3577), 2, sym_line_comment, sym_block_comment, - [97523] = 4, + [97382] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7146), 1, - anon_sym_SEMI, - STATE(3541), 2, + ACTIONS(941), 1, + anon_sym_RBRACK, + STATE(3578), 2, sym_line_comment, sym_block_comment, - [97537] = 4, + [97396] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7148), 1, - anon_sym_EQ_GT, - STATE(3542), 2, + ACTIONS(5702), 1, + anon_sym_RPAREN, + STATE(3579), 2, sym_line_comment, sym_block_comment, - [97551] = 4, + [97410] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7150), 1, - anon_sym_SEMI, - STATE(3543), 2, + ACTIONS(7214), 1, + anon_sym_RBRACE, + STATE(3580), 2, sym_line_comment, sym_block_comment, - [97565] = 4, + [97424] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5007), 1, - anon_sym_COLON_COLON, - STATE(3544), 2, + ACTIONS(7216), 1, + anon_sym_LPAREN, + STATE(3581), 2, sym_line_comment, sym_block_comment, - [97579] = 4, + [97438] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5631), 1, - anon_sym_RPAREN, - STATE(3545), 2, + ACTIONS(7218), 1, + anon_sym_COLON, + STATE(3582), 2, sym_line_comment, sym_block_comment, - [97593] = 4, + [97452] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7152), 1, - anon_sym_SEMI, - STATE(3546), 2, + ACTIONS(7220), 1, + sym_identifier, + STATE(3583), 2, sym_line_comment, sym_block_comment, - [97607] = 4, + [97466] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6076), 1, - anon_sym_RBRACE, - STATE(3547), 2, + ACTIONS(7222), 1, + anon_sym_SEMI, + STATE(3584), 2, sym_line_comment, sym_block_comment, - [97621] = 4, + [97480] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - anon_sym_COLON, - STATE(3548), 2, + ACTIONS(7224), 1, + sym_raw_string_literal_content, + STATE(3585), 2, sym_line_comment, sym_block_comment, - [97635] = 4, + [97494] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, - anon_sym_STAR_SLASH, - STATE(3549), 2, + ACTIONS(4266), 1, + anon_sym_RPAREN, + STATE(3586), 2, sym_line_comment, sym_block_comment, - [97649] = 4, + [97508] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7158), 1, + ACTIONS(7226), 1, anon_sym_SEMI, - STATE(3550), 2, + STATE(3587), 2, sym_line_comment, sym_block_comment, - [97663] = 4, + [97522] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 1, + ACTIONS(7228), 1, anon_sym_COLON_COLON, - STATE(3551), 2, + STATE(3588), 2, sym_line_comment, sym_block_comment, - [97677] = 4, + [97536] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7160), 1, + ACTIONS(4316), 1, anon_sym_COLON_COLON, - STATE(3552), 2, + STATE(3589), 2, sym_line_comment, sym_block_comment, - [97691] = 4, + [97550] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7162), 1, - anon_sym_RBRACE, - STATE(3553), 2, + ACTIONS(5900), 1, + anon_sym_COLON_COLON, + STATE(3590), 2, sym_line_comment, sym_block_comment, - [97705] = 4, + [97564] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3846), 1, - anon_sym_COLON_COLON, - STATE(3554), 2, + ACTIONS(6175), 1, + anon_sym_RBRACE, + STATE(3591), 2, sym_line_comment, sym_block_comment, - [97719] = 4, + [97578] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7164), 1, - anon_sym_EQ_GT, - STATE(3555), 2, + ACTIONS(7230), 1, + sym_identifier, + STATE(3592), 2, sym_line_comment, sym_block_comment, - [97733] = 4, + [97592] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(883), 1, - anon_sym_RBRACK, - STATE(3556), 2, + ACTIONS(7232), 1, + sym_identifier, + STATE(3593), 2, sym_line_comment, sym_block_comment, - [97747] = 4, + [97606] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6756), 1, - anon_sym_SEMI, - STATE(3557), 2, + ACTIONS(7234), 1, + anon_sym_COLON_COLON, + STATE(3594), 2, sym_line_comment, sym_block_comment, - [97761] = 4, + [97620] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7166), 1, - anon_sym_fn, - STATE(3558), 2, + ACTIONS(7236), 1, + sym_identifier, + STATE(3595), 2, sym_line_comment, sym_block_comment, - [97775] = 4, + [97634] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6006), 1, - anon_sym_RPAREN, - STATE(3559), 2, + ACTIONS(7238), 1, + anon_sym_SEMI, + STATE(3596), 2, sym_line_comment, sym_block_comment, - [97789] = 4, + [97648] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7168), 1, - anon_sym_RBRACK, - STATE(3560), 2, + ACTIONS(7240), 1, + anon_sym_SEMI, + STATE(3597), 2, sym_line_comment, sym_block_comment, - [97803] = 4, + [97662] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7170), 1, - sym__line_doc_content, - STATE(3561), 2, + ACTIONS(6408), 1, + anon_sym_GT, + STATE(3598), 2, sym_line_comment, sym_block_comment, - [97817] = 4, + [97676] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7172), 1, + ACTIONS(7242), 1, anon_sym_SEMI, - STATE(3562), 2, + STATE(3599), 2, sym_line_comment, sym_block_comment, - [97831] = 4, + [97690] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7174), 1, - sym_identifier, - STATE(3563), 2, + ACTIONS(7244), 1, + anon_sym_LT2, + STATE(3600), 2, sym_line_comment, sym_block_comment, - [97845] = 4, + [97704] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7176), 1, - sym_identifier, - STATE(3564), 2, + ACTIONS(7246), 1, + anon_sym_SEMI, + STATE(3601), 2, sym_line_comment, sym_block_comment, - [97859] = 4, + [97718] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6151), 1, - anon_sym_RBRACE, - STATE(3565), 2, + ACTIONS(7248), 1, + anon_sym_fn, + STATE(3602), 2, sym_line_comment, sym_block_comment, - [97873] = 4, + [97732] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 1, + ACTIONS(7250), 1, anon_sym_SEMI, - STATE(3566), 2, + STATE(3603), 2, sym_line_comment, sym_block_comment, - [97887] = 4, + [97746] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7180), 1, - anon_sym_SEMI, - STATE(3567), 2, + ACTIONS(7252), 1, + anon_sym_COLON_COLON, + STATE(3604), 2, sym_line_comment, sym_block_comment, - [97901] = 4, + [97760] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6050), 1, - anon_sym_RBRACE, - STATE(3568), 2, + ACTIONS(3910), 1, + anon_sym_COLON_COLON, + STATE(3605), 2, sym_line_comment, sym_block_comment, - [97915] = 4, + [97774] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 1, + ACTIONS(7254), 1, anon_sym_SEMI, - STATE(3569), 2, + STATE(3606), 2, sym_line_comment, sym_block_comment, - [97929] = 4, + [97788] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7184), 1, - anon_sym_STAR_SLASH, - STATE(3570), 2, + ACTIONS(7256), 1, + anon_sym_COLON_COLON, + STATE(3607), 2, sym_line_comment, sym_block_comment, - [97943] = 4, + [97802] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 1, - sym__line_doc_content, - STATE(3571), 2, + ACTIONS(7258), 1, + anon_sym_SEMI, + STATE(3608), 2, sym_line_comment, sym_block_comment, - [97957] = 4, + [97816] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7188), 1, + ACTIONS(7260), 1, anon_sym_SEMI, - STATE(3572), 2, + STATE(3609), 2, sym_line_comment, sym_block_comment, - [97971] = 4, + [97830] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7190), 1, - sym_identifier, - STATE(3573), 2, + ACTIONS(6126), 1, + anon_sym_RBRACE, + STATE(3610), 2, sym_line_comment, sym_block_comment, - [97985] = 4, + [97844] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7192), 1, - anon_sym_SEMI, - STATE(3574), 2, + ACTIONS(5043), 1, + anon_sym_COLON_COLON, + STATE(3611), 2, sym_line_comment, sym_block_comment, - [97999] = 4, + [97858] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7194), 1, - anon_sym_SEMI, - STATE(3575), 2, + ACTIONS(7262), 1, + anon_sym_COLON_COLON, + STATE(3612), 2, sym_line_comment, sym_block_comment, - [98013] = 4, + [97872] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7196), 1, - anon_sym_COLON, - STATE(3576), 2, + ACTIONS(7264), 1, + anon_sym_fn, + STATE(3613), 2, sym_line_comment, sym_block_comment, - [98027] = 4, + [97886] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7198), 1, + ACTIONS(7266), 1, anon_sym_SEMI, - STATE(3577), 2, + STATE(3614), 2, sym_line_comment, sym_block_comment, - [98041] = 4, + [97900] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7200), 1, - sym_identifier, - STATE(3578), 2, + ACTIONS(7268), 1, + anon_sym_LBRACE, + STATE(3615), 2, sym_line_comment, sym_block_comment, - [98055] = 4, + [97914] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7202), 1, - anon_sym_COLON, - STATE(3579), 2, + ACTIONS(7270), 1, + anon_sym_SEMI, + STATE(3616), 2, sym_line_comment, sym_block_comment, - [98069] = 4, + [97928] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7204), 1, - sym_identifier, - STATE(3580), 2, + ACTIONS(901), 1, + anon_sym_RBRACK, + STATE(3617), 2, sym_line_comment, sym_block_comment, - [98083] = 4, + [97942] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7206), 1, - sym_raw_string_literal_content, - STATE(3581), 2, + ACTIONS(7272), 1, + anon_sym_COLON_COLON, + STATE(3618), 2, sym_line_comment, sym_block_comment, - [98097] = 4, + [97956] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7208), 1, - sym_raw_string_literal_content, - STATE(3582), 2, + ACTIONS(7274), 1, + anon_sym_RBRACK, + STATE(3619), 2, sym_line_comment, sym_block_comment, - [98111] = 4, + [97970] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5786), 1, - anon_sym_RPAREN, - STATE(3583), 2, + ACTIONS(7276), 1, + sym_identifier, + STATE(3620), 2, sym_line_comment, sym_block_comment, - [98125] = 4, + [97984] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7210), 1, - anon_sym_SEMI, - STATE(3584), 2, + ACTIONS(7278), 1, + sym_identifier, + STATE(3621), 2, sym_line_comment, sym_block_comment, - [98139] = 4, + [97998] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7212), 1, + ACTIONS(7280), 1, anon_sym_SEMI, - STATE(3585), 2, + STATE(3622), 2, sym_line_comment, sym_block_comment, - [98153] = 4, + [98012] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4224), 1, - anon_sym_COLON_COLON, - STATE(3586), 2, + ACTIONS(7282), 1, + sym_identifier, + STATE(3623), 2, sym_line_comment, sym_block_comment, - [98167] = 4, + [98026] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, - anon_sym_COLON_COLON, - STATE(3587), 2, + ACTIONS(7284), 1, + sym_raw_string_literal_content, + STATE(3624), 2, sym_line_comment, sym_block_comment, - [98181] = 4, + [98040] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7214), 1, - sym_identifier, - STATE(3588), 2, + ACTIONS(6382), 1, + anon_sym_RBRACE, + STATE(3625), 2, sym_line_comment, sym_block_comment, - [98195] = 4, + [98054] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5790), 1, - anon_sym_RBRACK, - STATE(3589), 2, + ACTIONS(7286), 1, + sym_identifier, + STATE(3626), 2, sym_line_comment, sym_block_comment, - [98209] = 4, + [98068] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7216), 1, - anon_sym_SEMI, - STATE(3590), 2, + ACTIONS(7288), 1, + sym_identifier, + STATE(3627), 2, sym_line_comment, sym_block_comment, - [98223] = 4, + [98082] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7218), 1, + ACTIONS(7290), 1, anon_sym_COLON_COLON, - STATE(3591), 2, + STATE(3628), 2, sym_line_comment, sym_block_comment, - [98237] = 4, + [98096] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7220), 1, - anon_sym_RBRACE, - STATE(3592), 2, + ACTIONS(5820), 1, + anon_sym_RPAREN, + STATE(3629), 2, sym_line_comment, sym_block_comment, - [98251] = 4, + [98110] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7222), 1, - sym__raw_string_literal_end, - STATE(3593), 2, + ACTIONS(6154), 1, + anon_sym_RBRACE, + STATE(3630), 2, sym_line_comment, sym_block_comment, - [98265] = 4, + [98124] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 1, - sym__raw_string_literal_end, - STATE(3594), 2, + ACTIONS(7292), 1, + anon_sym_COLON_COLON, + STATE(3631), 2, sym_line_comment, sym_block_comment, - [98279] = 4, + [98138] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7226), 1, - anon_sym_fn, - STATE(3595), 2, + ACTIONS(7294), 1, + sym_identifier, + STATE(3632), 2, sym_line_comment, sym_block_comment, - [98293] = 4, + [98152] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7228), 1, - anon_sym_SEMI, - STATE(3596), 2, + ACTIONS(7296), 1, + sym_identifier, + STATE(3633), 2, sym_line_comment, sym_block_comment, - [98307] = 4, + [98166] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7230), 1, + ACTIONS(7298), 1, anon_sym_COLON_COLON, - STATE(3597), 2, + STATE(3634), 2, sym_line_comment, sym_block_comment, - [98321] = 4, + [98180] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7232), 1, - sym__line_doc_content, - STATE(3598), 2, + ACTIONS(7300), 1, + sym_identifier, + STATE(3635), 2, sym_line_comment, sym_block_comment, - [98335] = 4, + [98194] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4242), 1, - anon_sym_RPAREN, - STATE(3599), 2, + ACTIONS(7302), 1, + anon_sym_COLON, + STATE(3636), 2, sym_line_comment, sym_block_comment, - [98349] = 4, + [98208] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7234), 1, - anon_sym_COLON_COLON, - STATE(3600), 2, + ACTIONS(7304), 1, + sym_identifier, + STATE(3637), 2, sym_line_comment, sym_block_comment, - [98363] = 4, + [98222] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7236), 1, - anon_sym_LT2, - STATE(3601), 2, + ACTIONS(7306), 1, + sym_identifier, + STATE(3638), 2, sym_line_comment, sym_block_comment, - [98377] = 4, + [98236] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7238), 1, - anon_sym_RBRACE, - STATE(3602), 2, + ACTIONS(7308), 1, + anon_sym_COLON_COLON, + STATE(3639), 2, sym_line_comment, sym_block_comment, - [98391] = 4, + [98250] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5019), 1, - anon_sym_COLON_COLON, - STATE(3603), 2, + ACTIONS(7310), 1, + anon_sym_LBRACE, + STATE(3640), 2, sym_line_comment, sym_block_comment, - [98405] = 4, + [98264] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7240), 1, - anon_sym_SEMI, - STATE(3604), 2, + ACTIONS(7312), 1, + anon_sym_LBRACK, + STATE(3641), 2, sym_line_comment, sym_block_comment, - [98419] = 4, + [98278] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7242), 1, - anon_sym_COLON_COLON, - STATE(3605), 2, + ACTIONS(4672), 1, + anon_sym_fn, + STATE(3642), 2, sym_line_comment, sym_block_comment, - [98433] = 4, + [98292] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7244), 1, - anon_sym_fn, - STATE(3606), 2, + ACTIONS(5824), 1, + anon_sym_RBRACK, + STATE(3643), 2, sym_line_comment, sym_block_comment, - [98447] = 4, + [98306] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7246), 1, - anon_sym_LBRACK, - STATE(3607), 2, + ACTIONS(5362), 1, + anon_sym_SEMI, + STATE(3644), 2, sym_line_comment, sym_block_comment, - [98461] = 4, + [98320] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7248), 1, - anon_sym_LBRACE, - STATE(3608), 2, + ACTIONS(7314), 1, + sym_raw_string_literal_content, + STATE(3645), 2, sym_line_comment, sym_block_comment, - [98475] = 4, + [98334] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7250), 1, - sym_identifier, - STATE(3609), 2, + ACTIONS(3604), 1, + anon_sym_COLON_COLON, + STATE(3646), 2, sym_line_comment, sym_block_comment, - [98489] = 4, + [98348] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(7316), 1, anon_sym_RBRACK, - STATE(3610), 2, + STATE(3647), 2, sym_line_comment, sym_block_comment, - [98503] = 4, + [98362] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7252), 1, - sym_identifier, - STATE(3611), 2, + ACTIONS(7318), 1, + anon_sym_COLON_COLON, + STATE(3648), 2, sym_line_comment, sym_block_comment, - [98517] = 4, + [98376] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5929), 1, - anon_sym_RPAREN, - STATE(3612), 2, + ACTIONS(6810), 1, + anon_sym_SEMI, + STATE(3649), 2, sym_line_comment, sym_block_comment, - [98531] = 4, + [98390] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7254), 1, - sym_identifier, - STATE(3613), 2, + ACTIONS(7320), 1, + anon_sym_COLON, + STATE(3650), 2, sym_line_comment, sym_block_comment, - [98545] = 4, + [98404] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7256), 1, - anon_sym_LT2, - STATE(3614), 2, + ACTIONS(7322), 1, + anon_sym_LBRACE, + STATE(3651), 2, sym_line_comment, sym_block_comment, - [98559] = 4, + [98418] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7258), 1, - sym_identifier, - STATE(3615), 2, + ACTIONS(7324), 1, + sym_raw_string_literal_content, + STATE(3652), 2, sym_line_comment, sym_block_comment, - [98573] = 4, + [98432] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4614), 1, - anon_sym_fn, - STATE(3616), 2, + ACTIONS(5282), 1, + anon_sym_COLON_COLON, + STATE(3653), 2, sym_line_comment, sym_block_comment, - [98587] = 4, + [98446] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7260), 1, - sym_raw_string_literal_content, - STATE(3617), 2, + ACTIONS(7326), 1, + anon_sym_COLON_COLON, + STATE(3654), 2, sym_line_comment, sym_block_comment, - [98601] = 4, + [98460] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7262), 1, - anon_sym_RPAREN, - STATE(3618), 2, + ACTIONS(7328), 1, + sym_raw_string_literal_content, + STATE(3655), 2, sym_line_comment, sym_block_comment, - [98615] = 4, + [98474] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4107), 1, - sym_identifier, - STATE(3619), 2, + ACTIONS(6062), 1, + anon_sym_LBRACE, + STATE(3656), 2, sym_line_comment, sym_block_comment, - [98629] = 4, + [98488] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5993), 1, - anon_sym_RBRACK, - STATE(3620), 2, + ACTIONS(5798), 1, + anon_sym_COLON_COLON, + STATE(3657), 2, sym_line_comment, sym_block_comment, - [98643] = 4, + [98502] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7264), 1, + ACTIONS(7330), 1, anon_sym_COLON_COLON, - STATE(3621), 2, + STATE(3658), 2, sym_line_comment, sym_block_comment, - [98657] = 4, + [98516] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7266), 1, - anon_sym_SEMI, - STATE(3622), 2, + ACTIONS(6070), 1, + anon_sym_LBRACE, + STATE(3659), 2, sym_line_comment, sym_block_comment, - [98671] = 4, + [98530] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5881), 1, - anon_sym_LBRACE, - STATE(3623), 2, + ACTIONS(7332), 1, + anon_sym_COLON_COLON, + STATE(3660), 2, sym_line_comment, sym_block_comment, - [98685] = 4, + [98544] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7268), 1, + ACTIONS(5354), 1, anon_sym_COLON_COLON, - STATE(3624), 2, + STATE(3661), 2, sym_line_comment, sym_block_comment, - [98699] = 4, + [98558] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7270), 1, - anon_sym_RBRACK, - STATE(3625), 2, + ACTIONS(5320), 1, + anon_sym_COLON_COLON, + STATE(3662), 2, sym_line_comment, sym_block_comment, - [98713] = 4, + [98572] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5955), 1, - anon_sym_RPAREN, - STATE(3626), 2, + ACTIONS(4306), 1, + anon_sym_COLON_COLON, + STATE(3663), 2, sym_line_comment, sym_block_comment, - [98727] = 4, + [98586] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7272), 1, + ACTIONS(7334), 1, anon_sym_COLON_COLON, - STATE(3627), 2, + STATE(3664), 2, sym_line_comment, sym_block_comment, - [98741] = 4, + [98600] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7274), 1, + ACTIONS(7336), 1, anon_sym_SEMI, - STATE(3628), 2, + STATE(3665), 2, sym_line_comment, sym_block_comment, - [98755] = 4, + [98614] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7276), 1, + ACTIONS(7338), 1, sym_identifier, - STATE(3629), 2, + STATE(3666), 2, sym_line_comment, sym_block_comment, - [98769] = 4, + [98628] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7278), 1, + ACTIONS(7340), 1, anon_sym_SEMI, - STATE(3630), 2, + STATE(3667), 2, sym_line_comment, sym_block_comment, - [98783] = 4, + [98642] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, - STATE(3631), 2, + ACTIONS(7342), 1, + sym_identifier, + STATE(3668), 2, sym_line_comment, sym_block_comment, - [98797] = 4, + [98656] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7282), 1, - anon_sym_LBRACE, - STATE(3632), 2, + ACTIONS(7344), 1, + anon_sym_COLON, + STATE(3669), 2, sym_line_comment, sym_block_comment, - [98811] = 4, + [98670] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_COLON_COLON, - STATE(3633), 2, + ACTIONS(7346), 1, + anon_sym_LBRACK, + STATE(3670), 2, sym_line_comment, sym_block_comment, - [98825] = 4, + [98684] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7284), 1, - anon_sym_LPAREN, - STATE(3634), 2, + ACTIONS(7348), 1, + anon_sym_SEMI, + STATE(3671), 2, sym_line_comment, sym_block_comment, - [98839] = 4, + [98698] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6491), 1, - anon_sym_RBRACE, - STATE(3635), 2, + ACTIONS(7350), 1, + anon_sym_SEMI, + STATE(3672), 2, sym_line_comment, sym_block_comment, - [98853] = 4, + [98712] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7286), 1, - anon_sym_SEMI, - STATE(3636), 2, + ACTIONS(6104), 1, + anon_sym_RPAREN, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [98867] = 4, + [98726] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7288), 1, - sym_raw_string_literal_content, - STATE(3637), 2, + ACTIONS(7352), 1, + sym_identifier, + STATE(3674), 2, + sym_line_comment, + sym_block_comment, + [98740] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7354), 1, + anon_sym_SEMI, + STATE(3675), 2, sym_line_comment, sym_block_comment, - [98881] = 4, + [98754] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3574), 1, - anon_sym_COLON_COLON, - STATE(3638), 2, + ACTIONS(7356), 1, + anon_sym_LBRACK, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [98895] = 4, + [98768] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7290), 1, + ACTIONS(7358), 1, anon_sym_COLON, - STATE(3639), 2, + STATE(3677), 2, sym_line_comment, sym_block_comment, - [98909] = 4, + [98782] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7292), 1, - anon_sym_COLON_COLON, - STATE(3640), 2, + ACTIONS(7360), 1, + anon_sym_COLON, + STATE(3678), 2, sym_line_comment, sym_block_comment, - [98923] = 4, + [98796] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7294), 1, - anon_sym_RPAREN, - STATE(3641), 2, + ACTIONS(7362), 1, + sym_identifier, + STATE(3679), 2, sym_line_comment, sym_block_comment, - [98937] = 4, + [98810] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7296), 1, - anon_sym_LBRACE, - STATE(3642), 2, + ACTIONS(7364), 1, + sym_identifier, + STATE(3680), 2, sym_line_comment, sym_block_comment, - [98951] = 4, + [98824] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7298), 1, - sym_raw_string_literal_content, - STATE(3643), 2, + ACTIONS(7366), 1, + sym_identifier, + STATE(3681), 2, sym_line_comment, sym_block_comment, - [98965] = 4, + [98838] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, - anon_sym_COLON_COLON, - STATE(3644), 2, + ACTIONS(7368), 1, + anon_sym_COLON, + STATE(3682), 2, sym_line_comment, sym_block_comment, - [98979] = 4, + [98852] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7300), 1, - anon_sym_COLON_COLON, - STATE(3645), 2, + ACTIONS(7370), 1, + anon_sym_COLON, + STATE(3683), 2, sym_line_comment, sym_block_comment, - [98993] = 4, + [98866] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7302), 1, - anon_sym_SEMI, - STATE(3646), 2, + ACTIONS(7372), 1, + sym_identifier, + STATE(3684), 2, sym_line_comment, sym_block_comment, - [99007] = 4, + [98880] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5961), 1, - anon_sym_LBRACE, - STATE(3647), 2, + ACTIONS(7374), 1, + sym_identifier, + STATE(3685), 2, sym_line_comment, sym_block_comment, - [99021] = 4, + [98894] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5734), 1, - anon_sym_COLON_COLON, - STATE(3648), 2, + ACTIONS(7376), 1, + sym_identifier, + STATE(3686), 2, sym_line_comment, sym_block_comment, - [99035] = 4, + [98908] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7304), 1, - anon_sym_COLON_COLON, - STATE(3649), 2, + ACTIONS(5288), 1, + anon_sym_SEMI, + STATE(3687), 2, sym_line_comment, sym_block_comment, - [99049] = 4, + [98922] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5985), 1, - anon_sym_LBRACE, - STATE(3650), 2, + ACTIONS(7378), 1, + anon_sym_COLON, + STATE(3688), 2, sym_line_comment, sym_block_comment, - [99063] = 4, + [98936] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7306), 1, - anon_sym_COLON_COLON, - STATE(3651), 2, + ACTIONS(6144), 1, + anon_sym_GT, + STATE(3689), 2, sym_line_comment, sym_block_comment, - [99077] = 4, + [98950] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5274), 1, - anon_sym_COLON_COLON, - STATE(3652), 2, + ACTIONS(7380), 1, + sym__raw_string_literal_end, + STATE(3690), 2, sym_line_comment, sym_block_comment, - [99091] = 4, + [98964] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - anon_sym_COLON_COLON, - STATE(3653), 2, + ACTIONS(6550), 1, + anon_sym_RBRACE, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [99105] = 4, + [98978] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4230), 1, + ACTIONS(4240), 1, anon_sym_COLON_COLON, - STATE(3654), 2, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [99119] = 4, + [98992] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7308), 1, - anon_sym_COLON_COLON, - STATE(3655), 2, + ACTIONS(7382), 1, + anon_sym_COLON, + STATE(3693), 2, sym_line_comment, sym_block_comment, - [99133] = 4, + [99006] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7310), 1, - anon_sym_COLON_COLON, - STATE(3656), 2, + ACTIONS(1015), 1, + anon_sym_EQ_GT, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [99147] = 4, + [99020] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6429), 1, - anon_sym_GT, - STATE(3657), 2, + ACTIONS(4745), 1, + anon_sym_COLON_COLON, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [99161] = 4, + [99034] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7312), 1, - sym_identifier, - STATE(3658), 2, + ACTIONS(3156), 1, + anon_sym_PLUS, + STATE(3696), 2, sym_line_comment, sym_block_comment, - [99175] = 4, + [99048] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3884), 1, - anon_sym_COLON_COLON, - STATE(3659), 2, + ACTIONS(7384), 1, + sym_identifier, + STATE(3697), 2, sym_line_comment, sym_block_comment, - [99189] = 4, + [99062] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7314), 1, + ACTIONS(7386), 1, anon_sym_COLON, - STATE(3660), 2, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [99203] = 4, + [99076] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7316), 1, - anon_sym_LBRACK, - STATE(3661), 2, + ACTIONS(7388), 1, + anon_sym_SEMI, + STATE(3699), 2, sym_line_comment, sym_block_comment, - [99217] = 4, + [99090] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - anon_sym_RBRACE, - STATE(3662), 2, + ACTIONS(6888), 1, + anon_sym_SEMI, + STATE(3700), 2, sym_line_comment, sym_block_comment, - [99231] = 4, + [99104] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7318), 1, - anon_sym_LBRACK, - STATE(3663), 2, + ACTIONS(7390), 1, + anon_sym_SEMI, + STATE(3701), 2, sym_line_comment, sym_block_comment, - [99245] = 4, + [99118] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7320), 1, + ACTIONS(7392), 1, anon_sym_COLON, - STATE(3664), 2, + STATE(3702), 2, sym_line_comment, sym_block_comment, - [99259] = 4, + [99132] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7322), 1, - anon_sym_COLON, - STATE(3665), 2, + ACTIONS(7394), 1, + anon_sym_SEMI, + STATE(3703), 2, sym_line_comment, sym_block_comment, - [99273] = 4, + [99146] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7324), 1, - anon_sym_RBRACE, - STATE(3666), 2, + ACTIONS(7396), 1, + anon_sym_SEMI, + STATE(3704), 2, sym_line_comment, sym_block_comment, - [99287] = 4, + [99160] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7326), 1, - anon_sym_SEMI, - STATE(3667), 2, + ACTIONS(7398), 1, + anon_sym_EQ_GT, + STATE(3705), 2, sym_line_comment, sym_block_comment, - [99301] = 4, + [99174] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6638), 1, - anon_sym_RBRACE, - STATE(3668), 2, + ACTIONS(7400), 1, + sym_identifier, + STATE(3706), 2, sym_line_comment, sym_block_comment, - [99315] = 4, + [99188] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7328), 1, - anon_sym_RBRACK, - STATE(3669), 2, + ACTIONS(6044), 1, + anon_sym_LBRACE, + STATE(3707), 2, sym_line_comment, sym_block_comment, - [99329] = 4, + [99202] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7330), 1, - anon_sym_COLON, - STATE(3670), 2, + ACTIONS(5382), 1, + anon_sym_SEMI, + STATE(3708), 2, sym_line_comment, sym_block_comment, - [99343] = 4, + [99216] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3140), 1, - anon_sym_PLUS, - STATE(3671), 2, + ACTIONS(7402), 1, + anon_sym_RBRACK, + STATE(3709), 2, sym_line_comment, sym_block_comment, - [99357] = 4, + [99230] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7332), 1, - anon_sym_RBRACK, - STATE(3672), 2, + ACTIONS(7404), 1, + anon_sym_SEMI, + STATE(3710), 2, sym_line_comment, sym_block_comment, - [99371] = 4, + [99244] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7334), 1, - sym_identifier, - STATE(3673), 2, + ACTIONS(7406), 1, + anon_sym_COLON, + STATE(3711), 2, sym_line_comment, sym_block_comment, - [99385] = 4, + [99258] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7336), 1, - anon_sym_RBRACK, - STATE(3674), 2, + ACTIONS(4741), 1, + anon_sym_COLON_COLON, + STATE(3712), 2, sym_line_comment, sym_block_comment, - [99399] = 4, + [99272] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7338), 1, + ACTIONS(7408), 1, anon_sym_SEMI, - STATE(3675), 2, + STATE(3713), 2, sym_line_comment, sym_block_comment, - [99413] = 4, + [99286] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7340), 1, - anon_sym_COLON, - STATE(3676), 2, + ACTIONS(5070), 1, + anon_sym_COLON_COLON, + STATE(3714), 2, + sym_line_comment, + sym_block_comment, + [99300] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7410), 1, + aux_sym_line_comment_token2, + STATE(3715), 2, sym_line_comment, sym_block_comment, - [99427] = 4, + [99314] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7342), 1, - sym_identifier, - STATE(3677), 2, + ACTIONS(6894), 1, + anon_sym_SEMI, + STATE(3716), 2, sym_line_comment, sym_block_comment, - [99441] = 4, + [99328] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7344), 1, - anon_sym_RBRACK, - STATE(3678), 2, + ACTIONS(7412), 1, + anon_sym_SEMI, + STATE(3717), 2, sym_line_comment, sym_block_comment, - [99455] = 4, + [99342] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7346), 1, - anon_sym_SEMI, - STATE(3679), 2, + ACTIONS(7414), 1, + anon_sym_EQ, + STATE(3718), 2, sym_line_comment, sym_block_comment, - [99469] = 4, + [99356] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7348), 1, - anon_sym_COLON, - STATE(3680), 2, + ACTIONS(6458), 1, + anon_sym_RBRACE, + STATE(3719), 2, sym_line_comment, sym_block_comment, - [99483] = 4, + [99370] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7350), 1, - sym_identifier, - STATE(3681), 2, + ACTIONS(7416), 1, + anon_sym_EQ_GT, + STATE(3720), 2, sym_line_comment, sym_block_comment, - [99497] = 4, + [99384] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7352), 1, + ACTIONS(7418), 1, sym_identifier, - STATE(3682), 2, + STATE(3721), 2, sym_line_comment, sym_block_comment, - [99511] = 4, + [99398] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7354), 1, + ACTIONS(7420), 1, anon_sym_SEMI, - STATE(3683), 2, + STATE(3722), 2, sym_line_comment, sym_block_comment, - [99525] = 4, + [99412] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7356), 1, - anon_sym_COLON, - STATE(3684), 2, + ACTIONS(7422), 1, + anon_sym_RPAREN, + STATE(3723), 2, sym_line_comment, sym_block_comment, - [99539] = 4, + [99426] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7358), 1, + ACTIONS(7424), 1, anon_sym_SEMI, - STATE(3685), 2, + STATE(3724), 2, sym_line_comment, sym_block_comment, - [99553] = 4, + [99440] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7360), 1, - sym_identifier, - STATE(3686), 2, + ACTIONS(7426), 1, + anon_sym_LT2, + STATE(3725), 2, sym_line_comment, sym_block_comment, - [99567] = 4, + [99454] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7362), 1, - ts_builtin_sym_end, - STATE(3687), 2, + ACTIONS(7428), 1, + anon_sym_COLON, + STATE(3726), 2, sym_line_comment, sym_block_comment, - [99581] = 4, + [99468] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6768), 1, - anon_sym_COLON_COLON, - STATE(3688), 2, + ACTIONS(7430), 1, + anon_sym_EQ, + STATE(3727), 2, sym_line_comment, sym_block_comment, - [99595] = 4, + [99482] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6940), 1, - anon_sym_SEMI, - STATE(3689), 2, + ACTIONS(7432), 1, + anon_sym_RPAREN, + STATE(3728), 2, sym_line_comment, sym_block_comment, - [99609] = 4, + [99496] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7364), 1, + ACTIONS(7434), 1, anon_sym_COLON, - STATE(3690), 2, + STATE(3729), 2, sym_line_comment, sym_block_comment, - [99623] = 4, + [99510] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7366), 1, - anon_sym_EQ, - STATE(3691), 2, + ACTIONS(7436), 1, + anon_sym_LBRACK, + STATE(3730), 2, sym_line_comment, sym_block_comment, - [99637] = 4, + [99524] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7368), 1, - anon_sym_RPAREN, - STATE(3692), 2, + ACTIONS(7438), 1, + anon_sym_LBRACK, + STATE(3731), 2, sym_line_comment, sym_block_comment, - [99651] = 4, + [99538] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6944), 1, - anon_sym_SEMI, - STATE(3693), 2, + ACTIONS(7440), 1, + anon_sym_COLON, + STATE(3732), 2, sym_line_comment, sym_block_comment, - [99665] = 4, + [99552] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5518), 1, - anon_sym_RPAREN, - STATE(3694), 2, + ACTIONS(7442), 1, + anon_sym_fn, + STATE(3733), 2, sym_line_comment, sym_block_comment, - [99679] = 4, + [99566] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7370), 1, - sym_identifier, - STATE(3695), 2, + ACTIONS(3230), 1, + anon_sym_PLUS, + STATE(3734), 2, sym_line_comment, sym_block_comment, - [99693] = 4, + [99580] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(3696), 2, + ACTIONS(7444), 1, + anon_sym_COLON, + STATE(3735), 2, sym_line_comment, sym_block_comment, - [99707] = 4, + [99594] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7374), 1, - anon_sym_EQ, - STATE(3697), 2, + ACTIONS(7446), 1, + anon_sym_COLON, + STATE(3736), 2, sym_line_comment, sym_block_comment, - [99721] = 4, + [99608] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6336), 1, + ACTIONS(7448), 1, anon_sym_RBRACE, - STATE(3698), 2, + STATE(3737), 2, sym_line_comment, sym_block_comment, - [99735] = 4, + [99622] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7376), 1, - anon_sym_SEMI, - STATE(3699), 2, + ACTIONS(7450), 1, + anon_sym_COLON_COLON, + STATE(3738), 2, sym_line_comment, sym_block_comment, - [99749] = 4, + [99636] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7378), 1, - sym_identifier, - STATE(3700), 2, + ACTIONS(7452), 1, + anon_sym_COLON, + STATE(3739), 2, sym_line_comment, sym_block_comment, - [99763] = 4, + [99650] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7380), 1, - sym_identifier, - STATE(3701), 2, + ACTIONS(7454), 1, + anon_sym_COLON, + STATE(3740), 2, sym_line_comment, sym_block_comment, - [99777] = 4, + [99664] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4264), 1, - anon_sym_RPAREN, - STATE(3702), 2, + ACTIONS(7456), 1, + anon_sym_COLON, + STATE(3741), 2, sym_line_comment, sym_block_comment, - [99791] = 4, + [99678] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7382), 1, - anon_sym_COLON, - STATE(3703), 2, + ACTIONS(7458), 1, + sym_identifier, + STATE(3742), 2, sym_line_comment, sym_block_comment, - [99805] = 4, + [99692] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7384), 1, - anon_sym_EQ, - STATE(3704), 2, + ACTIONS(4698), 1, + anon_sym_fn, + STATE(3743), 2, sym_line_comment, sym_block_comment, - [99819] = 4, + [99706] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7386), 1, - sym_identifier, - STATE(3705), 2, + ACTIONS(6454), 1, + anon_sym_GT, + STATE(3744), 2, sym_line_comment, sym_block_comment, - [99833] = 4, + [99720] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7388), 1, - anon_sym_COLON, - STATE(3706), 2, + ACTIONS(7460), 1, + anon_sym_SEMI, + STATE(3745), 2, sym_line_comment, sym_block_comment, - [99847] = 4, + [99734] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7390), 1, - anon_sym_LBRACK, - STATE(3707), 2, + ACTIONS(7462), 1, + sym_identifier, + STATE(3746), 2, sym_line_comment, sym_block_comment, - [99861] = 4, + [99748] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7392), 1, - anon_sym_LBRACK, - STATE(3708), 2, + ACTIONS(7464), 1, + anon_sym_SEMI, + STATE(3747), 2, sym_line_comment, sym_block_comment, - [99875] = 4, + [99762] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7394), 1, - anon_sym_COLON, - STATE(3709), 2, + ACTIONS(7466), 1, + anon_sym_EQ_GT, + STATE(3748), 2, sym_line_comment, sym_block_comment, - [99889] = 4, + [99776] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6102), 1, - anon_sym_RBRACE, - STATE(3710), 2, + ACTIONS(7468), 1, + sym__line_doc_content, + STATE(3749), 2, sym_line_comment, sym_block_comment, - [99903] = 4, + [99790] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7396), 1, - anon_sym_SEMI, - STATE(3711), 2, + ACTIONS(7470), 1, + sym_identifier, + STATE(3750), 2, sym_line_comment, sym_block_comment, - [99917] = 4, + [99804] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7398), 1, - anon_sym_COLON, - STATE(3712), 2, + ACTIONS(5547), 1, + anon_sym_RPAREN, + STATE(3751), 2, sym_line_comment, sym_block_comment, - [99931] = 4, + [99818] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7400), 1, - anon_sym_COLON, - STATE(3713), 2, + ACTIONS(7472), 1, + anon_sym_SEMI, + STATE(3752), 2, sym_line_comment, sym_block_comment, - [99945] = 4, + [99832] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7402), 1, - anon_sym_RBRACK, - STATE(3714), 2, + ACTIONS(7474), 1, + sym_identifier, + STATE(3753), 2, sym_line_comment, sym_block_comment, - [99959] = 4, + [99846] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5228), 1, - anon_sym_SEMI, - STATE(3715), 2, + ACTIONS(7476), 1, + anon_sym_fn, + STATE(3754), 2, sym_line_comment, sym_block_comment, - [99973] = 4, + [99860] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7404), 1, - anon_sym_COLON, - STATE(3716), 2, + ACTIONS(7478), 1, + anon_sym_SEMI, + STATE(3755), 2, sym_line_comment, sym_block_comment, - [99987] = 4, + [99874] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7406), 1, + ACTIONS(7480), 1, anon_sym_COLON, - STATE(3717), 2, + STATE(3756), 2, sym_line_comment, sym_block_comment, - [100001] = 4, + [99888] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7408), 1, - anon_sym_COLON, - STATE(3718), 2, + ACTIONS(5328), 1, + anon_sym_COLON_COLON, + STATE(3757), 2, sym_line_comment, sym_block_comment, - [100015] = 4, + [99902] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7410), 1, - sym__raw_string_literal_end, - STATE(3719), 2, + ACTIONS(7482), 1, + anon_sym_SEMI, + STATE(3758), 2, sym_line_comment, sym_block_comment, - [100029] = 4, + [99916] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_fn, - STATE(3720), 2, + ACTIONS(3776), 1, + anon_sym_COLON_COLON, + STATE(3759), 2, sym_line_comment, sym_block_comment, - [100043] = 4, + [99930] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7412), 1, + ACTIONS(7484), 1, anon_sym_SEMI, - STATE(3721), 2, + STATE(3760), 2, sym_line_comment, sym_block_comment, - [100057] = 4, + [99944] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7414), 1, - anon_sym_RBRACK, - STATE(3722), 2, + ACTIONS(7486), 1, + anon_sym_SEMI, + STATE(3761), 2, sym_line_comment, sym_block_comment, - [100071] = 4, + [99958] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7416), 1, - sym_identifier, - STATE(3723), 2, + ACTIONS(7488), 1, + anon_sym_COLON, + STATE(3762), 2, sym_line_comment, sym_block_comment, - [100085] = 4, + [99972] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7418), 1, - anon_sym_SEMI, - STATE(3724), 2, + ACTIONS(7490), 1, + sym_identifier, + STATE(3763), 2, sym_line_comment, sym_block_comment, - [100099] = 4, + [99986] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7420), 1, - anon_sym_SEMI, - STATE(3725), 2, + ACTIONS(7492), 1, + sym_identifier, + STATE(3764), 2, sym_line_comment, sym_block_comment, - [100113] = 4, + [100000] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7422), 1, - sym_identifier, - STATE(3726), 2, + ACTIONS(7494), 1, + anon_sym_COLON_COLON, + STATE(3765), 2, sym_line_comment, sym_block_comment, - [100127] = 4, + [100014] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7424), 1, + ACTIONS(7496), 1, anon_sym_fn, - STATE(3727), 2, + STATE(3766), 2, sym_line_comment, sym_block_comment, - [100141] = 4, + [100028] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7426), 1, - anon_sym_COLON, - STATE(3728), 2, + ACTIONS(7498), 1, + sym_identifier, + STATE(3767), 2, sym_line_comment, sym_block_comment, - [100155] = 4, + [100042] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7428), 1, + ACTIONS(7500), 1, sym_identifier, - STATE(3729), 2, + STATE(3768), 2, sym_line_comment, sym_block_comment, - [100169] = 4, + [100056] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7430), 1, - anon_sym_COLON, - STATE(3730), 2, - sym_line_comment, - sym_block_comment, - [100183] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7432), 1, - aux_sym_line_comment_token2, - STATE(3731), 2, + ACTIONS(7502), 1, + sym_identifier, + STATE(3769), 2, sym_line_comment, sym_block_comment, - [100197] = 4, + [100070] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3150), 1, - anon_sym_PLUS, - STATE(3732), 2, + ACTIONS(7504), 1, + anon_sym_SEMI, + STATE(3770), 2, sym_line_comment, sym_block_comment, - [100211] = 4, + [100084] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7434), 1, - anon_sym_SEMI, - STATE(3733), 2, + ACTIONS(7506), 1, + sym_identifier, + STATE(3771), 2, sym_line_comment, sym_block_comment, - [100225] = 4, + [100098] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7436), 1, + ACTIONS(7508), 1, sym_identifier, - STATE(3734), 2, + STATE(3772), 2, sym_line_comment, sym_block_comment, - [100239] = 4, + [100112] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7438), 1, - sym_raw_string_literal_content, - STATE(3735), 2, + ACTIONS(6220), 1, + anon_sym_RBRACE, + STATE(3773), 2, sym_line_comment, sym_block_comment, - [100253] = 4, + [100126] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7440), 1, - anon_sym_SEMI, - STATE(3736), 2, + ACTIONS(7510), 1, + anon_sym_fn, + STATE(3774), 2, sym_line_comment, sym_block_comment, - [100267] = 4, + [100140] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6326), 1, - anon_sym_GT, - STATE(3737), 2, + ACTIONS(4312), 1, + anon_sym_RPAREN, + STATE(3775), 2, sym_line_comment, sym_block_comment, - [100281] = 4, + [100154] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7442), 1, - anon_sym_LBRACK, - STATE(3738), 2, + ACTIONS(7512), 1, + anon_sym_fn, + STATE(3776), 2, sym_line_comment, sym_block_comment, - [100295] = 4, + [100168] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(937), 1, - anon_sym_RBRACK, - STATE(3739), 2, + ACTIONS(7514), 1, + anon_sym_RBRACE, + STATE(3777), 2, sym_line_comment, sym_block_comment, - [100309] = 1, - ACTIONS(7444), 1, + [100182] = 1, + ACTIONS(7516), 1, ts_builtin_sym_end, - [100313] = 1, - ACTIONS(7446), 1, + [100186] = 1, + ACTIONS(7518), 1, ts_builtin_sym_end, - [100317] = 1, - ACTIONS(7448), 1, + [100190] = 1, + ACTIONS(7520), 1, ts_builtin_sym_end, - [100321] = 1, - ACTIONS(7450), 1, + [100194] = 1, + ACTIONS(7522), 1, ts_builtin_sym_end, - [100325] = 1, - ACTIONS(7452), 1, + [100198] = 1, + ACTIONS(7524), 1, ts_builtin_sym_end, - [100329] = 1, - ACTIONS(7454), 1, + [100202] = 1, + ACTIONS(7526), 1, ts_builtin_sym_end, - [100333] = 1, - ACTIONS(7456), 1, + [100206] = 1, + ACTIONS(7528), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [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)] = 23555, - [SMALL_STATE(1406)] = 23615, - [SMALL_STATE(1407)] = 23675, - [SMALL_STATE(1408)] = 23735, - [SMALL_STATE(1409)] = 23795, - [SMALL_STATE(1410)] = 23855, - [SMALL_STATE(1411)] = 23915, - [SMALL_STATE(1412)] = 23975, - [SMALL_STATE(1413)] = 24035, - [SMALL_STATE(1414)] = 24095, - [SMALL_STATE(1415)] = 24155, - [SMALL_STATE(1416)] = 24215, - [SMALL_STATE(1417)] = 24275, - [SMALL_STATE(1418)] = 24335, - [SMALL_STATE(1419)] = 24395, - [SMALL_STATE(1420)] = 24461, - [SMALL_STATE(1421)] = 24521, - [SMALL_STATE(1422)] = 24581, - [SMALL_STATE(1423)] = 24641, - [SMALL_STATE(1424)] = 24701, - [SMALL_STATE(1425)] = 24761, - [SMALL_STATE(1426)] = 24821, - [SMALL_STATE(1427)] = 24881, - [SMALL_STATE(1428)] = 24941, - [SMALL_STATE(1429)] = 25005, - [SMALL_STATE(1430)] = 25065, - [SMALL_STATE(1431)] = 25125, - [SMALL_STATE(1432)] = 25185, - [SMALL_STATE(1433)] = 25245, - [SMALL_STATE(1434)] = 25305, - [SMALL_STATE(1435)] = 25365, - [SMALL_STATE(1436)] = 25425, - [SMALL_STATE(1437)] = 25485, - [SMALL_STATE(1438)] = 25545, - [SMALL_STATE(1439)] = 25605, - [SMALL_STATE(1440)] = 25665, - [SMALL_STATE(1441)] = 25725, - [SMALL_STATE(1442)] = 25785, - [SMALL_STATE(1443)] = 25845, - [SMALL_STATE(1444)] = 25941, - [SMALL_STATE(1445)] = 26001, - [SMALL_STATE(1446)] = 26061, - [SMALL_STATE(1447)] = 26121, - [SMALL_STATE(1448)] = 26181, - [SMALL_STATE(1449)] = 26241, - [SMALL_STATE(1450)] = 26301, - [SMALL_STATE(1451)] = 26361, - [SMALL_STATE(1452)] = 26421, - [SMALL_STATE(1453)] = 26481, - [SMALL_STATE(1454)] = 26541, - [SMALL_STATE(1455)] = 26601, - [SMALL_STATE(1456)] = 26661, - [SMALL_STATE(1457)] = 26721, - [SMALL_STATE(1458)] = 26781, - [SMALL_STATE(1459)] = 26841, - [SMALL_STATE(1460)] = 26903, - [SMALL_STATE(1461)] = 26963, - [SMALL_STATE(1462)] = 27023, - [SMALL_STATE(1463)] = 27083, - [SMALL_STATE(1464)] = 27143, - [SMALL_STATE(1465)] = 27203, - [SMALL_STATE(1466)] = 27263, - [SMALL_STATE(1467)] = 27323, - [SMALL_STATE(1468)] = 27391, - [SMALL_STATE(1469)] = 27451, - [SMALL_STATE(1470)] = 27511, - [SMALL_STATE(1471)] = 27571, - [SMALL_STATE(1472)] = 27631, - [SMALL_STATE(1473)] = 27691, - [SMALL_STATE(1474)] = 27751, - [SMALL_STATE(1475)] = 27811, - [SMALL_STATE(1476)] = 27871, - [SMALL_STATE(1477)] = 27933, - [SMALL_STATE(1478)] = 27993, - [SMALL_STATE(1479)] = 28053, - [SMALL_STATE(1480)] = 28113, - [SMALL_STATE(1481)] = 28179, - [SMALL_STATE(1482)] = 28239, - [SMALL_STATE(1483)] = 28299, - [SMALL_STATE(1484)] = 28359, - [SMALL_STATE(1485)] = 28419, - [SMALL_STATE(1486)] = 28479, - [SMALL_STATE(1487)] = 28539, - [SMALL_STATE(1488)] = 28599, - [SMALL_STATE(1489)] = 28659, - [SMALL_STATE(1490)] = 28719, - [SMALL_STATE(1491)] = 28779, - [SMALL_STATE(1492)] = 28839, - [SMALL_STATE(1493)] = 28899, - [SMALL_STATE(1494)] = 28959, - [SMALL_STATE(1495)] = 29019, - [SMALL_STATE(1496)] = 29079, - [SMALL_STATE(1497)] = 29139, - [SMALL_STATE(1498)] = 29199, - [SMALL_STATE(1499)] = 29273, - [SMALL_STATE(1500)] = 29333, - [SMALL_STATE(1501)] = 29393, - [SMALL_STATE(1502)] = 29453, - [SMALL_STATE(1503)] = 29513, - [SMALL_STATE(1504)] = 29573, - [SMALL_STATE(1505)] = 29633, - [SMALL_STATE(1506)] = 29699, - [SMALL_STATE(1507)] = 29759, - [SMALL_STATE(1508)] = 29825, - [SMALL_STATE(1509)] = 29885, - [SMALL_STATE(1510)] = 29945, - [SMALL_STATE(1511)] = 30005, - [SMALL_STATE(1512)] = 30065, - [SMALL_STATE(1513)] = 30125, - [SMALL_STATE(1514)] = 30185, - [SMALL_STATE(1515)] = 30245, - [SMALL_STATE(1516)] = 30305, - [SMALL_STATE(1517)] = 30365, - [SMALL_STATE(1518)] = 30425, - [SMALL_STATE(1519)] = 30485, - [SMALL_STATE(1520)] = 30545, - [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)] = 31227, - [SMALL_STATE(1531)] = 31288, - [SMALL_STATE(1532)] = 31359, - [SMALL_STATE(1533)] = 31420, - [SMALL_STATE(1534)] = 31519, - [SMALL_STATE(1535)] = 31588, - [SMALL_STATE(1536)] = 31674, - [SMALL_STATE(1537)] = 31760, - [SMALL_STATE(1538)] = 31828, - [SMALL_STATE(1539)] = 31914, - [SMALL_STATE(1540)] = 31988, - [SMALL_STATE(1541)] = 32060, - [SMALL_STATE(1542)] = 32136, - [SMALL_STATE(1543)] = 32218, - [SMALL_STATE(1544)] = 32302, - [SMALL_STATE(1545)] = 32372, - [SMALL_STATE(1546)] = 32462, - [SMALL_STATE(1547)] = 32552, - [SMALL_STATE(1548)] = 32630, - [SMALL_STATE(1549)] = 32722, - [SMALL_STATE(1550)] = 32808, - [SMALL_STATE(1551)] = 32894, - [SMALL_STATE(1552)] = 32984, - [SMALL_STATE(1553)] = 33050, - [SMALL_STATE(1554)] = 33120, - [SMALL_STATE(1555)] = 33206, - [SMALL_STATE(1556)] = 33296, - [SMALL_STATE(1557)] = 33382, - [SMALL_STATE(1558)] = 33474, - [SMALL_STATE(1559)] = 33564, - [SMALL_STATE(1560)] = 33654, - [SMALL_STATE(1561)] = 33746, - [SMALL_STATE(1562)] = 33832, - [SMALL_STATE(1563)] = 33895, - [SMALL_STATE(1564)] = 33962, - [SMALL_STATE(1565)] = 34021, - [SMALL_STATE(1566)] = 34088, - [SMALL_STATE(1567)] = 34145, - [SMALL_STATE(1568)] = 34212, - [SMALL_STATE(1569)] = 34269, - [SMALL_STATE(1570)] = 34332, - [SMALL_STATE(1571)] = 34391, - [SMALL_STATE(1572)] = 34448, - [SMALL_STATE(1573)] = 34513, - [SMALL_STATE(1574)] = 34577, - [SMALL_STATE(1575)] = 34635, - [SMALL_STATE(1576)] = 34693, - [SMALL_STATE(1577)] = 34749, - [SMALL_STATE(1578)] = 34807, - [SMALL_STATE(1579)] = 34865, - [SMALL_STATE(1580)] = 34929, - [SMALL_STATE(1581)] = 34993, - [SMALL_STATE(1582)] = 35049, - [SMALL_STATE(1583)] = 35109, - [SMALL_STATE(1584)] = 35169, - [SMALL_STATE(1585)] = 35229, - [SMALL_STATE(1586)] = 35285, - [SMALL_STATE(1587)] = 35345, - [SMALL_STATE(1588)] = 35405, - [SMALL_STATE(1589)] = 35461, - [SMALL_STATE(1590)] = 35521, - [SMALL_STATE(1591)] = 35585, - [SMALL_STATE(1592)] = 35645, - [SMALL_STATE(1593)] = 35702, - [SMALL_STATE(1594)] = 35759, - [SMALL_STATE(1595)] = 35848, - [SMALL_STATE(1596)] = 35905, - [SMALL_STATE(1597)] = 35960, - [SMALL_STATE(1598)] = 36017, - [SMALL_STATE(1599)] = 36072, - [SMALL_STATE(1600)] = 36131, - [SMALL_STATE(1601)] = 36186, - [SMALL_STATE(1602)] = 36281, - [SMALL_STATE(1603)] = 36376, - [SMALL_STATE(1604)] = 36431, - [SMALL_STATE(1605)] = 36486, - [SMALL_STATE(1606)] = 36541, - [SMALL_STATE(1607)] = 36600, - [SMALL_STATE(1608)] = 36659, - [SMALL_STATE(1609)] = 36754, - [SMALL_STATE(1610)] = 36849, - [SMALL_STATE(1611)] = 36944, - [SMALL_STATE(1612)] = 37039, - [SMALL_STATE(1613)] = 37134, - [SMALL_STATE(1614)] = 37229, - [SMALL_STATE(1615)] = 37284, - [SMALL_STATE(1616)] = 37341, - [SMALL_STATE(1617)] = 37436, - [SMALL_STATE(1618)] = 37531, - [SMALL_STATE(1619)] = 37626, - [SMALL_STATE(1620)] = 37721, - [SMALL_STATE(1621)] = 37778, - [SMALL_STATE(1622)] = 37835, - [SMALL_STATE(1623)] = 37890, - [SMALL_STATE(1624)] = 37979, - [SMALL_STATE(1625)] = 38068, - [SMALL_STATE(1626)] = 38127, - [SMALL_STATE(1627)] = 38183, - [SMALL_STATE(1628)] = 38271, - [SMALL_STATE(1629)] = 38325, - [SMALL_STATE(1630)] = 38397, - [SMALL_STATE(1631)] = 38477, - [SMALL_STATE(1632)] = 38533, - [SMALL_STATE(1633)] = 38587, - [SMALL_STATE(1634)] = 38651, - [SMALL_STATE(1635)] = 38705, - [SMALL_STATE(1636)] = 38783, - [SMALL_STATE(1637)] = 38853, - [SMALL_STATE(1638)] = 38907, - [SMALL_STATE(1639)] = 38961, - [SMALL_STATE(1640)] = 39015, - [SMALL_STATE(1641)] = 39071, - [SMALL_STATE(1642)] = 39125, - [SMALL_STATE(1643)] = 39179, - [SMALL_STATE(1644)] = 39233, - [SMALL_STATE(1645)] = 39321, - [SMALL_STATE(1646)] = 39377, - [SMALL_STATE(1647)] = 39433, - [SMALL_STATE(1648)] = 39525, - [SMALL_STATE(1649)] = 39605, - [SMALL_STATE(1650)] = 39661, - [SMALL_STATE(1651)] = 39743, - [SMALL_STATE(1652)] = 39829, - [SMALL_STATE(1653)] = 39915, - [SMALL_STATE(1654)] = 40001, - [SMALL_STATE(1655)] = 40057, - [SMALL_STATE(1656)] = 40113, - [SMALL_STATE(1657)] = 40179, - [SMALL_STATE(1658)] = 40271, - [SMALL_STATE(1659)] = 40363, - [SMALL_STATE(1660)] = 40421, - [SMALL_STATE(1661)] = 40513, - [SMALL_STATE(1662)] = 40599, - [SMALL_STATE(1663)] = 40685, - [SMALL_STATE(1664)] = 40741, - [SMALL_STATE(1665)] = 40815, - [SMALL_STATE(1666)] = 40869, - [SMALL_STATE(1667)] = 40961, - [SMALL_STATE(1668)] = 41015, - [SMALL_STATE(1669)] = 41097, - [SMALL_STATE(1670)] = 41153, - [SMALL_STATE(1671)] = 41207, - [SMALL_STATE(1672)] = 41263, - [SMALL_STATE(1673)] = 41351, - [SMALL_STATE(1674)] = 41407, - [SMALL_STATE(1675)] = 41463, - [SMALL_STATE(1676)] = 41551, - [SMALL_STATE(1677)] = 41619, - [SMALL_STATE(1678)] = 41675, - [SMALL_STATE(1679)] = 41767, - [SMALL_STATE(1680)] = 41823, - [SMALL_STATE(1681)] = 41879, - [SMALL_STATE(1682)] = 41933, - [SMALL_STATE(1683)] = 41987, - [SMALL_STATE(1684)] = 42041, - [SMALL_STATE(1685)] = 42127, - [SMALL_STATE(1686)] = 42181, - [SMALL_STATE(1687)] = 42269, - [SMALL_STATE(1688)] = 42346, - [SMALL_STATE(1689)] = 42399, - [SMALL_STATE(1690)] = 42452, - [SMALL_STATE(1691)] = 42505, - [SMALL_STATE(1692)] = 42558, - [SMALL_STATE(1693)] = 42611, - [SMALL_STATE(1694)] = 42670, - [SMALL_STATE(1695)] = 42757, - [SMALL_STATE(1696)] = 42810, - [SMALL_STATE(1697)] = 42863, - [SMALL_STATE(1698)] = 42916, - [SMALL_STATE(1699)] = 42969, - [SMALL_STATE(1700)] = 43022, - [SMALL_STATE(1701)] = 43075, - [SMALL_STATE(1702)] = 43164, - [SMALL_STATE(1703)] = 43253, - [SMALL_STATE(1704)] = 43306, - [SMALL_STATE(1705)] = 43359, - [SMALL_STATE(1706)] = 43412, - [SMALL_STATE(1707)] = 43465, - [SMALL_STATE(1708)] = 43524, - [SMALL_STATE(1709)] = 43577, - [SMALL_STATE(1710)] = 43630, - [SMALL_STATE(1711)] = 43683, - [SMALL_STATE(1712)] = 43736, - [SMALL_STATE(1713)] = 43789, - [SMALL_STATE(1714)] = 43842, - [SMALL_STATE(1715)] = 43895, - [SMALL_STATE(1716)] = 43948, - [SMALL_STATE(1717)] = 44033, - [SMALL_STATE(1718)] = 44086, - [SMALL_STATE(1719)] = 44147, - [SMALL_STATE(1720)] = 44200, - [SMALL_STATE(1721)] = 44253, - [SMALL_STATE(1722)] = 44306, - [SMALL_STATE(1723)] = 44359, - [SMALL_STATE(1724)] = 44448, - [SMALL_STATE(1725)] = 44535, - [SMALL_STATE(1726)] = 44588, - [SMALL_STATE(1727)] = 44641, - [SMALL_STATE(1728)] = 44694, - [SMALL_STATE(1729)] = 44747, - [SMALL_STATE(1730)] = 44824, - [SMALL_STATE(1731)] = 44913, - [SMALL_STATE(1732)] = 44966, - [SMALL_STATE(1733)] = 45019, - [SMALL_STATE(1734)] = 45072, - [SMALL_STATE(1735)] = 45125, - [SMALL_STATE(1736)] = 45178, - [SMALL_STATE(1737)] = 45231, - [SMALL_STATE(1738)] = 45316, - [SMALL_STATE(1739)] = 45403, - [SMALL_STATE(1740)] = 45492, - [SMALL_STATE(1741)] = 45545, - [SMALL_STATE(1742)] = 45598, - [SMALL_STATE(1743)] = 45683, - [SMALL_STATE(1744)] = 45736, - [SMALL_STATE(1745)] = 45789, - [SMALL_STATE(1746)] = 45842, - [SMALL_STATE(1747)] = 45929, - [SMALL_STATE(1748)] = 46016, - [SMALL_STATE(1749)] = 46069, - [SMALL_STATE(1750)] = 46122, - [SMALL_STATE(1751)] = 46185, - [SMALL_STATE(1752)] = 46254, - [SMALL_STATE(1753)] = 46321, - [SMALL_STATE(1754)] = 46392, - [SMALL_STATE(1755)] = 46481, - [SMALL_STATE(1756)] = 46560, - [SMALL_STATE(1757)] = 46625, - [SMALL_STATE(1758)] = 46710, - [SMALL_STATE(1759)] = 46795, - [SMALL_STATE(1760)] = 46868, - [SMALL_STATE(1761)] = 46949, - [SMALL_STATE(1762)] = 47002, - [SMALL_STATE(1763)] = 47055, - [SMALL_STATE(1764)] = 47142, - [SMALL_STATE(1765)] = 47195, - [SMALL_STATE(1766)] = 47248, - [SMALL_STATE(1767)] = 47335, - [SMALL_STATE(1768)] = 47388, - [SMALL_STATE(1769)] = 47441, - [SMALL_STATE(1770)] = 47494, - [SMALL_STATE(1771)] = 47547, - [SMALL_STATE(1772)] = 47600, - [SMALL_STATE(1773)] = 47653, - [SMALL_STATE(1774)] = 47706, - [SMALL_STATE(1775)] = 47759, - [SMALL_STATE(1776)] = 47812, - [SMALL_STATE(1777)] = 47865, - [SMALL_STATE(1778)] = 47918, - [SMALL_STATE(1779)] = 47971, - [SMALL_STATE(1780)] = 48024, - [SMALL_STATE(1781)] = 48111, - [SMALL_STATE(1782)] = 48164, - [SMALL_STATE(1783)] = 48217, - [SMALL_STATE(1784)] = 48270, - [SMALL_STATE(1785)] = 48357, - [SMALL_STATE(1786)] = 48410, - [SMALL_STATE(1787)] = 48463, - [SMALL_STATE(1788)] = 48516, - [SMALL_STATE(1789)] = 48569, - [SMALL_STATE(1790)] = 48656, - [SMALL_STATE(1791)] = 48709, - [SMALL_STATE(1792)] = 48762, - [SMALL_STATE(1793)] = 48815, - [SMALL_STATE(1794)] = 48902, - [SMALL_STATE(1795)] = 48961, - [SMALL_STATE(1796)] = 49014, - [SMALL_STATE(1797)] = 49067, - [SMALL_STATE(1798)] = 49120, - [SMALL_STATE(1799)] = 49173, - [SMALL_STATE(1800)] = 49226, - [SMALL_STATE(1801)] = 49307, - [SMALL_STATE(1802)] = 49394, - [SMALL_STATE(1803)] = 49481, - [SMALL_STATE(1804)] = 49534, - [SMALL_STATE(1805)] = 49623, - [SMALL_STATE(1806)] = 49712, - [SMALL_STATE(1807)] = 49765, - [SMALL_STATE(1808)] = 49854, - [SMALL_STATE(1809)] = 49941, - [SMALL_STATE(1810)] = 49994, - [SMALL_STATE(1811)] = 50047, - [SMALL_STATE(1812)] = 50136, - [SMALL_STATE(1813)] = 50189, - [SMALL_STATE(1814)] = 50242, - [SMALL_STATE(1815)] = 50295, - [SMALL_STATE(1816)] = 50348, - [SMALL_STATE(1817)] = 50401, - [SMALL_STATE(1818)] = 50490, - [SMALL_STATE(1819)] = 50577, - [SMALL_STATE(1820)] = 50630, - [SMALL_STATE(1821)] = 50719, - [SMALL_STATE(1822)] = 50806, - [SMALL_STATE(1823)] = 50883, - [SMALL_STATE(1824)] = 50970, - [SMALL_STATE(1825)] = 51059, - [SMALL_STATE(1826)] = 51146, - [SMALL_STATE(1827)] = 51199, - [SMALL_STATE(1828)] = 51288, - [SMALL_STATE(1829)] = 51341, - [SMALL_STATE(1830)] = 51430, - [SMALL_STATE(1831)] = 51515, - [SMALL_STATE(1832)] = 51604, - [SMALL_STATE(1833)] = 51693, - [SMALL_STATE(1834)] = 51782, - [SMALL_STATE(1835)] = 51871, - [SMALL_STATE(1836)] = 51958, - [SMALL_STATE(1837)] = 52047, - [SMALL_STATE(1838)] = 52136, - [SMALL_STATE(1839)] = 52189, - [SMALL_STATE(1840)] = 52242, - [SMALL_STATE(1841)] = 52331, - [SMALL_STATE(1842)] = 52384, - [SMALL_STATE(1843)] = 52437, - [SMALL_STATE(1844)] = 52522, - [SMALL_STATE(1845)] = 52575, - [SMALL_STATE(1846)] = 52656, - [SMALL_STATE(1847)] = 52741, - [SMALL_STATE(1848)] = 52830, - [SMALL_STATE(1849)] = 52915, - [SMALL_STATE(1850)] = 53000, - [SMALL_STATE(1851)] = 53089, - [SMALL_STATE(1852)] = 53142, - [SMALL_STATE(1853)] = 53231, - [SMALL_STATE(1854)] = 53294, - [SMALL_STATE(1855)] = 53363, - [SMALL_STATE(1856)] = 53416, - [SMALL_STATE(1857)] = 53483, - [SMALL_STATE(1858)] = 53572, - [SMALL_STATE(1859)] = 53643, - [SMALL_STATE(1860)] = 53732, - [SMALL_STATE(1861)] = 53809, - [SMALL_STATE(1862)] = 53898, - [SMALL_STATE(1863)] = 53987, - [SMALL_STATE(1864)] = 54076, - [SMALL_STATE(1865)] = 54165, - [SMALL_STATE(1866)] = 54254, - [SMALL_STATE(1867)] = 54333, - [SMALL_STATE(1868)] = 54422, - [SMALL_STATE(1869)] = 54475, - [SMALL_STATE(1870)] = 54564, - [SMALL_STATE(1871)] = 54629, - [SMALL_STATE(1872)] = 54714, - [SMALL_STATE(1873)] = 54767, - [SMALL_STATE(1874)] = 54856, - [SMALL_STATE(1875)] = 54945, - [SMALL_STATE(1876)] = 55034, - [SMALL_STATE(1877)] = 55123, - [SMALL_STATE(1878)] = 55212, - [SMALL_STATE(1879)] = 55301, - [SMALL_STATE(1880)] = 55354, - [SMALL_STATE(1881)] = 55443, - [SMALL_STATE(1882)] = 55532, - [SMALL_STATE(1883)] = 55621, - [SMALL_STATE(1884)] = 55710, - [SMALL_STATE(1885)] = 55799, - [SMALL_STATE(1886)] = 55888, - [SMALL_STATE(1887)] = 55973, - [SMALL_STATE(1888)] = 56046, - [SMALL_STATE(1889)] = 56127, - [SMALL_STATE(1890)] = 56186, - [SMALL_STATE(1891)] = 56239, - [SMALL_STATE(1892)] = 56292, - [SMALL_STATE(1893)] = 56345, - [SMALL_STATE(1894)] = 56398, - [SMALL_STATE(1895)] = 56451, - [SMALL_STATE(1896)] = 56536, - [SMALL_STATE(1897)] = 56589, - [SMALL_STATE(1898)] = 56642, - [SMALL_STATE(1899)] = 56695, - [SMALL_STATE(1900)] = 56780, - [SMALL_STATE(1901)] = 56869, - [SMALL_STATE(1902)] = 56958, - [SMALL_STATE(1903)] = 57047, - [SMALL_STATE(1904)] = 57100, - [SMALL_STATE(1905)] = 57189, - [SMALL_STATE(1906)] = 57275, - [SMALL_STATE(1907)] = 57361, - [SMALL_STATE(1908)] = 57447, - [SMALL_STATE(1909)] = 57533, - [SMALL_STATE(1910)] = 57607, - [SMALL_STATE(1911)] = 57693, - [SMALL_STATE(1912)] = 57767, - [SMALL_STATE(1913)] = 57851, - [SMALL_STATE(1914)] = 57937, - [SMALL_STATE(1915)] = 58023, - [SMALL_STATE(1916)] = 58109, - [SMALL_STATE(1917)] = 58195, - [SMALL_STATE(1918)] = 58281, - [SMALL_STATE(1919)] = 58355, - [SMALL_STATE(1920)] = 58441, - [SMALL_STATE(1921)] = 58527, - [SMALL_STATE(1922)] = 58613, - [SMALL_STATE(1923)] = 58699, - [SMALL_STATE(1924)] = 58785, - [SMALL_STATE(1925)] = 58871, - [SMALL_STATE(1926)] = 58957, - [SMALL_STATE(1927)] = 59043, - [SMALL_STATE(1928)] = 59129, - [SMALL_STATE(1929)] = 59213, - [SMALL_STATE(1930)] = 59299, - [SMALL_STATE(1931)] = 59385, - [SMALL_STATE(1932)] = 59471, - [SMALL_STATE(1933)] = 59557, - [SMALL_STATE(1934)] = 59631, - [SMALL_STATE(1935)] = 59717, - [SMALL_STATE(1936)] = 59791, - [SMALL_STATE(1937)] = 59877, - [SMALL_STATE(1938)] = 59963, - [SMALL_STATE(1939)] = 60049, - [SMALL_STATE(1940)] = 60135, - [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)] = 61796, - [SMALL_STATE(1967)] = 61844, - [SMALL_STATE(1968)] = 61881, - [SMALL_STATE(1969)] = 61918, - [SMALL_STATE(1970)] = 61955, - [SMALL_STATE(1971)] = 62008, - [SMALL_STATE(1972)] = 62045, - [SMALL_STATE(1973)] = 62090, - [SMALL_STATE(1974)] = 62135, - [SMALL_STATE(1975)] = 62180, - [SMALL_STATE(1976)] = 62220, - [SMALL_STATE(1977)] = 62256, - [SMALL_STATE(1978)] = 62290, - [SMALL_STATE(1979)] = 62330, - [SMALL_STATE(1980)] = 62364, - [SMALL_STATE(1981)] = 62400, - [SMALL_STATE(1982)] = 62436, - [SMALL_STATE(1983)] = 62470, - [SMALL_STATE(1984)] = 62504, - [SMALL_STATE(1985)] = 62544, - [SMALL_STATE(1986)] = 62580, - [SMALL_STATE(1987)] = 62620, - [SMALL_STATE(1988)] = 62671, - [SMALL_STATE(1989)] = 62704, - [SMALL_STATE(1990)] = 62737, - [SMALL_STATE(1991)] = 62770, - [SMALL_STATE(1992)] = 62801, - [SMALL_STATE(1993)] = 62834, - [SMALL_STATE(1994)] = 62866, - [SMALL_STATE(1995)] = 62898, - [SMALL_STATE(1996)] = 62944, - [SMALL_STATE(1997)] = 63004, - [SMALL_STATE(1998)] = 63064, - [SMALL_STATE(1999)] = 63108, - [SMALL_STATE(2000)] = 63140, - [SMALL_STATE(2001)] = 63173, - [SMALL_STATE(2002)] = 63206, - [SMALL_STATE(2003)] = 63237, - [SMALL_STATE(2004)] = 63292, - [SMALL_STATE(2005)] = 63321, - [SMALL_STATE(2006)] = 63354, - [SMALL_STATE(2007)] = 63385, - [SMALL_STATE(2008)] = 63414, - [SMALL_STATE(2009)] = 63443, - [SMALL_STATE(2010)] = 63472, - [SMALL_STATE(2011)] = 63503, - [SMALL_STATE(2012)] = 63532, - [SMALL_STATE(2013)] = 63561, - [SMALL_STATE(2014)] = 63590, - [SMALL_STATE(2015)] = 63619, - [SMALL_STATE(2016)] = 63650, - [SMALL_STATE(2017)] = 63691, - [SMALL_STATE(2018)] = 63722, - [SMALL_STATE(2019)] = 63775, - [SMALL_STATE(2020)] = 63808, - [SMALL_STATE(2021)] = 63837, - [SMALL_STATE(2022)] = 63890, - [SMALL_STATE(2023)] = 63923, - [SMALL_STATE(2024)] = 63954, - [SMALL_STATE(2025)] = 63985, - [SMALL_STATE(2026)] = 64018, - [SMALL_STATE(2027)] = 64061, - [SMALL_STATE(2028)] = 64092, - [SMALL_STATE(2029)] = 64120, - [SMALL_STATE(2030)] = 64148, - [SMALL_STATE(2031)] = 64176, - [SMALL_STATE(2032)] = 64204, - [SMALL_STATE(2033)] = 64232, - [SMALL_STATE(2034)] = 64260, - [SMALL_STATE(2035)] = 64288, - [SMALL_STATE(2036)] = 64316, - [SMALL_STATE(2037)] = 64344, - [SMALL_STATE(2038)] = 64372, - [SMALL_STATE(2039)] = 64400, - [SMALL_STATE(2040)] = 64428, - [SMALL_STATE(2041)] = 64456, - [SMALL_STATE(2042)] = 64484, - [SMALL_STATE(2043)] = 64512, - [SMALL_STATE(2044)] = 64540, - [SMALL_STATE(2045)] = 64568, - [SMALL_STATE(2046)] = 64596, - [SMALL_STATE(2047)] = 64624, - [SMALL_STATE(2048)] = 64652, - [SMALL_STATE(2049)] = 64682, - [SMALL_STATE(2050)] = 64710, - [SMALL_STATE(2051)] = 64738, - [SMALL_STATE(2052)] = 64766, - [SMALL_STATE(2053)] = 64794, - [SMALL_STATE(2054)] = 64822, - [SMALL_STATE(2055)] = 64850, - [SMALL_STATE(2056)] = 64878, - [SMALL_STATE(2057)] = 64906, - [SMALL_STATE(2058)] = 64934, - [SMALL_STATE(2059)] = 64962, - [SMALL_STATE(2060)] = 64990, - [SMALL_STATE(2061)] = 65018, - [SMALL_STATE(2062)] = 65046, - [SMALL_STATE(2063)] = 65074, - [SMALL_STATE(2064)] = 65102, - [SMALL_STATE(2065)] = 65146, - [SMALL_STATE(2066)] = 65174, - [SMALL_STATE(2067)] = 65202, - [SMALL_STATE(2068)] = 65232, - [SMALL_STATE(2069)] = 65263, - [SMALL_STATE(2070)] = 65298, - [SMALL_STATE(2071)] = 65327, - [SMALL_STATE(2072)] = 65356, - [SMALL_STATE(2073)] = 65385, - [SMALL_STATE(2074)] = 65431, - [SMALL_STATE(2075)] = 65459, - [SMALL_STATE(2076)] = 65503, - [SMALL_STATE(2077)] = 65533, - [SMALL_STATE(2078)] = 65565, - [SMALL_STATE(2079)] = 65597, - [SMALL_STATE(2080)] = 65629, - [SMALL_STATE(2081)] = 65661, - [SMALL_STATE(2082)] = 65693, - [SMALL_STATE(2083)] = 65725, - [SMALL_STATE(2084)] = 65757, - [SMALL_STATE(2085)] = 65789, - [SMALL_STATE(2086)] = 65821, - [SMALL_STATE(2087)] = 65853, - [SMALL_STATE(2088)] = 65885, - [SMALL_STATE(2089)] = 65917, - [SMALL_STATE(2090)] = 65960, - [SMALL_STATE(2091)] = 65997, - [SMALL_STATE(2092)] = 66040, - [SMALL_STATE(2093)] = 66083, - [SMALL_STATE(2094)] = 66126, - [SMALL_STATE(2095)] = 66155, - [SMALL_STATE(2096)] = 66198, - [SMALL_STATE(2097)] = 66241, - [SMALL_STATE(2098)] = 66270, - [SMALL_STATE(2099)] = 66300, - [SMALL_STATE(2100)] = 66328, - [SMALL_STATE(2101)] = 66352, - [SMALL_STATE(2102)] = 66382, - [SMALL_STATE(2103)] = 66422, - [SMALL_STATE(2104)] = 66450, - [SMALL_STATE(2105)] = 66478, - [SMALL_STATE(2106)] = 66506, - [SMALL_STATE(2107)] = 66534, - [SMALL_STATE(2108)] = 66562, - [SMALL_STATE(2109)] = 66586, - [SMALL_STATE(2110)] = 66624, - [SMALL_STATE(2111)] = 66662, - [SMALL_STATE(2112)] = 66702, - [SMALL_STATE(2113)] = 66726, - [SMALL_STATE(2114)] = 66750, - [SMALL_STATE(2115)] = 66784, - [SMALL_STATE(2116)] = 66812, - [SMALL_STATE(2117)] = 66840, - [SMALL_STATE(2118)] = 66878, - [SMALL_STATE(2119)] = 66906, - [SMALL_STATE(2120)] = 66934, - [SMALL_STATE(2121)] = 66974, - [SMALL_STATE(2122)] = 67014, - [SMALL_STATE(2123)] = 67052, - [SMALL_STATE(2124)] = 67092, - [SMALL_STATE(2125)] = 67116, - [SMALL_STATE(2126)] = 67156, - [SMALL_STATE(2127)] = 67196, - [SMALL_STATE(2128)] = 67236, - [SMALL_STATE(2129)] = 67276, - [SMALL_STATE(2130)] = 67306, - [SMALL_STATE(2131)] = 67334, - [SMALL_STATE(2132)] = 67364, - [SMALL_STATE(2133)] = 67402, - [SMALL_STATE(2134)] = 67430, - [SMALL_STATE(2135)] = 67468, - [SMALL_STATE(2136)] = 67506, - [SMALL_STATE(2137)] = 67544, - [SMALL_STATE(2138)] = 67572, - [SMALL_STATE(2139)] = 67600, - [SMALL_STATE(2140)] = 67628, - [SMALL_STATE(2141)] = 67666, - [SMALL_STATE(2142)] = 67694, - [SMALL_STATE(2143)] = 67728, - [SMALL_STATE(2144)] = 67768, - [SMALL_STATE(2145)] = 67791, - [SMALL_STATE(2146)] = 67814, - [SMALL_STATE(2147)] = 67837, - [SMALL_STATE(2148)] = 67860, - [SMALL_STATE(2149)] = 67883, - [SMALL_STATE(2150)] = 67924, - [SMALL_STATE(2151)] = 67947, - [SMALL_STATE(2152)] = 67970, - [SMALL_STATE(2153)] = 67993, - [SMALL_STATE(2154)] = 68016, - [SMALL_STATE(2155)] = 68049, - [SMALL_STATE(2156)] = 68080, - [SMALL_STATE(2157)] = 68103, - [SMALL_STATE(2158)] = 68126, - [SMALL_STATE(2159)] = 68167, - [SMALL_STATE(2160)] = 68208, - [SMALL_STATE(2161)] = 68231, - [SMALL_STATE(2162)] = 68254, - [SMALL_STATE(2163)] = 68291, - [SMALL_STATE(2164)] = 68328, - [SMALL_STATE(2165)] = 68365, - [SMALL_STATE(2166)] = 68388, - [SMALL_STATE(2167)] = 68411, - [SMALL_STATE(2168)] = 68442, - [SMALL_STATE(2169)] = 68465, - [SMALL_STATE(2170)] = 68496, - [SMALL_STATE(2171)] = 68537, - [SMALL_STATE(2172)] = 68560, - [SMALL_STATE(2173)] = 68583, - [SMALL_STATE(2174)] = 68606, - [SMALL_STATE(2175)] = 68629, - [SMALL_STATE(2176)] = 68660, - [SMALL_STATE(2177)] = 68683, - [SMALL_STATE(2178)] = 68706, - [SMALL_STATE(2179)] = 68729, - [SMALL_STATE(2180)] = 68752, - [SMALL_STATE(2181)] = 68775, - [SMALL_STATE(2182)] = 68798, - [SMALL_STATE(2183)] = 68821, - [SMALL_STATE(2184)] = 68844, - [SMALL_STATE(2185)] = 68867, - [SMALL_STATE(2186)] = 68890, - [SMALL_STATE(2187)] = 68913, - [SMALL_STATE(2188)] = 68936, - [SMALL_STATE(2189)] = 68959, - [SMALL_STATE(2190)] = 68982, - [SMALL_STATE(2191)] = 69005, - [SMALL_STATE(2192)] = 69040, - [SMALL_STATE(2193)] = 69075, - [SMALL_STATE(2194)] = 69098, - [SMALL_STATE(2195)] = 69135, - [SMALL_STATE(2196)] = 69170, - [SMALL_STATE(2197)] = 69194, - [SMALL_STATE(2198)] = 69222, - [SMALL_STATE(2199)] = 69260, - [SMALL_STATE(2200)] = 69288, - [SMALL_STATE(2201)] = 69320, - [SMALL_STATE(2202)] = 69352, - [SMALL_STATE(2203)] = 69390, - [SMALL_STATE(2204)] = 69418, - [SMALL_STATE(2205)] = 69444, - [SMALL_STATE(2206)] = 69478, - [SMALL_STATE(2207)] = 69516, - [SMALL_STATE(2208)] = 69554, - [SMALL_STATE(2209)] = 69578, - [SMALL_STATE(2210)] = 69606, - [SMALL_STATE(2211)] = 69644, - [SMALL_STATE(2212)] = 69676, - [SMALL_STATE(2213)] = 69704, - [SMALL_STATE(2214)] = 69742, - [SMALL_STATE(2215)] = 69780, - [SMALL_STATE(2216)] = 69818, - [SMALL_STATE(2217)] = 69856, - [SMALL_STATE(2218)] = 69880, - [SMALL_STATE(2219)] = 69912, - [SMALL_STATE(2220)] = 69940, - [SMALL_STATE(2221)] = 69974, - [SMALL_STATE(2222)] = 70006, - [SMALL_STATE(2223)] = 70038, - [SMALL_STATE(2224)] = 70076, - [SMALL_STATE(2225)] = 70114, - [SMALL_STATE(2226)] = 70152, - [SMALL_STATE(2227)] = 70178, - [SMALL_STATE(2228)] = 70204, - [SMALL_STATE(2229)] = 70230, - [SMALL_STATE(2230)] = 70258, - [SMALL_STATE(2231)] = 70294, - [SMALL_STATE(2232)] = 70332, - [SMALL_STATE(2233)] = 70364, - [SMALL_STATE(2234)] = 70402, - [SMALL_STATE(2235)] = 70434, - [SMALL_STATE(2236)] = 70472, - [SMALL_STATE(2237)] = 70496, - [SMALL_STATE(2238)] = 70528, - [SMALL_STATE(2239)] = 70560, - [SMALL_STATE(2240)] = 70598, - [SMALL_STATE(2241)] = 70630, - [SMALL_STATE(2242)] = 70662, - [SMALL_STATE(2243)] = 70694, - [SMALL_STATE(2244)] = 70718, - [SMALL_STATE(2245)] = 70753, - [SMALL_STATE(2246)] = 70788, - [SMALL_STATE(2247)] = 70823, - [SMALL_STATE(2248)] = 70858, - [SMALL_STATE(2249)] = 70893, - [SMALL_STATE(2250)] = 70928, - [SMALL_STATE(2251)] = 70961, - [SMALL_STATE(2252)] = 70996, - [SMALL_STATE(2253)] = 71025, - [SMALL_STATE(2254)] = 71058, - [SMALL_STATE(2255)] = 71093, - [SMALL_STATE(2256)] = 71128, - [SMALL_STATE(2257)] = 71163, - [SMALL_STATE(2258)] = 71198, - [SMALL_STATE(2259)] = 71233, - [SMALL_STATE(2260)] = 71254, - [SMALL_STATE(2261)] = 71289, - [SMALL_STATE(2262)] = 71324, - [SMALL_STATE(2263)] = 71359, - [SMALL_STATE(2264)] = 71394, - [SMALL_STATE(2265)] = 71415, - [SMALL_STATE(2266)] = 71436, - [SMALL_STATE(2267)] = 71469, - [SMALL_STATE(2268)] = 71504, - [SMALL_STATE(2269)] = 71539, - [SMALL_STATE(2270)] = 71574, - [SMALL_STATE(2271)] = 71595, - [SMALL_STATE(2272)] = 71630, - [SMALL_STATE(2273)] = 71665, - [SMALL_STATE(2274)] = 71698, - [SMALL_STATE(2275)] = 71723, - [SMALL_STATE(2276)] = 71758, - [SMALL_STATE(2277)] = 71791, - [SMALL_STATE(2278)] = 71826, - [SMALL_STATE(2279)] = 71853, - [SMALL_STATE(2280)] = 71888, - [SMALL_STATE(2281)] = 71923, - [SMALL_STATE(2282)] = 71958, - [SMALL_STATE(2283)] = 71993, - [SMALL_STATE(2284)] = 72028, - [SMALL_STATE(2285)] = 72063, - [SMALL_STATE(2286)] = 72098, - [SMALL_STATE(2287)] = 72133, - [SMALL_STATE(2288)] = 72168, - [SMALL_STATE(2289)] = 72189, - [SMALL_STATE(2290)] = 72224, - [SMALL_STATE(2291)] = 72259, - [SMALL_STATE(2292)] = 72280, - [SMALL_STATE(2293)] = 72315, - [SMALL_STATE(2294)] = 72350, - [SMALL_STATE(2295)] = 72385, - [SMALL_STATE(2296)] = 72410, - [SMALL_STATE(2297)] = 72445, - [SMALL_STATE(2298)] = 72480, - [SMALL_STATE(2299)] = 72505, - [SMALL_STATE(2300)] = 72540, - [SMALL_STATE(2301)] = 72566, - [SMALL_STATE(2302)] = 72598, - [SMALL_STATE(2303)] = 72628, - [SMALL_STATE(2304)] = 72660, - [SMALL_STATE(2305)] = 72692, - [SMALL_STATE(2306)] = 72724, - [SMALL_STATE(2307)] = 72756, - [SMALL_STATE(2308)] = 72788, - [SMALL_STATE(2309)] = 72820, - [SMALL_STATE(2310)] = 72846, - [SMALL_STATE(2311)] = 72878, - [SMALL_STATE(2312)] = 72910, - [SMALL_STATE(2313)] = 72942, - [SMALL_STATE(2314)] = 72974, - [SMALL_STATE(2315)] = 73004, - [SMALL_STATE(2316)] = 73026, - [SMALL_STATE(2317)] = 73058, - [SMALL_STATE(2318)] = 73090, - [SMALL_STATE(2319)] = 73120, - [SMALL_STATE(2320)] = 73148, - [SMALL_STATE(2321)] = 73178, - [SMALL_STATE(2322)] = 73208, - [SMALL_STATE(2323)] = 73240, - [SMALL_STATE(2324)] = 73272, - [SMALL_STATE(2325)] = 73304, - [SMALL_STATE(2326)] = 73336, - [SMALL_STATE(2327)] = 73358, - [SMALL_STATE(2328)] = 73390, - [SMALL_STATE(2329)] = 73420, - [SMALL_STATE(2330)] = 73452, - [SMALL_STATE(2331)] = 73484, - [SMALL_STATE(2332)] = 73516, - [SMALL_STATE(2333)] = 73548, - [SMALL_STATE(2334)] = 73576, - [SMALL_STATE(2335)] = 73602, - [SMALL_STATE(2336)] = 73630, - [SMALL_STATE(2337)] = 73662, - [SMALL_STATE(2338)] = 73692, - [SMALL_STATE(2339)] = 73724, - [SMALL_STATE(2340)] = 73756, - [SMALL_STATE(2341)] = 73788, - [SMALL_STATE(2342)] = 73820, - [SMALL_STATE(2343)] = 73852, - [SMALL_STATE(2344)] = 73884, - [SMALL_STATE(2345)] = 73914, - [SMALL_STATE(2346)] = 73944, - [SMALL_STATE(2347)] = 73972, - [SMALL_STATE(2348)] = 73994, - [SMALL_STATE(2349)] = 74026, - [SMALL_STATE(2350)] = 74058, - [SMALL_STATE(2351)] = 74090, - [SMALL_STATE(2352)] = 74116, - [SMALL_STATE(2353)] = 74146, - [SMALL_STATE(2354)] = 74178, - [SMALL_STATE(2355)] = 74200, - [SMALL_STATE(2356)] = 74222, - [SMALL_STATE(2357)] = 74244, - [SMALL_STATE(2358)] = 74272, - [SMALL_STATE(2359)] = 74301, - [SMALL_STATE(2360)] = 74330, - [SMALL_STATE(2361)] = 74359, - [SMALL_STATE(2362)] = 74388, - [SMALL_STATE(2363)] = 74417, - [SMALL_STATE(2364)] = 74446, - [SMALL_STATE(2365)] = 74475, - [SMALL_STATE(2366)] = 74496, - [SMALL_STATE(2367)] = 74519, - [SMALL_STATE(2368)] = 74548, - [SMALL_STATE(2369)] = 74577, - [SMALL_STATE(2370)] = 74606, - [SMALL_STATE(2371)] = 74633, - [SMALL_STATE(2372)] = 74662, - [SMALL_STATE(2373)] = 74691, - [SMALL_STATE(2374)] = 74718, - [SMALL_STATE(2375)] = 74739, - [SMALL_STATE(2376)] = 74766, - [SMALL_STATE(2377)] = 74795, - [SMALL_STATE(2378)] = 74824, - [SMALL_STATE(2379)] = 74845, - [SMALL_STATE(2380)] = 74874, - [SMALL_STATE(2381)] = 74903, - [SMALL_STATE(2382)] = 74932, - [SMALL_STATE(2383)] = 74961, - [SMALL_STATE(2384)] = 74984, - [SMALL_STATE(2385)] = 75013, - [SMALL_STATE(2386)] = 75042, - [SMALL_STATE(2387)] = 75071, - [SMALL_STATE(2388)] = 75096, - [SMALL_STATE(2389)] = 75125, - [SMALL_STATE(2390)] = 75146, - [SMALL_STATE(2391)] = 75169, - [SMALL_STATE(2392)] = 75196, - [SMALL_STATE(2393)] = 75219, - [SMALL_STATE(2394)] = 75248, - [SMALL_STATE(2395)] = 75277, - [SMALL_STATE(2396)] = 75302, - [SMALL_STATE(2397)] = 75331, - [SMALL_STATE(2398)] = 75352, - [SMALL_STATE(2399)] = 75375, - [SMALL_STATE(2400)] = 75396, - [SMALL_STATE(2401)] = 75425, - [SMALL_STATE(2402)] = 75448, - [SMALL_STATE(2403)] = 75477, - [SMALL_STATE(2404)] = 75498, - [SMALL_STATE(2405)] = 75527, - [SMALL_STATE(2406)] = 75556, - [SMALL_STATE(2407)] = 75585, - [SMALL_STATE(2408)] = 75614, - [SMALL_STATE(2409)] = 75643, - [SMALL_STATE(2410)] = 75664, - [SMALL_STATE(2411)] = 75693, - [SMALL_STATE(2412)] = 75722, - [SMALL_STATE(2413)] = 75751, - [SMALL_STATE(2414)] = 75774, - [SMALL_STATE(2415)] = 75803, - [SMALL_STATE(2416)] = 75832, - [SMALL_STATE(2417)] = 75861, - [SMALL_STATE(2418)] = 75890, - [SMALL_STATE(2419)] = 75919, - [SMALL_STATE(2420)] = 75946, - [SMALL_STATE(2421)] = 75975, - [SMALL_STATE(2422)] = 76000, - [SMALL_STATE(2423)] = 76019, - [SMALL_STATE(2424)] = 76048, - [SMALL_STATE(2425)] = 76077, - [SMALL_STATE(2426)] = 76100, - [SMALL_STATE(2427)] = 76129, - [SMALL_STATE(2428)] = 76158, - [SMALL_STATE(2429)] = 76187, - [SMALL_STATE(2430)] = 76210, - [SMALL_STATE(2431)] = 76233, - [SMALL_STATE(2432)] = 76262, - [SMALL_STATE(2433)] = 76291, - [SMALL_STATE(2434)] = 76320, - [SMALL_STATE(2435)] = 76349, - [SMALL_STATE(2436)] = 76378, - [SMALL_STATE(2437)] = 76407, - [SMALL_STATE(2438)] = 76436, - [SMALL_STATE(2439)] = 76463, - [SMALL_STATE(2440)] = 76484, - [SMALL_STATE(2441)] = 76513, - [SMALL_STATE(2442)] = 76542, - [SMALL_STATE(2443)] = 76565, - [SMALL_STATE(2444)] = 76594, - [SMALL_STATE(2445)] = 76623, - [SMALL_STATE(2446)] = 76646, - [SMALL_STATE(2447)] = 76669, - [SMALL_STATE(2448)] = 76688, - [SMALL_STATE(2449)] = 76717, - [SMALL_STATE(2450)] = 76740, - [SMALL_STATE(2451)] = 76769, - [SMALL_STATE(2452)] = 76792, - [SMALL_STATE(2453)] = 76821, - [SMALL_STATE(2454)] = 76844, - [SMALL_STATE(2455)] = 76873, - [SMALL_STATE(2456)] = 76898, - [SMALL_STATE(2457)] = 76924, - [SMALL_STATE(2458)] = 76942, - [SMALL_STATE(2459)] = 76968, - [SMALL_STATE(2460)] = 76994, - [SMALL_STATE(2461)] = 77020, - [SMALL_STATE(2462)] = 77046, - [SMALL_STATE(2463)] = 77064, - [SMALL_STATE(2464)] = 77082, - [SMALL_STATE(2465)] = 77100, - [SMALL_STATE(2466)] = 77126, - [SMALL_STATE(2467)] = 77148, - [SMALL_STATE(2468)] = 77174, - [SMALL_STATE(2469)] = 77196, - [SMALL_STATE(2470)] = 77222, - [SMALL_STATE(2471)] = 77246, - [SMALL_STATE(2472)] = 77272, - [SMALL_STATE(2473)] = 77298, - [SMALL_STATE(2474)] = 77322, - [SMALL_STATE(2475)] = 77346, - [SMALL_STATE(2476)] = 77372, - [SMALL_STATE(2477)] = 77398, - [SMALL_STATE(2478)] = 77424, - [SMALL_STATE(2479)] = 77450, - [SMALL_STATE(2480)] = 77476, - [SMALL_STATE(2481)] = 77502, - [SMALL_STATE(2482)] = 77528, - [SMALL_STATE(2483)] = 77554, - [SMALL_STATE(2484)] = 77578, - [SMALL_STATE(2485)] = 77602, - [SMALL_STATE(2486)] = 77620, - [SMALL_STATE(2487)] = 77646, - [SMALL_STATE(2488)] = 77664, - [SMALL_STATE(2489)] = 77690, - [SMALL_STATE(2490)] = 77716, - [SMALL_STATE(2491)] = 77742, - [SMALL_STATE(2492)] = 77768, - [SMALL_STATE(2493)] = 77792, - [SMALL_STATE(2494)] = 77818, - [SMALL_STATE(2495)] = 77844, - [SMALL_STATE(2496)] = 77870, - [SMALL_STATE(2497)] = 77894, - [SMALL_STATE(2498)] = 77920, - [SMALL_STATE(2499)] = 77938, - [SMALL_STATE(2500)] = 77964, - [SMALL_STATE(2501)] = 77990, - [SMALL_STATE(2502)] = 78010, - [SMALL_STATE(2503)] = 78032, - [SMALL_STATE(2504)] = 78050, - [SMALL_STATE(2505)] = 78076, - [SMALL_STATE(2506)] = 78094, - [SMALL_STATE(2507)] = 78112, - [SMALL_STATE(2508)] = 78130, - [SMALL_STATE(2509)] = 78150, - [SMALL_STATE(2510)] = 78168, - [SMALL_STATE(2511)] = 78186, - [SMALL_STATE(2512)] = 78204, - [SMALL_STATE(2513)] = 78230, - [SMALL_STATE(2514)] = 78256, - [SMALL_STATE(2515)] = 78280, - [SMALL_STATE(2516)] = 78304, - [SMALL_STATE(2517)] = 78326, - [SMALL_STATE(2518)] = 78348, - [SMALL_STATE(2519)] = 78372, - [SMALL_STATE(2520)] = 78398, - [SMALL_STATE(2521)] = 78416, - [SMALL_STATE(2522)] = 78436, - [SMALL_STATE(2523)] = 78454, - [SMALL_STATE(2524)] = 78480, - [SMALL_STATE(2525)] = 78498, - [SMALL_STATE(2526)] = 78524, - [SMALL_STATE(2527)] = 78542, - [SMALL_STATE(2528)] = 78568, - [SMALL_STATE(2529)] = 78592, - [SMALL_STATE(2530)] = 78616, - [SMALL_STATE(2531)] = 78640, - [SMALL_STATE(2532)] = 78666, - [SMALL_STATE(2533)] = 78692, - [SMALL_STATE(2534)] = 78718, - [SMALL_STATE(2535)] = 78744, - [SMALL_STATE(2536)] = 78770, - [SMALL_STATE(2537)] = 78796, - [SMALL_STATE(2538)] = 78820, - [SMALL_STATE(2539)] = 78838, - [SMALL_STATE(2540)] = 78856, - [SMALL_STATE(2541)] = 78882, - [SMALL_STATE(2542)] = 78904, - [SMALL_STATE(2543)] = 78922, - [SMALL_STATE(2544)] = 78940, - [SMALL_STATE(2545)] = 78962, - [SMALL_STATE(2546)] = 78988, - [SMALL_STATE(2547)] = 79014, - [SMALL_STATE(2548)] = 79038, - [SMALL_STATE(2549)] = 79064, - [SMALL_STATE(2550)] = 79082, - [SMALL_STATE(2551)] = 79102, - [SMALL_STATE(2552)] = 79128, - [SMALL_STATE(2553)] = 79150, - [SMALL_STATE(2554)] = 79174, - [SMALL_STATE(2555)] = 79200, - [SMALL_STATE(2556)] = 79224, - [SMALL_STATE(2557)] = 79250, - [SMALL_STATE(2558)] = 79276, - [SMALL_STATE(2559)] = 79294, - [SMALL_STATE(2560)] = 79312, - [SMALL_STATE(2561)] = 79338, - [SMALL_STATE(2562)] = 79364, - [SMALL_STATE(2563)] = 79390, - [SMALL_STATE(2564)] = 79408, - [SMALL_STATE(2565)] = 79434, - [SMALL_STATE(2566)] = 79457, - [SMALL_STATE(2567)] = 79480, - [SMALL_STATE(2568)] = 79503, - [SMALL_STATE(2569)] = 79526, - [SMALL_STATE(2570)] = 79549, - [SMALL_STATE(2571)] = 79572, - [SMALL_STATE(2572)] = 79595, - [SMALL_STATE(2573)] = 79616, - [SMALL_STATE(2574)] = 79637, - [SMALL_STATE(2575)] = 79660, - [SMALL_STATE(2576)] = 79681, - [SMALL_STATE(2577)] = 79700, - [SMALL_STATE(2578)] = 79723, - [SMALL_STATE(2579)] = 79746, - [SMALL_STATE(2580)] = 79765, - [SMALL_STATE(2581)] = 79788, - [SMALL_STATE(2582)] = 79811, - [SMALL_STATE(2583)] = 79834, - [SMALL_STATE(2584)] = 79857, - [SMALL_STATE(2585)] = 79880, - [SMALL_STATE(2586)] = 79903, - [SMALL_STATE(2587)] = 79922, - [SMALL_STATE(2588)] = 79943, - [SMALL_STATE(2589)] = 79962, - [SMALL_STATE(2590)] = 79985, - [SMALL_STATE(2591)] = 80008, - [SMALL_STATE(2592)] = 80031, - [SMALL_STATE(2593)] = 80048, - [SMALL_STATE(2594)] = 80071, - [SMALL_STATE(2595)] = 80094, - [SMALL_STATE(2596)] = 80117, - [SMALL_STATE(2597)] = 80140, - [SMALL_STATE(2598)] = 80163, - [SMALL_STATE(2599)] = 80186, - [SMALL_STATE(2600)] = 80209, - [SMALL_STATE(2601)] = 80232, - [SMALL_STATE(2602)] = 80255, - [SMALL_STATE(2603)] = 80276, - [SMALL_STATE(2604)] = 80299, - [SMALL_STATE(2605)] = 80318, - [SMALL_STATE(2606)] = 80341, - [SMALL_STATE(2607)] = 80364, - [SMALL_STATE(2608)] = 80387, - [SMALL_STATE(2609)] = 80410, - [SMALL_STATE(2610)] = 80429, - [SMALL_STATE(2611)] = 80452, - [SMALL_STATE(2612)] = 80473, - [SMALL_STATE(2613)] = 80496, - [SMALL_STATE(2614)] = 80515, - [SMALL_STATE(2615)] = 80538, - [SMALL_STATE(2616)] = 80561, - [SMALL_STATE(2617)] = 80584, - [SMALL_STATE(2618)] = 80607, - [SMALL_STATE(2619)] = 80626, - [SMALL_STATE(2620)] = 80649, - [SMALL_STATE(2621)] = 80672, - [SMALL_STATE(2622)] = 80695, - [SMALL_STATE(2623)] = 80718, - [SMALL_STATE(2624)] = 80741, - [SMALL_STATE(2625)] = 80764, - [SMALL_STATE(2626)] = 80787, - [SMALL_STATE(2627)] = 80810, - [SMALL_STATE(2628)] = 80833, - [SMALL_STATE(2629)] = 80850, - [SMALL_STATE(2630)] = 80867, - [SMALL_STATE(2631)] = 80890, - [SMALL_STATE(2632)] = 80909, - [SMALL_STATE(2633)] = 80932, - [SMALL_STATE(2634)] = 80953, - [SMALL_STATE(2635)] = 80976, - [SMALL_STATE(2636)] = 80997, - [SMALL_STATE(2637)] = 81020, - [SMALL_STATE(2638)] = 81043, - [SMALL_STATE(2639)] = 81064, - [SMALL_STATE(2640)] = 81087, - [SMALL_STATE(2641)] = 81110, - [SMALL_STATE(2642)] = 81133, - [SMALL_STATE(2643)] = 81156, - [SMALL_STATE(2644)] = 81179, - [SMALL_STATE(2645)] = 81202, - [SMALL_STATE(2646)] = 81225, - [SMALL_STATE(2647)] = 81244, - [SMALL_STATE(2648)] = 81267, - [SMALL_STATE(2649)] = 81290, - [SMALL_STATE(2650)] = 81309, - [SMALL_STATE(2651)] = 81330, - [SMALL_STATE(2652)] = 81353, - [SMALL_STATE(2653)] = 81374, - [SMALL_STATE(2654)] = 81397, - [SMALL_STATE(2655)] = 81420, - [SMALL_STATE(2656)] = 81443, - [SMALL_STATE(2657)] = 81462, - [SMALL_STATE(2658)] = 81479, - [SMALL_STATE(2659)] = 81502, - [SMALL_STATE(2660)] = 81525, - [SMALL_STATE(2661)] = 81548, - [SMALL_STATE(2662)] = 81571, - [SMALL_STATE(2663)] = 81590, - [SMALL_STATE(2664)] = 81613, - [SMALL_STATE(2665)] = 81632, - [SMALL_STATE(2666)] = 81653, - [SMALL_STATE(2667)] = 81676, - [SMALL_STATE(2668)] = 81699, - [SMALL_STATE(2669)] = 81722, - [SMALL_STATE(2670)] = 81745, - [SMALL_STATE(2671)] = 81768, - [SMALL_STATE(2672)] = 81787, - [SMALL_STATE(2673)] = 81810, - [SMALL_STATE(2674)] = 81833, - [SMALL_STATE(2675)] = 81856, - [SMALL_STATE(2676)] = 81879, - [SMALL_STATE(2677)] = 81902, - [SMALL_STATE(2678)] = 81925, - [SMALL_STATE(2679)] = 81948, - [SMALL_STATE(2680)] = 81971, - [SMALL_STATE(2681)] = 81994, - [SMALL_STATE(2682)] = 82017, - [SMALL_STATE(2683)] = 82040, - [SMALL_STATE(2684)] = 82061, - [SMALL_STATE(2685)] = 82084, - [SMALL_STATE(2686)] = 82107, - [SMALL_STATE(2687)] = 82128, - [SMALL_STATE(2688)] = 82151, - [SMALL_STATE(2689)] = 82174, - [SMALL_STATE(2690)] = 82197, - [SMALL_STATE(2691)] = 82220, - [SMALL_STATE(2692)] = 82239, - [SMALL_STATE(2693)] = 82262, - [SMALL_STATE(2694)] = 82285, - [SMALL_STATE(2695)] = 82308, - [SMALL_STATE(2696)] = 82331, - [SMALL_STATE(2697)] = 82354, - [SMALL_STATE(2698)] = 82377, - [SMALL_STATE(2699)] = 82400, - [SMALL_STATE(2700)] = 82423, - [SMALL_STATE(2701)] = 82446, - [SMALL_STATE(2702)] = 82469, - [SMALL_STATE(2703)] = 82492, - [SMALL_STATE(2704)] = 82515, - [SMALL_STATE(2705)] = 82538, - [SMALL_STATE(2706)] = 82561, - [SMALL_STATE(2707)] = 82580, - [SMALL_STATE(2708)] = 82603, - [SMALL_STATE(2709)] = 82626, - [SMALL_STATE(2710)] = 82649, - [SMALL_STATE(2711)] = 82672, - [SMALL_STATE(2712)] = 82695, - [SMALL_STATE(2713)] = 82714, - [SMALL_STATE(2714)] = 82737, - [SMALL_STATE(2715)] = 82754, - [SMALL_STATE(2716)] = 82775, - [SMALL_STATE(2717)] = 82794, - [SMALL_STATE(2718)] = 82815, - [SMALL_STATE(2719)] = 82836, - [SMALL_STATE(2720)] = 82855, - [SMALL_STATE(2721)] = 82878, - [SMALL_STATE(2722)] = 82901, - [SMALL_STATE(2723)] = 82922, - [SMALL_STATE(2724)] = 82945, - [SMALL_STATE(2725)] = 82968, - [SMALL_STATE(2726)] = 82991, - [SMALL_STATE(2727)] = 83010, - [SMALL_STATE(2728)] = 83029, - [SMALL_STATE(2729)] = 83052, - [SMALL_STATE(2730)] = 83075, - [SMALL_STATE(2731)] = 83098, - [SMALL_STATE(2732)] = 83121, - [SMALL_STATE(2733)] = 83140, - [SMALL_STATE(2734)] = 83159, - [SMALL_STATE(2735)] = 83182, - [SMALL_STATE(2736)] = 83205, - [SMALL_STATE(2737)] = 83228, - [SMALL_STATE(2738)] = 83251, - [SMALL_STATE(2739)] = 83272, - [SMALL_STATE(2740)] = 83295, - [SMALL_STATE(2741)] = 83318, - [SMALL_STATE(2742)] = 83341, - [SMALL_STATE(2743)] = 83364, - [SMALL_STATE(2744)] = 83387, - [SMALL_STATE(2745)] = 83410, - [SMALL_STATE(2746)] = 83433, - [SMALL_STATE(2747)] = 83456, - [SMALL_STATE(2748)] = 83479, - [SMALL_STATE(2749)] = 83502, - [SMALL_STATE(2750)] = 83525, - [SMALL_STATE(2751)] = 83548, - [SMALL_STATE(2752)] = 83571, - [SMALL_STATE(2753)] = 83594, - [SMALL_STATE(2754)] = 83617, - [SMALL_STATE(2755)] = 83640, - [SMALL_STATE(2756)] = 83663, - [SMALL_STATE(2757)] = 83686, - [SMALL_STATE(2758)] = 83709, - [SMALL_STATE(2759)] = 83732, - [SMALL_STATE(2760)] = 83755, - [SMALL_STATE(2761)] = 83778, - [SMALL_STATE(2762)] = 83801, - [SMALL_STATE(2763)] = 83822, - [SMALL_STATE(2764)] = 83845, - [SMALL_STATE(2765)] = 83868, - [SMALL_STATE(2766)] = 83891, - [SMALL_STATE(2767)] = 83910, - [SMALL_STATE(2768)] = 83933, - [SMALL_STATE(2769)] = 83956, - [SMALL_STATE(2770)] = 83977, - [SMALL_STATE(2771)] = 84000, - [SMALL_STATE(2772)] = 84023, - [SMALL_STATE(2773)] = 84046, - [SMALL_STATE(2774)] = 84069, - [SMALL_STATE(2775)] = 84092, - [SMALL_STATE(2776)] = 84115, - [SMALL_STATE(2777)] = 84138, - [SMALL_STATE(2778)] = 84157, - [SMALL_STATE(2779)] = 84180, - [SMALL_STATE(2780)] = 84203, - [SMALL_STATE(2781)] = 84226, - [SMALL_STATE(2782)] = 84249, - [SMALL_STATE(2783)] = 84272, - [SMALL_STATE(2784)] = 84293, - [SMALL_STATE(2785)] = 84314, - [SMALL_STATE(2786)] = 84337, - [SMALL_STATE(2787)] = 84360, - [SMALL_STATE(2788)] = 84383, - [SMALL_STATE(2789)] = 84406, - [SMALL_STATE(2790)] = 84425, - [SMALL_STATE(2791)] = 84448, - [SMALL_STATE(2792)] = 84467, - [SMALL_STATE(2793)] = 84490, - [SMALL_STATE(2794)] = 84509, - [SMALL_STATE(2795)] = 84528, - [SMALL_STATE(2796)] = 84551, - [SMALL_STATE(2797)] = 84570, - [SMALL_STATE(2798)] = 84593, - [SMALL_STATE(2799)] = 84614, - [SMALL_STATE(2800)] = 84637, - [SMALL_STATE(2801)] = 84660, - [SMALL_STATE(2802)] = 84683, - [SMALL_STATE(2803)] = 84702, - [SMALL_STATE(2804)] = 84725, - [SMALL_STATE(2805)] = 84746, - [SMALL_STATE(2806)] = 84769, - [SMALL_STATE(2807)] = 84792, - [SMALL_STATE(2808)] = 84815, - [SMALL_STATE(2809)] = 84838, - [SMALL_STATE(2810)] = 84861, - [SMALL_STATE(2811)] = 84884, - [SMALL_STATE(2812)] = 84907, - [SMALL_STATE(2813)] = 84930, - [SMALL_STATE(2814)] = 84953, - [SMALL_STATE(2815)] = 84976, - [SMALL_STATE(2816)] = 84999, - [SMALL_STATE(2817)] = 85022, - [SMALL_STATE(2818)] = 85045, - [SMALL_STATE(2819)] = 85066, - [SMALL_STATE(2820)] = 85089, - [SMALL_STATE(2821)] = 85112, - [SMALL_STATE(2822)] = 85135, - [SMALL_STATE(2823)] = 85158, - [SMALL_STATE(2824)] = 85178, - [SMALL_STATE(2825)] = 85198, - [SMALL_STATE(2826)] = 85218, - [SMALL_STATE(2827)] = 85238, - [SMALL_STATE(2828)] = 85258, - [SMALL_STATE(2829)] = 85278, - [SMALL_STATE(2830)] = 85298, - [SMALL_STATE(2831)] = 85314, - [SMALL_STATE(2832)] = 85334, - [SMALL_STATE(2833)] = 85354, - [SMALL_STATE(2834)] = 85374, - [SMALL_STATE(2835)] = 85394, - [SMALL_STATE(2836)] = 85414, - [SMALL_STATE(2837)] = 85434, - [SMALL_STATE(2838)] = 85454, - [SMALL_STATE(2839)] = 85474, - [SMALL_STATE(2840)] = 85490, - [SMALL_STATE(2841)] = 85510, - [SMALL_STATE(2842)] = 85526, - [SMALL_STATE(2843)] = 85542, - [SMALL_STATE(2844)] = 85562, - [SMALL_STATE(2845)] = 85578, - [SMALL_STATE(2846)] = 85594, - [SMALL_STATE(2847)] = 85614, - [SMALL_STATE(2848)] = 85630, - [SMALL_STATE(2849)] = 85650, - [SMALL_STATE(2850)] = 85670, - [SMALL_STATE(2851)] = 85690, - [SMALL_STATE(2852)] = 85708, - [SMALL_STATE(2853)] = 85728, - [SMALL_STATE(2854)] = 85748, - [SMALL_STATE(2855)] = 85768, - [SMALL_STATE(2856)] = 85788, - [SMALL_STATE(2857)] = 85808, - [SMALL_STATE(2858)] = 85828, - [SMALL_STATE(2859)] = 85848, - [SMALL_STATE(2860)] = 85868, - [SMALL_STATE(2861)] = 85886, - [SMALL_STATE(2862)] = 85906, - [SMALL_STATE(2863)] = 85926, - [SMALL_STATE(2864)] = 85944, - [SMALL_STATE(2865)] = 85964, - [SMALL_STATE(2866)] = 85984, - [SMALL_STATE(2867)] = 86004, - [SMALL_STATE(2868)] = 86024, - [SMALL_STATE(2869)] = 86044, - [SMALL_STATE(2870)] = 86062, - [SMALL_STATE(2871)] = 86080, - [SMALL_STATE(2872)] = 86098, - [SMALL_STATE(2873)] = 86118, - [SMALL_STATE(2874)] = 86138, - [SMALL_STATE(2875)] = 86158, - [SMALL_STATE(2876)] = 86178, - [SMALL_STATE(2877)] = 86198, - [SMALL_STATE(2878)] = 86218, - [SMALL_STATE(2879)] = 86238, - [SMALL_STATE(2880)] = 86256, - [SMALL_STATE(2881)] = 86276, - [SMALL_STATE(2882)] = 86294, - [SMALL_STATE(2883)] = 86312, - [SMALL_STATE(2884)] = 86332, - [SMALL_STATE(2885)] = 86352, - [SMALL_STATE(2886)] = 86372, - [SMALL_STATE(2887)] = 86390, - [SMALL_STATE(2888)] = 86410, - [SMALL_STATE(2889)] = 86430, - [SMALL_STATE(2890)] = 86448, - [SMALL_STATE(2891)] = 86468, - [SMALL_STATE(2892)] = 86488, - [SMALL_STATE(2893)] = 86508, - [SMALL_STATE(2894)] = 86528, - [SMALL_STATE(2895)] = 86548, - [SMALL_STATE(2896)] = 86568, - [SMALL_STATE(2897)] = 86588, - [SMALL_STATE(2898)] = 86604, - [SMALL_STATE(2899)] = 86620, - [SMALL_STATE(2900)] = 86640, - [SMALL_STATE(2901)] = 86660, - [SMALL_STATE(2902)] = 86680, - [SMALL_STATE(2903)] = 86700, - [SMALL_STATE(2904)] = 86720, - [SMALL_STATE(2905)] = 86740, - [SMALL_STATE(2906)] = 86756, - [SMALL_STATE(2907)] = 86776, - [SMALL_STATE(2908)] = 86792, - [SMALL_STATE(2909)] = 86810, - [SMALL_STATE(2910)] = 86830, - [SMALL_STATE(2911)] = 86850, - [SMALL_STATE(2912)] = 86870, - [SMALL_STATE(2913)] = 86886, - [SMALL_STATE(2914)] = 86902, - [SMALL_STATE(2915)] = 86922, - [SMALL_STATE(2916)] = 86938, - [SMALL_STATE(2917)] = 86958, - [SMALL_STATE(2918)] = 86978, - [SMALL_STATE(2919)] = 86994, - [SMALL_STATE(2920)] = 87010, - [SMALL_STATE(2921)] = 87026, - [SMALL_STATE(2922)] = 87046, - [SMALL_STATE(2923)] = 87064, - [SMALL_STATE(2924)] = 87080, - [SMALL_STATE(2925)] = 87100, - [SMALL_STATE(2926)] = 87120, - [SMALL_STATE(2927)] = 87136, - [SMALL_STATE(2928)] = 87156, - [SMALL_STATE(2929)] = 87176, - [SMALL_STATE(2930)] = 87196, - [SMALL_STATE(2931)] = 87214, - [SMALL_STATE(2932)] = 87234, - [SMALL_STATE(2933)] = 87254, - [SMALL_STATE(2934)] = 87274, - [SMALL_STATE(2935)] = 87294, - [SMALL_STATE(2936)] = 87314, - [SMALL_STATE(2937)] = 87334, - [SMALL_STATE(2938)] = 87354, - [SMALL_STATE(2939)] = 87374, - [SMALL_STATE(2940)] = 87394, - [SMALL_STATE(2941)] = 87414, - [SMALL_STATE(2942)] = 87432, - [SMALL_STATE(2943)] = 87450, - [SMALL_STATE(2944)] = 87470, - [SMALL_STATE(2945)] = 87490, - [SMALL_STATE(2946)] = 87510, - [SMALL_STATE(2947)] = 87530, - [SMALL_STATE(2948)] = 87550, - [SMALL_STATE(2949)] = 87570, - [SMALL_STATE(2950)] = 87590, - [SMALL_STATE(2951)] = 87610, - [SMALL_STATE(2952)] = 87630, - [SMALL_STATE(2953)] = 87650, - [SMALL_STATE(2954)] = 87666, - [SMALL_STATE(2955)] = 87686, - [SMALL_STATE(2956)] = 87706, - [SMALL_STATE(2957)] = 87726, - [SMALL_STATE(2958)] = 87746, - [SMALL_STATE(2959)] = 87766, - [SMALL_STATE(2960)] = 87786, - [SMALL_STATE(2961)] = 87804, - [SMALL_STATE(2962)] = 87824, - [SMALL_STATE(2963)] = 87844, - [SMALL_STATE(2964)] = 87864, - [SMALL_STATE(2965)] = 87884, - [SMALL_STATE(2966)] = 87902, - [SMALL_STATE(2967)] = 87922, - [SMALL_STATE(2968)] = 87938, - [SMALL_STATE(2969)] = 87958, - [SMALL_STATE(2970)] = 87978, - [SMALL_STATE(2971)] = 87998, - [SMALL_STATE(2972)] = 88016, - [SMALL_STATE(2973)] = 88036, - [SMALL_STATE(2974)] = 88056, - [SMALL_STATE(2975)] = 88076, - [SMALL_STATE(2976)] = 88094, - [SMALL_STATE(2977)] = 88110, - [SMALL_STATE(2978)] = 88128, - [SMALL_STATE(2979)] = 88144, - [SMALL_STATE(2980)] = 88162, - [SMALL_STATE(2981)] = 88182, - [SMALL_STATE(2982)] = 88198, - [SMALL_STATE(2983)] = 88214, - [SMALL_STATE(2984)] = 88234, - [SMALL_STATE(2985)] = 88250, - [SMALL_STATE(2986)] = 88266, - [SMALL_STATE(2987)] = 88286, - [SMALL_STATE(2988)] = 88306, - [SMALL_STATE(2989)] = 88326, - [SMALL_STATE(2990)] = 88346, - [SMALL_STATE(2991)] = 88364, - [SMALL_STATE(2992)] = 88384, - [SMALL_STATE(2993)] = 88402, - [SMALL_STATE(2994)] = 88422, - [SMALL_STATE(2995)] = 88442, - [SMALL_STATE(2996)] = 88462, - [SMALL_STATE(2997)] = 88482, - [SMALL_STATE(2998)] = 88502, - [SMALL_STATE(2999)] = 88522, - [SMALL_STATE(3000)] = 88542, - [SMALL_STATE(3001)] = 88558, - [SMALL_STATE(3002)] = 88578, - [SMALL_STATE(3003)] = 88594, - [SMALL_STATE(3004)] = 88614, - [SMALL_STATE(3005)] = 88634, - [SMALL_STATE(3006)] = 88654, - [SMALL_STATE(3007)] = 88674, - [SMALL_STATE(3008)] = 88694, - [SMALL_STATE(3009)] = 88714, - [SMALL_STATE(3010)] = 88730, - [SMALL_STATE(3011)] = 88750, - [SMALL_STATE(3012)] = 88770, - [SMALL_STATE(3013)] = 88790, - [SMALL_STATE(3014)] = 88810, - [SMALL_STATE(3015)] = 88826, - [SMALL_STATE(3016)] = 88842, - [SMALL_STATE(3017)] = 88862, - [SMALL_STATE(3018)] = 88878, - [SMALL_STATE(3019)] = 88894, - [SMALL_STATE(3020)] = 88910, - [SMALL_STATE(3021)] = 88930, - [SMALL_STATE(3022)] = 88946, - [SMALL_STATE(3023)] = 88966, - [SMALL_STATE(3024)] = 88982, - [SMALL_STATE(3025)] = 88998, - [SMALL_STATE(3026)] = 89014, - [SMALL_STATE(3027)] = 89034, - [SMALL_STATE(3028)] = 89054, - [SMALL_STATE(3029)] = 89074, - [SMALL_STATE(3030)] = 89094, - [SMALL_STATE(3031)] = 89114, - [SMALL_STATE(3032)] = 89134, - [SMALL_STATE(3033)] = 89154, - [SMALL_STATE(3034)] = 89174, - [SMALL_STATE(3035)] = 89194, - [SMALL_STATE(3036)] = 89210, - [SMALL_STATE(3037)] = 89226, - [SMALL_STATE(3038)] = 89246, - [SMALL_STATE(3039)] = 89266, - [SMALL_STATE(3040)] = 89284, - [SMALL_STATE(3041)] = 89302, - [SMALL_STATE(3042)] = 89320, - [SMALL_STATE(3043)] = 89340, - [SMALL_STATE(3044)] = 89358, - [SMALL_STATE(3045)] = 89378, - [SMALL_STATE(3046)] = 89398, - [SMALL_STATE(3047)] = 89418, - [SMALL_STATE(3048)] = 89438, - [SMALL_STATE(3049)] = 89458, - [SMALL_STATE(3050)] = 89478, - [SMALL_STATE(3051)] = 89498, - [SMALL_STATE(3052)] = 89518, - [SMALL_STATE(3053)] = 89534, - [SMALL_STATE(3054)] = 89552, - [SMALL_STATE(3055)] = 89572, - [SMALL_STATE(3056)] = 89592, - [SMALL_STATE(3057)] = 89612, - [SMALL_STATE(3058)] = 89628, - [SMALL_STATE(3059)] = 89648, - [SMALL_STATE(3060)] = 89668, - [SMALL_STATE(3061)] = 89688, - [SMALL_STATE(3062)] = 89708, - [SMALL_STATE(3063)] = 89728, - [SMALL_STATE(3064)] = 89748, - [SMALL_STATE(3065)] = 89768, - [SMALL_STATE(3066)] = 89788, - [SMALL_STATE(3067)] = 89808, - [SMALL_STATE(3068)] = 89828, - [SMALL_STATE(3069)] = 89844, - [SMALL_STATE(3070)] = 89864, - [SMALL_STATE(3071)] = 89880, - [SMALL_STATE(3072)] = 89898, - [SMALL_STATE(3073)] = 89918, - [SMALL_STATE(3074)] = 89936, - [SMALL_STATE(3075)] = 89952, - [SMALL_STATE(3076)] = 89970, - [SMALL_STATE(3077)] = 89988, - [SMALL_STATE(3078)] = 90006, - [SMALL_STATE(3079)] = 90026, - [SMALL_STATE(3080)] = 90044, - [SMALL_STATE(3081)] = 90064, - [SMALL_STATE(3082)] = 90084, - [SMALL_STATE(3083)] = 90104, - [SMALL_STATE(3084)] = 90124, - [SMALL_STATE(3085)] = 90142, - [SMALL_STATE(3086)] = 90162, - [SMALL_STATE(3087)] = 90182, - [SMALL_STATE(3088)] = 90202, - [SMALL_STATE(3089)] = 90222, - [SMALL_STATE(3090)] = 90242, - [SMALL_STATE(3091)] = 90260, - [SMALL_STATE(3092)] = 90276, - [SMALL_STATE(3093)] = 90292, - [SMALL_STATE(3094)] = 90312, - [SMALL_STATE(3095)] = 90332, - [SMALL_STATE(3096)] = 90348, - [SMALL_STATE(3097)] = 90366, - [SMALL_STATE(3098)] = 90382, - [SMALL_STATE(3099)] = 90402, - [SMALL_STATE(3100)] = 90418, - [SMALL_STATE(3101)] = 90438, - [SMALL_STATE(3102)] = 90458, - [SMALL_STATE(3103)] = 90474, - [SMALL_STATE(3104)] = 90494, - [SMALL_STATE(3105)] = 90514, - [SMALL_STATE(3106)] = 90534, - [SMALL_STATE(3107)] = 90554, - [SMALL_STATE(3108)] = 90574, - [SMALL_STATE(3109)] = 90590, - [SMALL_STATE(3110)] = 90610, - [SMALL_STATE(3111)] = 90628, - [SMALL_STATE(3112)] = 90648, - [SMALL_STATE(3113)] = 90664, - [SMALL_STATE(3114)] = 90684, - [SMALL_STATE(3115)] = 90704, - [SMALL_STATE(3116)] = 90722, - [SMALL_STATE(3117)] = 90740, - [SMALL_STATE(3118)] = 90760, - [SMALL_STATE(3119)] = 90780, - [SMALL_STATE(3120)] = 90800, - [SMALL_STATE(3121)] = 90820, - [SMALL_STATE(3122)] = 90840, - [SMALL_STATE(3123)] = 90860, - [SMALL_STATE(3124)] = 90880, - [SMALL_STATE(3125)] = 90900, - [SMALL_STATE(3126)] = 90920, - [SMALL_STATE(3127)] = 90940, - [SMALL_STATE(3128)] = 90960, - [SMALL_STATE(3129)] = 90980, - [SMALL_STATE(3130)] = 90996, - [SMALL_STATE(3131)] = 91012, - [SMALL_STATE(3132)] = 91032, - [SMALL_STATE(3133)] = 91052, - [SMALL_STATE(3134)] = 91067, - [SMALL_STATE(3135)] = 91084, - [SMALL_STATE(3136)] = 91101, - [SMALL_STATE(3137)] = 91116, - [SMALL_STATE(3138)] = 91133, - [SMALL_STATE(3139)] = 91150, - [SMALL_STATE(3140)] = 91167, - [SMALL_STATE(3141)] = 91184, - [SMALL_STATE(3142)] = 91201, - [SMALL_STATE(3143)] = 91218, - [SMALL_STATE(3144)] = 91235, - [SMALL_STATE(3145)] = 91252, - [SMALL_STATE(3146)] = 91269, - [SMALL_STATE(3147)] = 91286, - [SMALL_STATE(3148)] = 91301, - [SMALL_STATE(3149)] = 91318, - [SMALL_STATE(3150)] = 91333, - [SMALL_STATE(3151)] = 91350, - [SMALL_STATE(3152)] = 91367, - [SMALL_STATE(3153)] = 91382, - [SMALL_STATE(3154)] = 91399, - [SMALL_STATE(3155)] = 91416, - [SMALL_STATE(3156)] = 91433, - [SMALL_STATE(3157)] = 91448, - [SMALL_STATE(3158)] = 91463, - [SMALL_STATE(3159)] = 91480, - [SMALL_STATE(3160)] = 91497, - [SMALL_STATE(3161)] = 91514, - [SMALL_STATE(3162)] = 91531, - [SMALL_STATE(3163)] = 91548, - [SMALL_STATE(3164)] = 91563, - [SMALL_STATE(3165)] = 91580, - [SMALL_STATE(3166)] = 91595, - [SMALL_STATE(3167)] = 91612, - [SMALL_STATE(3168)] = 91629, - [SMALL_STATE(3169)] = 91646, - [SMALL_STATE(3170)] = 91663, - [SMALL_STATE(3171)] = 91680, - [SMALL_STATE(3172)] = 91697, - [SMALL_STATE(3173)] = 91712, - [SMALL_STATE(3174)] = 91729, - [SMALL_STATE(3175)] = 91746, - [SMALL_STATE(3176)] = 91763, - [SMALL_STATE(3177)] = 91778, - [SMALL_STATE(3178)] = 91795, - [SMALL_STATE(3179)] = 91810, - [SMALL_STATE(3180)] = 91827, - [SMALL_STATE(3181)] = 91844, - [SMALL_STATE(3182)] = 91861, - [SMALL_STATE(3183)] = 91876, - [SMALL_STATE(3184)] = 91891, - [SMALL_STATE(3185)] = 91908, - [SMALL_STATE(3186)] = 91925, - [SMALL_STATE(3187)] = 91940, - [SMALL_STATE(3188)] = 91957, - [SMALL_STATE(3189)] = 91974, - [SMALL_STATE(3190)] = 91989, - [SMALL_STATE(3191)] = 92006, - [SMALL_STATE(3192)] = 92023, - [SMALL_STATE(3193)] = 92038, - [SMALL_STATE(3194)] = 92055, - [SMALL_STATE(3195)] = 92072, - [SMALL_STATE(3196)] = 92089, - [SMALL_STATE(3197)] = 92106, - [SMALL_STATE(3198)] = 92123, - [SMALL_STATE(3199)] = 92140, - [SMALL_STATE(3200)] = 92157, - [SMALL_STATE(3201)] = 92172, - [SMALL_STATE(3202)] = 92189, - [SMALL_STATE(3203)] = 92206, - [SMALL_STATE(3204)] = 92223, - [SMALL_STATE(3205)] = 92240, - [SMALL_STATE(3206)] = 92257, - [SMALL_STATE(3207)] = 92272, - [SMALL_STATE(3208)] = 92289, - [SMALL_STATE(3209)] = 92306, - [SMALL_STATE(3210)] = 92321, - [SMALL_STATE(3211)] = 92338, - [SMALL_STATE(3212)] = 92355, - [SMALL_STATE(3213)] = 92372, - [SMALL_STATE(3214)] = 92389, - [SMALL_STATE(3215)] = 92406, - [SMALL_STATE(3216)] = 92423, - [SMALL_STATE(3217)] = 92440, - [SMALL_STATE(3218)] = 92457, - [SMALL_STATE(3219)] = 92474, - [SMALL_STATE(3220)] = 92489, - [SMALL_STATE(3221)] = 92506, - [SMALL_STATE(3222)] = 92523, - [SMALL_STATE(3223)] = 92540, - [SMALL_STATE(3224)] = 92555, - [SMALL_STATE(3225)] = 92572, - [SMALL_STATE(3226)] = 92589, - [SMALL_STATE(3227)] = 92606, - [SMALL_STATE(3228)] = 92623, - [SMALL_STATE(3229)] = 92640, - [SMALL_STATE(3230)] = 92657, - [SMALL_STATE(3231)] = 92674, - [SMALL_STATE(3232)] = 92691, - [SMALL_STATE(3233)] = 92708, - [SMALL_STATE(3234)] = 92725, - [SMALL_STATE(3235)] = 92742, - [SMALL_STATE(3236)] = 92759, - [SMALL_STATE(3237)] = 92776, - [SMALL_STATE(3238)] = 92793, - [SMALL_STATE(3239)] = 92810, - [SMALL_STATE(3240)] = 92827, - [SMALL_STATE(3241)] = 92842, - [SMALL_STATE(3242)] = 92859, - [SMALL_STATE(3243)] = 92876, - [SMALL_STATE(3244)] = 92893, - [SMALL_STATE(3245)] = 92910, - [SMALL_STATE(3246)] = 92927, - [SMALL_STATE(3247)] = 92944, - [SMALL_STATE(3248)] = 92961, - [SMALL_STATE(3249)] = 92978, - [SMALL_STATE(3250)] = 92995, - [SMALL_STATE(3251)] = 93012, - [SMALL_STATE(3252)] = 93029, - [SMALL_STATE(3253)] = 93044, - [SMALL_STATE(3254)] = 93061, - [SMALL_STATE(3255)] = 93078, - [SMALL_STATE(3256)] = 93093, - [SMALL_STATE(3257)] = 93110, - [SMALL_STATE(3258)] = 93127, - [SMALL_STATE(3259)] = 93144, - [SMALL_STATE(3260)] = 93161, - [SMALL_STATE(3261)] = 93178, - [SMALL_STATE(3262)] = 93195, - [SMALL_STATE(3263)] = 93210, - [SMALL_STATE(3264)] = 93227, - [SMALL_STATE(3265)] = 93242, - [SMALL_STATE(3266)] = 93259, - [SMALL_STATE(3267)] = 93276, - [SMALL_STATE(3268)] = 93293, - [SMALL_STATE(3269)] = 93310, - [SMALL_STATE(3270)] = 93327, - [SMALL_STATE(3271)] = 93344, - [SMALL_STATE(3272)] = 93361, - [SMALL_STATE(3273)] = 93376, - [SMALL_STATE(3274)] = 93393, - [SMALL_STATE(3275)] = 93410, - [SMALL_STATE(3276)] = 93427, - [SMALL_STATE(3277)] = 93444, - [SMALL_STATE(3278)] = 93461, - [SMALL_STATE(3279)] = 93478, - [SMALL_STATE(3280)] = 93495, - [SMALL_STATE(3281)] = 93512, - [SMALL_STATE(3282)] = 93529, - [SMALL_STATE(3283)] = 93546, - [SMALL_STATE(3284)] = 93563, - [SMALL_STATE(3285)] = 93580, - [SMALL_STATE(3286)] = 93597, - [SMALL_STATE(3287)] = 93614, - [SMALL_STATE(3288)] = 93631, - [SMALL_STATE(3289)] = 93648, - [SMALL_STATE(3290)] = 93665, - [SMALL_STATE(3291)] = 93682, - [SMALL_STATE(3292)] = 93699, - [SMALL_STATE(3293)] = 93716, - [SMALL_STATE(3294)] = 93733, - [SMALL_STATE(3295)] = 93750, - [SMALL_STATE(3296)] = 93767, - [SMALL_STATE(3297)] = 93784, - [SMALL_STATE(3298)] = 93801, - [SMALL_STATE(3299)] = 93816, - [SMALL_STATE(3300)] = 93833, - [SMALL_STATE(3301)] = 93848, - [SMALL_STATE(3302)] = 93865, - [SMALL_STATE(3303)] = 93882, - [SMALL_STATE(3304)] = 93897, - [SMALL_STATE(3305)] = 93914, - [SMALL_STATE(3306)] = 93929, - [SMALL_STATE(3307)] = 93946, - [SMALL_STATE(3308)] = 93963, - [SMALL_STATE(3309)] = 93980, - [SMALL_STATE(3310)] = 93997, - [SMALL_STATE(3311)] = 94014, - [SMALL_STATE(3312)] = 94031, - [SMALL_STATE(3313)] = 94048, - [SMALL_STATE(3314)] = 94065, - [SMALL_STATE(3315)] = 94082, - [SMALL_STATE(3316)] = 94099, - [SMALL_STATE(3317)] = 94114, - [SMALL_STATE(3318)] = 94131, - [SMALL_STATE(3319)] = 94148, - [SMALL_STATE(3320)] = 94163, - [SMALL_STATE(3321)] = 94180, - [SMALL_STATE(3322)] = 94197, - [SMALL_STATE(3323)] = 94212, - [SMALL_STATE(3324)] = 94227, - [SMALL_STATE(3325)] = 94244, - [SMALL_STATE(3326)] = 94259, - [SMALL_STATE(3327)] = 94274, - [SMALL_STATE(3328)] = 94289, - [SMALL_STATE(3329)] = 94304, - [SMALL_STATE(3330)] = 94321, - [SMALL_STATE(3331)] = 94338, - [SMALL_STATE(3332)] = 94355, - [SMALL_STATE(3333)] = 94372, - [SMALL_STATE(3334)] = 94389, - [SMALL_STATE(3335)] = 94404, - [SMALL_STATE(3336)] = 94421, - [SMALL_STATE(3337)] = 94438, - [SMALL_STATE(3338)] = 94453, - [SMALL_STATE(3339)] = 94468, - [SMALL_STATE(3340)] = 94485, - [SMALL_STATE(3341)] = 94502, - [SMALL_STATE(3342)] = 94519, - [SMALL_STATE(3343)] = 94536, - [SMALL_STATE(3344)] = 94553, - [SMALL_STATE(3345)] = 94570, - [SMALL_STATE(3346)] = 94587, - [SMALL_STATE(3347)] = 94604, - [SMALL_STATE(3348)] = 94621, - [SMALL_STATE(3349)] = 94638, - [SMALL_STATE(3350)] = 94655, - [SMALL_STATE(3351)] = 94672, - [SMALL_STATE(3352)] = 94689, - [SMALL_STATE(3353)] = 94706, - [SMALL_STATE(3354)] = 94723, - [SMALL_STATE(3355)] = 94738, - [SMALL_STATE(3356)] = 94755, - [SMALL_STATE(3357)] = 94772, - [SMALL_STATE(3358)] = 94789, - [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)] = 94938, - [SMALL_STATE(3368)] = 94955, - [SMALL_STATE(3369)] = 94972, - [SMALL_STATE(3370)] = 94989, - [SMALL_STATE(3371)] = 95006, - [SMALL_STATE(3372)] = 95023, - [SMALL_STATE(3373)] = 95038, - [SMALL_STATE(3374)] = 95055, - [SMALL_STATE(3375)] = 95072, - [SMALL_STATE(3376)] = 95089, - [SMALL_STATE(3377)] = 95106, - [SMALL_STATE(3378)] = 95123, - [SMALL_STATE(3379)] = 95138, - [SMALL_STATE(3380)] = 95153, - [SMALL_STATE(3381)] = 95170, - [SMALL_STATE(3382)] = 95187, - [SMALL_STATE(3383)] = 95204, - [SMALL_STATE(3384)] = 95221, - [SMALL_STATE(3385)] = 95238, - [SMALL_STATE(3386)] = 95253, - [SMALL_STATE(3387)] = 95270, - [SMALL_STATE(3388)] = 95287, - [SMALL_STATE(3389)] = 95304, - [SMALL_STATE(3390)] = 95321, - [SMALL_STATE(3391)] = 95338, - [SMALL_STATE(3392)] = 95355, - [SMALL_STATE(3393)] = 95370, - [SMALL_STATE(3394)] = 95387, - [SMALL_STATE(3395)] = 95402, - [SMALL_STATE(3396)] = 95417, - [SMALL_STATE(3397)] = 95434, - [SMALL_STATE(3398)] = 95449, - [SMALL_STATE(3399)] = 95466, - [SMALL_STATE(3400)] = 95483, - [SMALL_STATE(3401)] = 95498, - [SMALL_STATE(3402)] = 95515, - [SMALL_STATE(3403)] = 95530, - [SMALL_STATE(3404)] = 95545, - [SMALL_STATE(3405)] = 95562, - [SMALL_STATE(3406)] = 95579, - [SMALL_STATE(3407)] = 95596, - [SMALL_STATE(3408)] = 95613, - [SMALL_STATE(3409)] = 95630, - [SMALL_STATE(3410)] = 95647, - [SMALL_STATE(3411)] = 95664, - [SMALL_STATE(3412)] = 95681, - [SMALL_STATE(3413)] = 95698, - [SMALL_STATE(3414)] = 95715, - [SMALL_STATE(3415)] = 95732, - [SMALL_STATE(3416)] = 95749, - [SMALL_STATE(3417)] = 95766, - [SMALL_STATE(3418)] = 95783, - [SMALL_STATE(3419)] = 95800, - [SMALL_STATE(3420)] = 95817, - [SMALL_STATE(3421)] = 95834, - [SMALL_STATE(3422)] = 95851, - [SMALL_STATE(3423)] = 95868, - [SMALL_STATE(3424)] = 95885, - [SMALL_STATE(3425)] = 95899, - [SMALL_STATE(3426)] = 95913, - [SMALL_STATE(3427)] = 95927, - [SMALL_STATE(3428)] = 95941, - [SMALL_STATE(3429)] = 95955, - [SMALL_STATE(3430)] = 95969, - [SMALL_STATE(3431)] = 95983, - [SMALL_STATE(3432)] = 95997, - [SMALL_STATE(3433)] = 96011, - [SMALL_STATE(3434)] = 96025, - [SMALL_STATE(3435)] = 96039, - [SMALL_STATE(3436)] = 96053, - [SMALL_STATE(3437)] = 96067, - [SMALL_STATE(3438)] = 96081, - [SMALL_STATE(3439)] = 96095, - [SMALL_STATE(3440)] = 96109, - [SMALL_STATE(3441)] = 96123, - [SMALL_STATE(3442)] = 96137, - [SMALL_STATE(3443)] = 96151, - [SMALL_STATE(3444)] = 96165, - [SMALL_STATE(3445)] = 96179, - [SMALL_STATE(3446)] = 96193, - [SMALL_STATE(3447)] = 96207, - [SMALL_STATE(3448)] = 96221, - [SMALL_STATE(3449)] = 96235, - [SMALL_STATE(3450)] = 96249, - [SMALL_STATE(3451)] = 96263, - [SMALL_STATE(3452)] = 96277, - [SMALL_STATE(3453)] = 96291, - [SMALL_STATE(3454)] = 96305, - [SMALL_STATE(3455)] = 96319, - [SMALL_STATE(3456)] = 96333, - [SMALL_STATE(3457)] = 96347, - [SMALL_STATE(3458)] = 96361, - [SMALL_STATE(3459)] = 96375, - [SMALL_STATE(3460)] = 96389, - [SMALL_STATE(3461)] = 96403, - [SMALL_STATE(3462)] = 96417, - [SMALL_STATE(3463)] = 96431, - [SMALL_STATE(3464)] = 96445, - [SMALL_STATE(3465)] = 96459, - [SMALL_STATE(3466)] = 96473, - [SMALL_STATE(3467)] = 96487, - [SMALL_STATE(3468)] = 96501, - [SMALL_STATE(3469)] = 96515, - [SMALL_STATE(3470)] = 96529, - [SMALL_STATE(3471)] = 96543, - [SMALL_STATE(3472)] = 96557, - [SMALL_STATE(3473)] = 96571, - [SMALL_STATE(3474)] = 96585, - [SMALL_STATE(3475)] = 96599, - [SMALL_STATE(3476)] = 96613, - [SMALL_STATE(3477)] = 96627, - [SMALL_STATE(3478)] = 96641, - [SMALL_STATE(3479)] = 96655, - [SMALL_STATE(3480)] = 96669, - [SMALL_STATE(3481)] = 96683, - [SMALL_STATE(3482)] = 96697, - [SMALL_STATE(3483)] = 96711, - [SMALL_STATE(3484)] = 96725, - [SMALL_STATE(3485)] = 96739, - [SMALL_STATE(3486)] = 96753, - [SMALL_STATE(3487)] = 96767, - [SMALL_STATE(3488)] = 96781, - [SMALL_STATE(3489)] = 96795, - [SMALL_STATE(3490)] = 96809, - [SMALL_STATE(3491)] = 96823, - [SMALL_STATE(3492)] = 96837, - [SMALL_STATE(3493)] = 96851, - [SMALL_STATE(3494)] = 96865, - [SMALL_STATE(3495)] = 96879, - [SMALL_STATE(3496)] = 96893, - [SMALL_STATE(3497)] = 96907, - [SMALL_STATE(3498)] = 96921, - [SMALL_STATE(3499)] = 96935, - [SMALL_STATE(3500)] = 96949, - [SMALL_STATE(3501)] = 96963, - [SMALL_STATE(3502)] = 96977, - [SMALL_STATE(3503)] = 96991, - [SMALL_STATE(3504)] = 97005, - [SMALL_STATE(3505)] = 97019, - [SMALL_STATE(3506)] = 97033, - [SMALL_STATE(3507)] = 97047, - [SMALL_STATE(3508)] = 97061, - [SMALL_STATE(3509)] = 97075, - [SMALL_STATE(3510)] = 97089, - [SMALL_STATE(3511)] = 97103, - [SMALL_STATE(3512)] = 97117, - [SMALL_STATE(3513)] = 97131, - [SMALL_STATE(3514)] = 97145, - [SMALL_STATE(3515)] = 97159, - [SMALL_STATE(3516)] = 97173, - [SMALL_STATE(3517)] = 97187, - [SMALL_STATE(3518)] = 97201, - [SMALL_STATE(3519)] = 97215, - [SMALL_STATE(3520)] = 97229, - [SMALL_STATE(3521)] = 97243, - [SMALL_STATE(3522)] = 97257, - [SMALL_STATE(3523)] = 97271, - [SMALL_STATE(3524)] = 97285, - [SMALL_STATE(3525)] = 97299, - [SMALL_STATE(3526)] = 97313, - [SMALL_STATE(3527)] = 97327, - [SMALL_STATE(3528)] = 97341, - [SMALL_STATE(3529)] = 97355, - [SMALL_STATE(3530)] = 97369, - [SMALL_STATE(3531)] = 97383, - [SMALL_STATE(3532)] = 97397, - [SMALL_STATE(3533)] = 97411, - [SMALL_STATE(3534)] = 97425, - [SMALL_STATE(3535)] = 97439, - [SMALL_STATE(3536)] = 97453, - [SMALL_STATE(3537)] = 97467, - [SMALL_STATE(3538)] = 97481, - [SMALL_STATE(3539)] = 97495, - [SMALL_STATE(3540)] = 97509, - [SMALL_STATE(3541)] = 97523, - [SMALL_STATE(3542)] = 97537, - [SMALL_STATE(3543)] = 97551, - [SMALL_STATE(3544)] = 97565, - [SMALL_STATE(3545)] = 97579, - [SMALL_STATE(3546)] = 97593, - [SMALL_STATE(3547)] = 97607, - [SMALL_STATE(3548)] = 97621, - [SMALL_STATE(3549)] = 97635, - [SMALL_STATE(3550)] = 97649, - [SMALL_STATE(3551)] = 97663, - [SMALL_STATE(3552)] = 97677, - [SMALL_STATE(3553)] = 97691, - [SMALL_STATE(3554)] = 97705, - [SMALL_STATE(3555)] = 97719, - [SMALL_STATE(3556)] = 97733, - [SMALL_STATE(3557)] = 97747, - [SMALL_STATE(3558)] = 97761, - [SMALL_STATE(3559)] = 97775, - [SMALL_STATE(3560)] = 97789, - [SMALL_STATE(3561)] = 97803, - [SMALL_STATE(3562)] = 97817, - [SMALL_STATE(3563)] = 97831, - [SMALL_STATE(3564)] = 97845, - [SMALL_STATE(3565)] = 97859, - [SMALL_STATE(3566)] = 97873, - [SMALL_STATE(3567)] = 97887, - [SMALL_STATE(3568)] = 97901, - [SMALL_STATE(3569)] = 97915, - [SMALL_STATE(3570)] = 97929, - [SMALL_STATE(3571)] = 97943, - [SMALL_STATE(3572)] = 97957, - [SMALL_STATE(3573)] = 97971, - [SMALL_STATE(3574)] = 97985, - [SMALL_STATE(3575)] = 97999, - [SMALL_STATE(3576)] = 98013, - [SMALL_STATE(3577)] = 98027, - [SMALL_STATE(3578)] = 98041, - [SMALL_STATE(3579)] = 98055, - [SMALL_STATE(3580)] = 98069, - [SMALL_STATE(3581)] = 98083, - [SMALL_STATE(3582)] = 98097, - [SMALL_STATE(3583)] = 98111, - [SMALL_STATE(3584)] = 98125, - [SMALL_STATE(3585)] = 98139, - [SMALL_STATE(3586)] = 98153, - [SMALL_STATE(3587)] = 98167, - [SMALL_STATE(3588)] = 98181, - [SMALL_STATE(3589)] = 98195, - [SMALL_STATE(3590)] = 98209, - [SMALL_STATE(3591)] = 98223, - [SMALL_STATE(3592)] = 98237, - [SMALL_STATE(3593)] = 98251, - [SMALL_STATE(3594)] = 98265, - [SMALL_STATE(3595)] = 98279, - [SMALL_STATE(3596)] = 98293, - [SMALL_STATE(3597)] = 98307, - [SMALL_STATE(3598)] = 98321, - [SMALL_STATE(3599)] = 98335, - [SMALL_STATE(3600)] = 98349, - [SMALL_STATE(3601)] = 98363, - [SMALL_STATE(3602)] = 98377, - [SMALL_STATE(3603)] = 98391, - [SMALL_STATE(3604)] = 98405, - [SMALL_STATE(3605)] = 98419, - [SMALL_STATE(3606)] = 98433, - [SMALL_STATE(3607)] = 98447, - [SMALL_STATE(3608)] = 98461, - [SMALL_STATE(3609)] = 98475, - [SMALL_STATE(3610)] = 98489, - [SMALL_STATE(3611)] = 98503, - [SMALL_STATE(3612)] = 98517, - [SMALL_STATE(3613)] = 98531, - [SMALL_STATE(3614)] = 98545, - [SMALL_STATE(3615)] = 98559, - [SMALL_STATE(3616)] = 98573, - [SMALL_STATE(3617)] = 98587, - [SMALL_STATE(3618)] = 98601, - [SMALL_STATE(3619)] = 98615, - [SMALL_STATE(3620)] = 98629, - [SMALL_STATE(3621)] = 98643, - [SMALL_STATE(3622)] = 98657, - [SMALL_STATE(3623)] = 98671, - [SMALL_STATE(3624)] = 98685, - [SMALL_STATE(3625)] = 98699, - [SMALL_STATE(3626)] = 98713, - [SMALL_STATE(3627)] = 98727, - [SMALL_STATE(3628)] = 98741, - [SMALL_STATE(3629)] = 98755, - [SMALL_STATE(3630)] = 98769, - [SMALL_STATE(3631)] = 98783, - [SMALL_STATE(3632)] = 98797, - [SMALL_STATE(3633)] = 98811, - [SMALL_STATE(3634)] = 98825, - [SMALL_STATE(3635)] = 98839, - [SMALL_STATE(3636)] = 98853, - [SMALL_STATE(3637)] = 98867, - [SMALL_STATE(3638)] = 98881, - [SMALL_STATE(3639)] = 98895, - [SMALL_STATE(3640)] = 98909, - [SMALL_STATE(3641)] = 98923, - [SMALL_STATE(3642)] = 98937, - [SMALL_STATE(3643)] = 98951, - [SMALL_STATE(3644)] = 98965, - [SMALL_STATE(3645)] = 98979, - [SMALL_STATE(3646)] = 98993, - [SMALL_STATE(3647)] = 99007, - [SMALL_STATE(3648)] = 99021, - [SMALL_STATE(3649)] = 99035, - [SMALL_STATE(3650)] = 99049, - [SMALL_STATE(3651)] = 99063, - [SMALL_STATE(3652)] = 99077, - [SMALL_STATE(3653)] = 99091, - [SMALL_STATE(3654)] = 99105, - [SMALL_STATE(3655)] = 99119, - [SMALL_STATE(3656)] = 99133, - [SMALL_STATE(3657)] = 99147, - [SMALL_STATE(3658)] = 99161, - [SMALL_STATE(3659)] = 99175, - [SMALL_STATE(3660)] = 99189, - [SMALL_STATE(3661)] = 99203, - [SMALL_STATE(3662)] = 99217, - [SMALL_STATE(3663)] = 99231, - [SMALL_STATE(3664)] = 99245, - [SMALL_STATE(3665)] = 99259, - [SMALL_STATE(3666)] = 99273, - [SMALL_STATE(3667)] = 99287, - [SMALL_STATE(3668)] = 99301, - [SMALL_STATE(3669)] = 99315, - [SMALL_STATE(3670)] = 99329, - [SMALL_STATE(3671)] = 99343, - [SMALL_STATE(3672)] = 99357, - [SMALL_STATE(3673)] = 99371, - [SMALL_STATE(3674)] = 99385, - [SMALL_STATE(3675)] = 99399, - [SMALL_STATE(3676)] = 99413, - [SMALL_STATE(3677)] = 99427, - [SMALL_STATE(3678)] = 99441, - [SMALL_STATE(3679)] = 99455, - [SMALL_STATE(3680)] = 99469, - [SMALL_STATE(3681)] = 99483, - [SMALL_STATE(3682)] = 99497, - [SMALL_STATE(3683)] = 99511, - [SMALL_STATE(3684)] = 99525, - [SMALL_STATE(3685)] = 99539, - [SMALL_STATE(3686)] = 99553, - [SMALL_STATE(3687)] = 99567, - [SMALL_STATE(3688)] = 99581, - [SMALL_STATE(3689)] = 99595, - [SMALL_STATE(3690)] = 99609, - [SMALL_STATE(3691)] = 99623, - [SMALL_STATE(3692)] = 99637, - [SMALL_STATE(3693)] = 99651, - [SMALL_STATE(3694)] = 99665, - [SMALL_STATE(3695)] = 99679, - [SMALL_STATE(3696)] = 99693, - [SMALL_STATE(3697)] = 99707, - [SMALL_STATE(3698)] = 99721, - [SMALL_STATE(3699)] = 99735, - [SMALL_STATE(3700)] = 99749, - [SMALL_STATE(3701)] = 99763, - [SMALL_STATE(3702)] = 99777, - [SMALL_STATE(3703)] = 99791, - [SMALL_STATE(3704)] = 99805, - [SMALL_STATE(3705)] = 99819, - [SMALL_STATE(3706)] = 99833, - [SMALL_STATE(3707)] = 99847, - [SMALL_STATE(3708)] = 99861, - [SMALL_STATE(3709)] = 99875, - [SMALL_STATE(3710)] = 99889, - [SMALL_STATE(3711)] = 99903, - [SMALL_STATE(3712)] = 99917, - [SMALL_STATE(3713)] = 99931, - [SMALL_STATE(3714)] = 99945, - [SMALL_STATE(3715)] = 99959, - [SMALL_STATE(3716)] = 99973, - [SMALL_STATE(3717)] = 99987, - [SMALL_STATE(3718)] = 100001, - [SMALL_STATE(3719)] = 100015, - [SMALL_STATE(3720)] = 100029, - [SMALL_STATE(3721)] = 100043, - [SMALL_STATE(3722)] = 100057, - [SMALL_STATE(3723)] = 100071, - [SMALL_STATE(3724)] = 100085, - [SMALL_STATE(3725)] = 100099, - [SMALL_STATE(3726)] = 100113, - [SMALL_STATE(3727)] = 100127, - [SMALL_STATE(3728)] = 100141, - [SMALL_STATE(3729)] = 100155, - [SMALL_STATE(3730)] = 100169, - [SMALL_STATE(3731)] = 100183, - [SMALL_STATE(3732)] = 100197, - [SMALL_STATE(3733)] = 100211, - [SMALL_STATE(3734)] = 100225, - [SMALL_STATE(3735)] = 100239, - [SMALL_STATE(3736)] = 100253, - [SMALL_STATE(3737)] = 100267, - [SMALL_STATE(3738)] = 100281, - [SMALL_STATE(3739)] = 100295, - [SMALL_STATE(3740)] = 100309, - [SMALL_STATE(3741)] = 100313, - [SMALL_STATE(3742)] = 100317, - [SMALL_STATE(3743)] = 100321, - [SMALL_STATE(3744)] = 100325, - [SMALL_STATE(3745)] = 100329, - [SMALL_STATE(3746)] = 100333, + [SMALL_STATE(1054)] = 0, + [SMALL_STATE(1055)] = 75, + [SMALL_STATE(1056)] = 148, + [SMALL_STATE(1057)] = 219, + [SMALL_STATE(1058)] = 319, + [SMALL_STATE(1059)] = 419, + [SMALL_STATE(1060)] = 519, + [SMALL_STATE(1061)] = 598, + [SMALL_STATE(1062)] = 675, + [SMALL_STATE(1063)] = 752, + [SMALL_STATE(1064)] = 829, + [SMALL_STATE(1065)] = 897, + [SMALL_STATE(1066)] = 961, + [SMALL_STATE(1067)] = 1025, + [SMALL_STATE(1068)] = 1089, + [SMALL_STATE(1069)] = 1153, + [SMALL_STATE(1070)] = 1217, + [SMALL_STATE(1071)] = 1281, + [SMALL_STATE(1072)] = 1345, + [SMALL_STATE(1073)] = 1419, + [SMALL_STATE(1074)] = 1483, + [SMALL_STATE(1075)] = 1547, + [SMALL_STATE(1076)] = 1610, + [SMALL_STATE(1077)] = 1711, + [SMALL_STATE(1078)] = 1812, + [SMALL_STATE(1079)] = 1879, + [SMALL_STATE(1080)] = 1946, + [SMALL_STATE(1081)] = 2013, + [SMALL_STATE(1082)] = 2076, + [SMALL_STATE(1083)] = 2143, + [SMALL_STATE(1084)] = 2206, + [SMALL_STATE(1085)] = 2273, + [SMALL_STATE(1086)] = 2344, + [SMALL_STATE(1087)] = 2415, + [SMALL_STATE(1088)] = 2486, + [SMALL_STATE(1089)] = 2587, + [SMALL_STATE(1090)] = 2650, + [SMALL_STATE(1091)] = 2721, + [SMALL_STATE(1092)] = 2784, + [SMALL_STATE(1093)] = 2846, + [SMALL_STATE(1094)] = 2908, + [SMALL_STATE(1095)] = 2970, + [SMALL_STATE(1096)] = 3034, + [SMALL_STATE(1097)] = 3098, + [SMALL_STATE(1098)] = 3160, + [SMALL_STATE(1099)] = 3222, + [SMALL_STATE(1100)] = 3284, + [SMALL_STATE(1101)] = 3354, + [SMALL_STATE(1102)] = 3422, + [SMALL_STATE(1103)] = 3484, + [SMALL_STATE(1104)] = 3546, + [SMALL_STATE(1105)] = 3621, + [SMALL_STATE(1106)] = 3684, + [SMALL_STATE(1107)] = 3745, + [SMALL_STATE(1108)] = 3808, + [SMALL_STATE(1109)] = 3869, + [SMALL_STATE(1110)] = 3930, + [SMALL_STATE(1111)] = 3993, + [SMALL_STATE(1112)] = 4054, + [SMALL_STATE(1113)] = 4115, + [SMALL_STATE(1114)] = 4176, + [SMALL_STATE(1115)] = 4237, + [SMALL_STATE(1116)] = 4298, + [SMALL_STATE(1117)] = 4391, + [SMALL_STATE(1118)] = 4454, + [SMALL_STATE(1119)] = 4517, + [SMALL_STATE(1120)] = 4580, + [SMALL_STATE(1121)] = 4641, + [SMALL_STATE(1122)] = 4702, + [SMALL_STATE(1123)] = 4795, + [SMALL_STATE(1124)] = 4856, + [SMALL_STATE(1125)] = 4949, + [SMALL_STATE(1126)] = 5010, + [SMALL_STATE(1127)] = 5071, + [SMALL_STATE(1128)] = 5132, + [SMALL_STATE(1129)] = 5195, + [SMALL_STATE(1130)] = 5258, + [SMALL_STATE(1131)] = 5321, + [SMALL_STATE(1132)] = 5384, + [SMALL_STATE(1133)] = 5447, + [SMALL_STATE(1134)] = 5508, + [SMALL_STATE(1135)] = 5573, + [SMALL_STATE(1136)] = 5634, + [SMALL_STATE(1137)] = 5695, + [SMALL_STATE(1138)] = 5756, + [SMALL_STATE(1139)] = 5817, + [SMALL_STATE(1140)] = 5878, + [SMALL_STATE(1141)] = 5939, + [SMALL_STATE(1142)] = 6000, + [SMALL_STATE(1143)] = 6061, + [SMALL_STATE(1144)] = 6122, + [SMALL_STATE(1145)] = 6183, + [SMALL_STATE(1146)] = 6244, + [SMALL_STATE(1147)] = 6305, + [SMALL_STATE(1148)] = 6366, + [SMALL_STATE(1149)] = 6427, + [SMALL_STATE(1150)] = 6488, + [SMALL_STATE(1151)] = 6549, + [SMALL_STATE(1152)] = 6610, + [SMALL_STATE(1153)] = 6671, + [SMALL_STATE(1154)] = 6734, + [SMALL_STATE(1155)] = 6797, + [SMALL_STATE(1156)] = 6860, + [SMALL_STATE(1157)] = 6921, + [SMALL_STATE(1158)] = 6982, + [SMALL_STATE(1159)] = 7043, + [SMALL_STATE(1160)] = 7104, + [SMALL_STATE(1161)] = 7165, + [SMALL_STATE(1162)] = 7226, + [SMALL_STATE(1163)] = 7287, + [SMALL_STATE(1164)] = 7348, + [SMALL_STATE(1165)] = 7409, + [SMALL_STATE(1166)] = 7470, + [SMALL_STATE(1167)] = 7531, + [SMALL_STATE(1168)] = 7592, + [SMALL_STATE(1169)] = 7653, + [SMALL_STATE(1170)] = 7714, + [SMALL_STATE(1171)] = 7775, + [SMALL_STATE(1172)] = 7836, + [SMALL_STATE(1173)] = 7897, + [SMALL_STATE(1174)] = 7958, + [SMALL_STATE(1175)] = 8019, + [SMALL_STATE(1176)] = 8080, + [SMALL_STATE(1177)] = 8141, + [SMALL_STATE(1178)] = 8202, + [SMALL_STATE(1179)] = 8263, + [SMALL_STATE(1180)] = 8324, + [SMALL_STATE(1181)] = 8385, + [SMALL_STATE(1182)] = 8446, + [SMALL_STATE(1183)] = 8507, + [SMALL_STATE(1184)] = 8568, + [SMALL_STATE(1185)] = 8629, + [SMALL_STATE(1186)] = 8690, + [SMALL_STATE(1187)] = 8751, + [SMALL_STATE(1188)] = 8812, + [SMALL_STATE(1189)] = 8873, + [SMALL_STATE(1190)] = 8934, + [SMALL_STATE(1191)] = 8995, + [SMALL_STATE(1192)] = 9056, + [SMALL_STATE(1193)] = 9117, + [SMALL_STATE(1194)] = 9178, + [SMALL_STATE(1195)] = 9241, + [SMALL_STATE(1196)] = 9304, + [SMALL_STATE(1197)] = 9365, + [SMALL_STATE(1198)] = 9426, + [SMALL_STATE(1199)] = 9487, + [SMALL_STATE(1200)] = 9548, + [SMALL_STATE(1201)] = 9609, + [SMALL_STATE(1202)] = 9670, + [SMALL_STATE(1203)] = 9731, + [SMALL_STATE(1204)] = 9792, + [SMALL_STATE(1205)] = 9853, + [SMALL_STATE(1206)] = 9914, + [SMALL_STATE(1207)] = 9975, + [SMALL_STATE(1208)] = 10036, + [SMALL_STATE(1209)] = 10097, + [SMALL_STATE(1210)] = 10158, + [SMALL_STATE(1211)] = 10219, + [SMALL_STATE(1212)] = 10280, + [SMALL_STATE(1213)] = 10341, + [SMALL_STATE(1214)] = 10402, + [SMALL_STATE(1215)] = 10463, + [SMALL_STATE(1216)] = 10524, + [SMALL_STATE(1217)] = 10585, + [SMALL_STATE(1218)] = 10646, + [SMALL_STATE(1219)] = 10707, + [SMALL_STATE(1220)] = 10768, + [SMALL_STATE(1221)] = 10829, + [SMALL_STATE(1222)] = 10890, + [SMALL_STATE(1223)] = 10951, + [SMALL_STATE(1224)] = 11012, + [SMALL_STATE(1225)] = 11073, + [SMALL_STATE(1226)] = 11134, + [SMALL_STATE(1227)] = 11195, + [SMALL_STATE(1228)] = 11256, + [SMALL_STATE(1229)] = 11317, + [SMALL_STATE(1230)] = 11378, + [SMALL_STATE(1231)] = 11439, + [SMALL_STATE(1232)] = 11500, + [SMALL_STATE(1233)] = 11561, + [SMALL_STATE(1234)] = 11622, + [SMALL_STATE(1235)] = 11683, + [SMALL_STATE(1236)] = 11744, + [SMALL_STATE(1237)] = 11805, + [SMALL_STATE(1238)] = 11866, + [SMALL_STATE(1239)] = 11927, + [SMALL_STATE(1240)] = 11988, + [SMALL_STATE(1241)] = 12049, + [SMALL_STATE(1242)] = 12110, + [SMALL_STATE(1243)] = 12171, + [SMALL_STATE(1244)] = 12232, + [SMALL_STATE(1245)] = 12293, + [SMALL_STATE(1246)] = 12354, + [SMALL_STATE(1247)] = 12415, + [SMALL_STATE(1248)] = 12476, + [SMALL_STATE(1249)] = 12537, + [SMALL_STATE(1250)] = 12598, + [SMALL_STATE(1251)] = 12659, + [SMALL_STATE(1252)] = 12720, + [SMALL_STATE(1253)] = 12781, + [SMALL_STATE(1254)] = 12842, + [SMALL_STATE(1255)] = 12903, + [SMALL_STATE(1256)] = 12964, + [SMALL_STATE(1257)] = 13025, + [SMALL_STATE(1258)] = 13086, + [SMALL_STATE(1259)] = 13147, + [SMALL_STATE(1260)] = 13208, + [SMALL_STATE(1261)] = 13269, + [SMALL_STATE(1262)] = 13330, + [SMALL_STATE(1263)] = 13391, + [SMALL_STATE(1264)] = 13452, + [SMALL_STATE(1265)] = 13513, + [SMALL_STATE(1266)] = 13574, + [SMALL_STATE(1267)] = 13635, + [SMALL_STATE(1268)] = 13696, + [SMALL_STATE(1269)] = 13757, + [SMALL_STATE(1270)] = 13818, + [SMALL_STATE(1271)] = 13879, + [SMALL_STATE(1272)] = 13940, + [SMALL_STATE(1273)] = 14001, + [SMALL_STATE(1274)] = 14062, + [SMALL_STATE(1275)] = 14123, + [SMALL_STATE(1276)] = 14184, + [SMALL_STATE(1277)] = 14247, + [SMALL_STATE(1278)] = 14308, + [SMALL_STATE(1279)] = 14369, + [SMALL_STATE(1280)] = 14430, + [SMALL_STATE(1281)] = 14491, + [SMALL_STATE(1282)] = 14552, + [SMALL_STATE(1283)] = 14613, + [SMALL_STATE(1284)] = 14674, + [SMALL_STATE(1285)] = 14735, + [SMALL_STATE(1286)] = 14796, + [SMALL_STATE(1287)] = 14857, + [SMALL_STATE(1288)] = 14918, + [SMALL_STATE(1289)] = 14979, + [SMALL_STATE(1290)] = 15040, + [SMALL_STATE(1291)] = 15101, + [SMALL_STATE(1292)] = 15162, + [SMALL_STATE(1293)] = 15223, + [SMALL_STATE(1294)] = 15284, + [SMALL_STATE(1295)] = 15345, + [SMALL_STATE(1296)] = 15406, + [SMALL_STATE(1297)] = 15467, + [SMALL_STATE(1298)] = 15528, + [SMALL_STATE(1299)] = 15589, + [SMALL_STATE(1300)] = 15650, + [SMALL_STATE(1301)] = 15711, + [SMALL_STATE(1302)] = 15772, + [SMALL_STATE(1303)] = 15833, + [SMALL_STATE(1304)] = 15894, + [SMALL_STATE(1305)] = 15955, + [SMALL_STATE(1306)] = 16016, + [SMALL_STATE(1307)] = 16077, + [SMALL_STATE(1308)] = 16138, + [SMALL_STATE(1309)] = 16199, + [SMALL_STATE(1310)] = 16260, + [SMALL_STATE(1311)] = 16321, + [SMALL_STATE(1312)] = 16382, + [SMALL_STATE(1313)] = 16443, + [SMALL_STATE(1314)] = 16504, + [SMALL_STATE(1315)] = 16565, + [SMALL_STATE(1316)] = 16626, + [SMALL_STATE(1317)] = 16687, + [SMALL_STATE(1318)] = 16748, + [SMALL_STATE(1319)] = 16809, + [SMALL_STATE(1320)] = 16870, + [SMALL_STATE(1321)] = 16931, + [SMALL_STATE(1322)] = 16992, + [SMALL_STATE(1323)] = 17053, + [SMALL_STATE(1324)] = 17114, + [SMALL_STATE(1325)] = 17175, + [SMALL_STATE(1326)] = 17236, + [SMALL_STATE(1327)] = 17297, + [SMALL_STATE(1328)] = 17358, + [SMALL_STATE(1329)] = 17419, + [SMALL_STATE(1330)] = 17480, + [SMALL_STATE(1331)] = 17541, + [SMALL_STATE(1332)] = 17602, + [SMALL_STATE(1333)] = 17663, + [SMALL_STATE(1334)] = 17724, + [SMALL_STATE(1335)] = 17785, + [SMALL_STATE(1336)] = 17846, + [SMALL_STATE(1337)] = 17907, + [SMALL_STATE(1338)] = 17968, + [SMALL_STATE(1339)] = 18029, + [SMALL_STATE(1340)] = 18090, + [SMALL_STATE(1341)] = 18151, + [SMALL_STATE(1342)] = 18212, + [SMALL_STATE(1343)] = 18273, + [SMALL_STATE(1344)] = 18334, + [SMALL_STATE(1345)] = 18395, + [SMALL_STATE(1346)] = 18456, + [SMALL_STATE(1347)] = 18517, + [SMALL_STATE(1348)] = 18578, + [SMALL_STATE(1349)] = 18639, + [SMALL_STATE(1350)] = 18700, + [SMALL_STATE(1351)] = 18761, + [SMALL_STATE(1352)] = 18822, + [SMALL_STATE(1353)] = 18883, + [SMALL_STATE(1354)] = 18944, + [SMALL_STATE(1355)] = 19005, + [SMALL_STATE(1356)] = 19066, + [SMALL_STATE(1357)] = 19127, + [SMALL_STATE(1358)] = 19188, + [SMALL_STATE(1359)] = 19249, + [SMALL_STATE(1360)] = 19310, + [SMALL_STATE(1361)] = 19371, + [SMALL_STATE(1362)] = 19432, + [SMALL_STATE(1363)] = 19493, + [SMALL_STATE(1364)] = 19554, + [SMALL_STATE(1365)] = 19615, + [SMALL_STATE(1366)] = 19676, + [SMALL_STATE(1367)] = 19737, + [SMALL_STATE(1368)] = 19798, + [SMALL_STATE(1369)] = 19859, + [SMALL_STATE(1370)] = 19920, + [SMALL_STATE(1371)] = 19981, + [SMALL_STATE(1372)] = 20042, + [SMALL_STATE(1373)] = 20103, + [SMALL_STATE(1374)] = 20164, + [SMALL_STATE(1375)] = 20225, + [SMALL_STATE(1376)] = 20286, + [SMALL_STATE(1377)] = 20347, + [SMALL_STATE(1378)] = 20408, + [SMALL_STATE(1379)] = 20469, + [SMALL_STATE(1380)] = 20530, + [SMALL_STATE(1381)] = 20591, + [SMALL_STATE(1382)] = 20652, + [SMALL_STATE(1383)] = 20713, + [SMALL_STATE(1384)] = 20774, + [SMALL_STATE(1385)] = 20835, + [SMALL_STATE(1386)] = 20896, + [SMALL_STATE(1387)] = 20957, + [SMALL_STATE(1388)] = 21018, + [SMALL_STATE(1389)] = 21079, + [SMALL_STATE(1390)] = 21140, + [SMALL_STATE(1391)] = 21201, + [SMALL_STATE(1392)] = 21262, + [SMALL_STATE(1393)] = 21323, + [SMALL_STATE(1394)] = 21384, + [SMALL_STATE(1395)] = 21445, + [SMALL_STATE(1396)] = 21506, + [SMALL_STATE(1397)] = 21567, + [SMALL_STATE(1398)] = 21628, + [SMALL_STATE(1399)] = 21689, + [SMALL_STATE(1400)] = 21750, + [SMALL_STATE(1401)] = 21811, + [SMALL_STATE(1402)] = 21872, + [SMALL_STATE(1403)] = 21933, + [SMALL_STATE(1404)] = 21994, + [SMALL_STATE(1405)] = 22055, + [SMALL_STATE(1406)] = 22116, + [SMALL_STATE(1407)] = 22177, + [SMALL_STATE(1408)] = 22238, + [SMALL_STATE(1409)] = 22299, + [SMALL_STATE(1410)] = 22364, + [SMALL_STATE(1411)] = 22425, + [SMALL_STATE(1412)] = 22486, + [SMALL_STATE(1413)] = 22547, + [SMALL_STATE(1414)] = 22608, + [SMALL_STATE(1415)] = 22669, + [SMALL_STATE(1416)] = 22730, + [SMALL_STATE(1417)] = 22795, + [SMALL_STATE(1418)] = 22870, + [SMALL_STATE(1419)] = 22933, + [SMALL_STATE(1420)] = 22994, + [SMALL_STATE(1421)] = 23068, + [SMALL_STATE(1422)] = 23128, + [SMALL_STATE(1423)] = 23188, + [SMALL_STATE(1424)] = 23248, + [SMALL_STATE(1425)] = 23308, + [SMALL_STATE(1426)] = 23368, + [SMALL_STATE(1427)] = 23428, + [SMALL_STATE(1428)] = 23488, + [SMALL_STATE(1429)] = 23548, + [SMALL_STATE(1430)] = 23608, + [SMALL_STATE(1431)] = 23670, + [SMALL_STATE(1432)] = 23730, + [SMALL_STATE(1433)] = 23790, + [SMALL_STATE(1434)] = 23850, + [SMALL_STATE(1435)] = 23916, + [SMALL_STATE(1436)] = 23976, + [SMALL_STATE(1437)] = 24036, + [SMALL_STATE(1438)] = 24096, + [SMALL_STATE(1439)] = 24162, + [SMALL_STATE(1440)] = 24222, + [SMALL_STATE(1441)] = 24282, + [SMALL_STATE(1442)] = 24342, + [SMALL_STATE(1443)] = 24402, + [SMALL_STATE(1444)] = 24462, + [SMALL_STATE(1445)] = 24522, + [SMALL_STATE(1446)] = 24582, + [SMALL_STATE(1447)] = 24642, + [SMALL_STATE(1448)] = 24708, + [SMALL_STATE(1449)] = 24768, + [SMALL_STATE(1450)] = 24828, + [SMALL_STATE(1451)] = 24888, + [SMALL_STATE(1452)] = 24948, + [SMALL_STATE(1453)] = 25008, + [SMALL_STATE(1454)] = 25068, + [SMALL_STATE(1455)] = 25128, + [SMALL_STATE(1456)] = 25188, + [SMALL_STATE(1457)] = 25248, + [SMALL_STATE(1458)] = 25308, + [SMALL_STATE(1459)] = 25368, + [SMALL_STATE(1460)] = 25428, + [SMALL_STATE(1461)] = 25488, + [SMALL_STATE(1462)] = 25548, + [SMALL_STATE(1463)] = 25608, + [SMALL_STATE(1464)] = 25668, + [SMALL_STATE(1465)] = 25728, + [SMALL_STATE(1466)] = 25788, + [SMALL_STATE(1467)] = 25848, + [SMALL_STATE(1468)] = 25908, + [SMALL_STATE(1469)] = 25968, + [SMALL_STATE(1470)] = 26028, + [SMALL_STATE(1471)] = 26088, + [SMALL_STATE(1472)] = 26148, + [SMALL_STATE(1473)] = 26208, + [SMALL_STATE(1474)] = 26268, + [SMALL_STATE(1475)] = 26328, + [SMALL_STATE(1476)] = 26388, + [SMALL_STATE(1477)] = 26448, + [SMALL_STATE(1478)] = 26508, + [SMALL_STATE(1479)] = 26568, + [SMALL_STATE(1480)] = 26628, + [SMALL_STATE(1481)] = 26688, + [SMALL_STATE(1482)] = 26748, + [SMALL_STATE(1483)] = 26844, + [SMALL_STATE(1484)] = 26904, + [SMALL_STATE(1485)] = 26964, + [SMALL_STATE(1486)] = 27024, + [SMALL_STATE(1487)] = 27084, + [SMALL_STATE(1488)] = 27144, + [SMALL_STATE(1489)] = 27206, + [SMALL_STATE(1490)] = 27266, + [SMALL_STATE(1491)] = 27326, + [SMALL_STATE(1492)] = 27386, + [SMALL_STATE(1493)] = 27446, + [SMALL_STATE(1494)] = 27506, + [SMALL_STATE(1495)] = 27566, + [SMALL_STATE(1496)] = 27634, + [SMALL_STATE(1497)] = 27694, + [SMALL_STATE(1498)] = 27754, + [SMALL_STATE(1499)] = 27814, + [SMALL_STATE(1500)] = 27874, + [SMALL_STATE(1501)] = 27934, + [SMALL_STATE(1502)] = 27994, + [SMALL_STATE(1503)] = 28054, + [SMALL_STATE(1504)] = 28114, + [SMALL_STATE(1505)] = 28174, + [SMALL_STATE(1506)] = 28234, + [SMALL_STATE(1507)] = 28294, + [SMALL_STATE(1508)] = 28354, + [SMALL_STATE(1509)] = 28418, + [SMALL_STATE(1510)] = 28478, + [SMALL_STATE(1511)] = 28538, + [SMALL_STATE(1512)] = 28598, + [SMALL_STATE(1513)] = 28658, + [SMALL_STATE(1514)] = 28718, + [SMALL_STATE(1515)] = 28778, + [SMALL_STATE(1516)] = 28838, + [SMALL_STATE(1517)] = 28898, + [SMALL_STATE(1518)] = 28958, + [SMALL_STATE(1519)] = 29018, + [SMALL_STATE(1520)] = 29078, + [SMALL_STATE(1521)] = 29138, + [SMALL_STATE(1522)] = 29198, + [SMALL_STATE(1523)] = 29258, + [SMALL_STATE(1524)] = 29318, + [SMALL_STATE(1525)] = 29378, + [SMALL_STATE(1526)] = 29438, + [SMALL_STATE(1527)] = 29498, + [SMALL_STATE(1528)] = 29558, + [SMALL_STATE(1529)] = 29618, + [SMALL_STATE(1530)] = 29678, + [SMALL_STATE(1531)] = 29738, + [SMALL_STATE(1532)] = 29802, + [SMALL_STATE(1533)] = 29862, + [SMALL_STATE(1534)] = 29922, + [SMALL_STATE(1535)] = 29982, + [SMALL_STATE(1536)] = 30042, + [SMALL_STATE(1537)] = 30102, + [SMALL_STATE(1538)] = 30162, + [SMALL_STATE(1539)] = 30228, + [SMALL_STATE(1540)] = 30288, + [SMALL_STATE(1541)] = 30387, + [SMALL_STATE(1542)] = 30486, + [SMALL_STATE(1543)] = 30555, + [SMALL_STATE(1544)] = 30626, + [SMALL_STATE(1545)] = 30687, + [SMALL_STATE(1546)] = 30748, + [SMALL_STATE(1547)] = 30847, + [SMALL_STATE(1548)] = 30946, + [SMALL_STATE(1549)] = 31016, + [SMALL_STATE(1550)] = 31098, + [SMALL_STATE(1551)] = 31182, + [SMALL_STATE(1552)] = 31272, + [SMALL_STATE(1553)] = 31342, + [SMALL_STATE(1554)] = 31412, + [SMALL_STATE(1555)] = 31482, + [SMALL_STATE(1556)] = 31572, + [SMALL_STATE(1557)] = 31630, + [SMALL_STATE(1558)] = 31720, + [SMALL_STATE(1559)] = 31798, + [SMALL_STATE(1560)] = 31856, + [SMALL_STATE(1561)] = 31948, + [SMALL_STATE(1562)] = 32006, + [SMALL_STATE(1563)] = 32066, + [SMALL_STATE(1564)] = 32156, + [SMALL_STATE(1565)] = 32222, + [SMALL_STATE(1566)] = 32308, + [SMALL_STATE(1567)] = 32394, + [SMALL_STATE(1568)] = 32480, + [SMALL_STATE(1569)] = 32570, + [SMALL_STATE(1570)] = 32656, + [SMALL_STATE(1571)] = 32742, + [SMALL_STATE(1572)] = 32828, + [SMALL_STATE(1573)] = 32920, + [SMALL_STATE(1574)] = 33010, + [SMALL_STATE(1575)] = 33102, + [SMALL_STATE(1576)] = 33188, + [SMALL_STATE(1577)] = 33256, + [SMALL_STATE(1578)] = 33342, + [SMALL_STATE(1579)] = 33416, + [SMALL_STATE(1580)] = 33488, + [SMALL_STATE(1581)] = 33564, + [SMALL_STATE(1582)] = 33624, + [SMALL_STATE(1583)] = 33687, + [SMALL_STATE(1584)] = 33752, + [SMALL_STATE(1585)] = 33819, + [SMALL_STATE(1586)] = 33882, + [SMALL_STATE(1587)] = 33942, + [SMALL_STATE(1588)] = 34000, + [SMALL_STATE(1589)] = 34058, + [SMALL_STATE(1590)] = 34118, + [SMALL_STATE(1591)] = 34176, + [SMALL_STATE(1592)] = 34236, + [SMALL_STATE(1593)] = 34292, + [SMALL_STATE(1594)] = 34348, + [SMALL_STATE(1595)] = 34408, + [SMALL_STATE(1596)] = 34468, + [SMALL_STATE(1597)] = 34528, + [SMALL_STATE(1598)] = 34592, + [SMALL_STATE(1599)] = 34656, + [SMALL_STATE(1600)] = 34712, + [SMALL_STATE(1601)] = 34776, + [SMALL_STATE(1602)] = 34836, + [SMALL_STATE(1603)] = 34894, + [SMALL_STATE(1604)] = 34958, + [SMALL_STATE(1605)] = 35014, + [SMALL_STATE(1606)] = 35103, + [SMALL_STATE(1607)] = 35162, + [SMALL_STATE(1608)] = 35251, + [SMALL_STATE(1609)] = 35308, + [SMALL_STATE(1610)] = 35365, + [SMALL_STATE(1611)] = 35460, + [SMALL_STATE(1612)] = 35515, + [SMALL_STATE(1613)] = 35570, + [SMALL_STATE(1614)] = 35625, + [SMALL_STATE(1615)] = 35720, + [SMALL_STATE(1616)] = 35779, + [SMALL_STATE(1617)] = 35836, + [SMALL_STATE(1618)] = 35891, + [SMALL_STATE(1619)] = 35946, + [SMALL_STATE(1620)] = 36041, + [SMALL_STATE(1621)] = 36100, + [SMALL_STATE(1622)] = 36155, + [SMALL_STATE(1623)] = 36250, + [SMALL_STATE(1624)] = 36309, + [SMALL_STATE(1625)] = 36404, + [SMALL_STATE(1626)] = 36499, + [SMALL_STATE(1627)] = 36594, + [SMALL_STATE(1628)] = 36689, + [SMALL_STATE(1629)] = 36784, + [SMALL_STATE(1630)] = 36879, + [SMALL_STATE(1631)] = 36936, + [SMALL_STATE(1632)] = 36993, + [SMALL_STATE(1633)] = 37048, + [SMALL_STATE(1634)] = 37105, + [SMALL_STATE(1635)] = 37194, + [SMALL_STATE(1636)] = 37249, + [SMALL_STATE(1637)] = 37306, + [SMALL_STATE(1638)] = 37401, + [SMALL_STATE(1639)] = 37490, + [SMALL_STATE(1640)] = 37585, + [SMALL_STATE(1641)] = 37641, + [SMALL_STATE(1642)] = 37695, + [SMALL_STATE(1643)] = 37749, + [SMALL_STATE(1644)] = 37803, + [SMALL_STATE(1645)] = 37857, + [SMALL_STATE(1646)] = 37915, + [SMALL_STATE(1647)] = 37969, + [SMALL_STATE(1648)] = 38051, + [SMALL_STATE(1649)] = 38137, + [SMALL_STATE(1650)] = 38223, + [SMALL_STATE(1651)] = 38309, + [SMALL_STATE(1652)] = 38363, + [SMALL_STATE(1653)] = 38417, + [SMALL_STATE(1654)] = 38473, + [SMALL_STATE(1655)] = 38565, + [SMALL_STATE(1656)] = 38657, + [SMALL_STATE(1657)] = 38737, + [SMALL_STATE(1658)] = 38793, + [SMALL_STATE(1659)] = 38885, + [SMALL_STATE(1660)] = 38939, + [SMALL_STATE(1661)] = 38995, + [SMALL_STATE(1662)] = 39049, + [SMALL_STATE(1663)] = 39105, + [SMALL_STATE(1664)] = 39177, + [SMALL_STATE(1665)] = 39269, + [SMALL_STATE(1666)] = 39355, + [SMALL_STATE(1667)] = 39411, + [SMALL_STATE(1668)] = 39489, + [SMALL_STATE(1669)] = 39557, + [SMALL_STATE(1670)] = 39613, + [SMALL_STATE(1671)] = 39679, + [SMALL_STATE(1672)] = 39735, + [SMALL_STATE(1673)] = 39823, + [SMALL_STATE(1674)] = 39879, + [SMALL_STATE(1675)] = 39971, + [SMALL_STATE(1676)] = 40059, + [SMALL_STATE(1677)] = 40115, + [SMALL_STATE(1678)] = 40203, + [SMALL_STATE(1679)] = 40291, + [SMALL_STATE(1680)] = 40347, + [SMALL_STATE(1681)] = 40433, + [SMALL_STATE(1682)] = 40525, + [SMALL_STATE(1683)] = 40589, + [SMALL_STATE(1684)] = 40643, + [SMALL_STATE(1685)] = 40729, + [SMALL_STATE(1686)] = 40783, + [SMALL_STATE(1687)] = 40837, + [SMALL_STATE(1688)] = 40911, + [SMALL_STATE(1689)] = 40999, + [SMALL_STATE(1690)] = 41055, + [SMALL_STATE(1691)] = 41109, + [SMALL_STATE(1692)] = 41163, + [SMALL_STATE(1693)] = 41217, + [SMALL_STATE(1694)] = 41287, + [SMALL_STATE(1695)] = 41341, + [SMALL_STATE(1696)] = 41397, + [SMALL_STATE(1697)] = 41453, + [SMALL_STATE(1698)] = 41509, + [SMALL_STATE(1699)] = 41565, + [SMALL_STATE(1700)] = 41647, + [SMALL_STATE(1701)] = 41727, + [SMALL_STATE(1702)] = 41816, + [SMALL_STATE(1703)] = 41869, + [SMALL_STATE(1704)] = 41922, + [SMALL_STATE(1705)] = 41975, + [SMALL_STATE(1706)] = 42062, + [SMALL_STATE(1707)] = 42115, + [SMALL_STATE(1708)] = 42202, + [SMALL_STATE(1709)] = 42289, + [SMALL_STATE(1710)] = 42342, + [SMALL_STATE(1711)] = 42395, + [SMALL_STATE(1712)] = 42448, + [SMALL_STATE(1713)] = 42501, + [SMALL_STATE(1714)] = 42554, + [SMALL_STATE(1715)] = 42607, + [SMALL_STATE(1716)] = 42660, + [SMALL_STATE(1717)] = 42713, + [SMALL_STATE(1718)] = 42766, + [SMALL_STATE(1719)] = 42819, + [SMALL_STATE(1720)] = 42878, + [SMALL_STATE(1721)] = 42931, + [SMALL_STATE(1722)] = 42984, + [SMALL_STATE(1723)] = 43043, + [SMALL_STATE(1724)] = 43128, + [SMALL_STATE(1725)] = 43215, + [SMALL_STATE(1726)] = 43276, + [SMALL_STATE(1727)] = 43363, + [SMALL_STATE(1728)] = 43426, + [SMALL_STATE(1729)] = 43495, + [SMALL_STATE(1730)] = 43562, + [SMALL_STATE(1731)] = 43633, + [SMALL_STATE(1732)] = 43710, + [SMALL_STATE(1733)] = 43789, + [SMALL_STATE(1734)] = 43854, + [SMALL_STATE(1735)] = 43939, + [SMALL_STATE(1736)] = 44024, + [SMALL_STATE(1737)] = 44097, + [SMALL_STATE(1738)] = 44178, + [SMALL_STATE(1739)] = 44267, + [SMALL_STATE(1740)] = 44356, + [SMALL_STATE(1741)] = 44409, + [SMALL_STATE(1742)] = 44462, + [SMALL_STATE(1743)] = 44543, + [SMALL_STATE(1744)] = 44596, + [SMALL_STATE(1745)] = 44685, + [SMALL_STATE(1746)] = 44738, + [SMALL_STATE(1747)] = 44791, + [SMALL_STATE(1748)] = 44844, + [SMALL_STATE(1749)] = 44931, + [SMALL_STATE(1750)] = 44984, + [SMALL_STATE(1751)] = 45069, + [SMALL_STATE(1752)] = 45122, + [SMALL_STATE(1753)] = 45175, + [SMALL_STATE(1754)] = 45228, + [SMALL_STATE(1755)] = 45281, + [SMALL_STATE(1756)] = 45334, + [SMALL_STATE(1757)] = 45387, + [SMALL_STATE(1758)] = 45440, + [SMALL_STATE(1759)] = 45493, + [SMALL_STATE(1760)] = 45580, + [SMALL_STATE(1761)] = 45633, + [SMALL_STATE(1762)] = 45686, + [SMALL_STATE(1763)] = 45739, + [SMALL_STATE(1764)] = 45824, + [SMALL_STATE(1765)] = 45883, + [SMALL_STATE(1766)] = 45936, + [SMALL_STATE(1767)] = 45989, + [SMALL_STATE(1768)] = 46042, + [SMALL_STATE(1769)] = 46095, + [SMALL_STATE(1770)] = 46148, + [SMALL_STATE(1771)] = 46201, + [SMALL_STATE(1772)] = 46254, + [SMALL_STATE(1773)] = 46343, + [SMALL_STATE(1774)] = 46396, + [SMALL_STATE(1775)] = 46449, + [SMALL_STATE(1776)] = 46502, + [SMALL_STATE(1777)] = 46587, + [SMALL_STATE(1778)] = 46640, + [SMALL_STATE(1779)] = 46693, + [SMALL_STATE(1780)] = 46746, + [SMALL_STATE(1781)] = 46799, + [SMALL_STATE(1782)] = 46852, + [SMALL_STATE(1783)] = 46905, + [SMALL_STATE(1784)] = 46990, + [SMALL_STATE(1785)] = 47077, + [SMALL_STATE(1786)] = 47166, + [SMALL_STATE(1787)] = 47219, + [SMALL_STATE(1788)] = 47272, + [SMALL_STATE(1789)] = 47357, + [SMALL_STATE(1790)] = 47410, + [SMALL_STATE(1791)] = 47463, + [SMALL_STATE(1792)] = 47516, + [SMALL_STATE(1793)] = 47603, + [SMALL_STATE(1794)] = 47656, + [SMALL_STATE(1795)] = 47719, + [SMALL_STATE(1796)] = 47788, + [SMALL_STATE(1797)] = 47855, + [SMALL_STATE(1798)] = 47926, + [SMALL_STATE(1799)] = 48003, + [SMALL_STATE(1800)] = 48082, + [SMALL_STATE(1801)] = 48147, + [SMALL_STATE(1802)] = 48232, + [SMALL_STATE(1803)] = 48317, + [SMALL_STATE(1804)] = 48390, + [SMALL_STATE(1805)] = 48471, + [SMALL_STATE(1806)] = 48524, + [SMALL_STATE(1807)] = 48577, + [SMALL_STATE(1808)] = 48630, + [SMALL_STATE(1809)] = 48683, + [SMALL_STATE(1810)] = 48770, + [SMALL_STATE(1811)] = 48823, + [SMALL_STATE(1812)] = 48876, + [SMALL_STATE(1813)] = 48929, + [SMALL_STATE(1814)] = 48982, + [SMALL_STATE(1815)] = 49035, + [SMALL_STATE(1816)] = 49088, + [SMALL_STATE(1817)] = 49141, + [SMALL_STATE(1818)] = 49194, + [SMALL_STATE(1819)] = 49247, + [SMALL_STATE(1820)] = 49300, + [SMALL_STATE(1821)] = 49353, + [SMALL_STATE(1822)] = 49406, + [SMALL_STATE(1823)] = 49459, + [SMALL_STATE(1824)] = 49512, + [SMALL_STATE(1825)] = 49599, + [SMALL_STATE(1826)] = 49652, + [SMALL_STATE(1827)] = 49705, + [SMALL_STATE(1828)] = 49794, + [SMALL_STATE(1829)] = 49881, + [SMALL_STATE(1830)] = 49934, + [SMALL_STATE(1831)] = 49987, + [SMALL_STATE(1832)] = 50074, + [SMALL_STATE(1833)] = 50127, + [SMALL_STATE(1834)] = 50180, + [SMALL_STATE(1835)] = 50233, + [SMALL_STATE(1836)] = 50286, + [SMALL_STATE(1837)] = 50339, + [SMALL_STATE(1838)] = 50392, + [SMALL_STATE(1839)] = 50445, + [SMALL_STATE(1840)] = 50498, + [SMALL_STATE(1841)] = 50551, + [SMALL_STATE(1842)] = 50604, + [SMALL_STATE(1843)] = 50657, + [SMALL_STATE(1844)] = 50746, + [SMALL_STATE(1845)] = 50799, + [SMALL_STATE(1846)] = 50888, + [SMALL_STATE(1847)] = 50941, + [SMALL_STATE(1848)] = 50994, + [SMALL_STATE(1849)] = 51081, + [SMALL_STATE(1850)] = 51170, + [SMALL_STATE(1851)] = 51229, + [SMALL_STATE(1852)] = 51316, + [SMALL_STATE(1853)] = 51405, + [SMALL_STATE(1854)] = 51494, + [SMALL_STATE(1855)] = 51571, + [SMALL_STATE(1856)] = 51658, + [SMALL_STATE(1857)] = 51711, + [SMALL_STATE(1858)] = 51800, + [SMALL_STATE(1859)] = 51853, + [SMALL_STATE(1860)] = 51942, + [SMALL_STATE(1861)] = 52031, + [SMALL_STATE(1862)] = 52120, + [SMALL_STATE(1863)] = 52209, + [SMALL_STATE(1864)] = 52298, + [SMALL_STATE(1865)] = 52387, + [SMALL_STATE(1866)] = 52476, + [SMALL_STATE(1867)] = 52565, + [SMALL_STATE(1868)] = 52654, + [SMALL_STATE(1869)] = 52735, + [SMALL_STATE(1870)] = 52820, + [SMALL_STATE(1871)] = 52909, + [SMALL_STATE(1872)] = 52994, + [SMALL_STATE(1873)] = 53079, + [SMALL_STATE(1874)] = 53168, + [SMALL_STATE(1875)] = 53257, + [SMALL_STATE(1876)] = 53346, + [SMALL_STATE(1877)] = 53423, + [SMALL_STATE(1878)] = 53512, + [SMALL_STATE(1879)] = 53601, + [SMALL_STATE(1880)] = 53690, + [SMALL_STATE(1881)] = 53779, + [SMALL_STATE(1882)] = 53868, + [SMALL_STATE(1883)] = 53921, + [SMALL_STATE(1884)] = 54010, + [SMALL_STATE(1885)] = 54099, + [SMALL_STATE(1886)] = 54188, + [SMALL_STATE(1887)] = 54241, + [SMALL_STATE(1888)] = 54330, + [SMALL_STATE(1889)] = 54419, + [SMALL_STATE(1890)] = 54508, + [SMALL_STATE(1891)] = 54597, + [SMALL_STATE(1892)] = 54686, + [SMALL_STATE(1893)] = 54775, + [SMALL_STATE(1894)] = 54864, + [SMALL_STATE(1895)] = 54953, + [SMALL_STATE(1896)] = 55042, + [SMALL_STATE(1897)] = 55131, + [SMALL_STATE(1898)] = 55220, + [SMALL_STATE(1899)] = 55309, + [SMALL_STATE(1900)] = 55396, + [SMALL_STATE(1901)] = 55483, + [SMALL_STATE(1902)] = 55570, + [SMALL_STATE(1903)] = 55623, + [SMALL_STATE(1904)] = 55676, + [SMALL_STATE(1905)] = 55729, + [SMALL_STATE(1906)] = 55782, + [SMALL_STATE(1907)] = 55835, + [SMALL_STATE(1908)] = 55920, + [SMALL_STATE(1909)] = 55973, + [SMALL_STATE(1910)] = 56026, + [SMALL_STATE(1911)] = 56115, + [SMALL_STATE(1912)] = 56168, + [SMALL_STATE(1913)] = 56257, + [SMALL_STATE(1914)] = 56310, + [SMALL_STATE(1915)] = 56399, + [SMALL_STATE(1916)] = 56488, + [SMALL_STATE(1917)] = 56541, + [SMALL_STATE(1918)] = 56627, + [SMALL_STATE(1919)] = 56713, + [SMALL_STATE(1920)] = 56787, + [SMALL_STATE(1921)] = 56873, + [SMALL_STATE(1922)] = 56959, + [SMALL_STATE(1923)] = 57045, + [SMALL_STATE(1924)] = 57129, + [SMALL_STATE(1925)] = 57215, + [SMALL_STATE(1926)] = 57301, + [SMALL_STATE(1927)] = 57387, + [SMALL_STATE(1928)] = 57473, + [SMALL_STATE(1929)] = 57559, + [SMALL_STATE(1930)] = 57645, + [SMALL_STATE(1931)] = 57719, + [SMALL_STATE(1932)] = 57805, + [SMALL_STATE(1933)] = 57891, + [SMALL_STATE(1934)] = 57977, + [SMALL_STATE(1935)] = 58061, + [SMALL_STATE(1936)] = 58147, + [SMALL_STATE(1937)] = 58221, + [SMALL_STATE(1938)] = 58307, + [SMALL_STATE(1939)] = 58393, + [SMALL_STATE(1940)] = 58479, + [SMALL_STATE(1941)] = 58565, + [SMALL_STATE(1942)] = 58651, + [SMALL_STATE(1943)] = 58737, + [SMALL_STATE(1944)] = 58823, + [SMALL_STATE(1945)] = 58909, + [SMALL_STATE(1946)] = 58995, + [SMALL_STATE(1947)] = 59081, + [SMALL_STATE(1948)] = 59167, + [SMALL_STATE(1949)] = 59253, + [SMALL_STATE(1950)] = 59327, + [SMALL_STATE(1951)] = 59413, + [SMALL_STATE(1952)] = 59499, + [SMALL_STATE(1953)] = 59585, + [SMALL_STATE(1954)] = 59659, + [SMALL_STATE(1955)] = 59734, + [SMALL_STATE(1956)] = 59809, + [SMALL_STATE(1957)] = 59884, + [SMALL_STATE(1958)] = 59959, + [SMALL_STATE(1959)] = 60034, + [SMALL_STATE(1960)] = 60109, + [SMALL_STATE(1961)] = 60184, + [SMALL_STATE(1962)] = 60259, + [SMALL_STATE(1963)] = 60306, + [SMALL_STATE(1964)] = 60353, + [SMALL_STATE(1965)] = 60400, + [SMALL_STATE(1966)] = 60462, + [SMALL_STATE(1967)] = 60524, + [SMALL_STATE(1968)] = 60586, + [SMALL_STATE(1969)] = 60648, + [SMALL_STATE(1970)] = 60710, + [SMALL_STATE(1971)] = 60772, + [SMALL_STATE(1972)] = 60834, + [SMALL_STATE(1973)] = 60896, + [SMALL_STATE(1974)] = 60958, + [SMALL_STATE(1975)] = 61017, + [SMALL_STATE(1976)] = 61076, + [SMALL_STATE(1977)] = 61112, + [SMALL_STATE(1978)] = 61148, + [SMALL_STATE(1979)] = 61185, + [SMALL_STATE(1980)] = 61222, + [SMALL_STATE(1981)] = 61259, + [SMALL_STATE(1982)] = 61296, + [SMALL_STATE(1983)] = 61349, + [SMALL_STATE(1984)] = 61393, + [SMALL_STATE(1985)] = 61427, + [SMALL_STATE(1986)] = 61461, + [SMALL_STATE(1987)] = 61495, + [SMALL_STATE(1988)] = 61531, + [SMALL_STATE(1989)] = 61567, + [SMALL_STATE(1990)] = 61603, + [SMALL_STATE(1991)] = 61639, + [SMALL_STATE(1992)] = 61683, + [SMALL_STATE(1993)] = 61717, + [SMALL_STATE(1994)] = 61761, + [SMALL_STATE(1995)] = 61812, + [SMALL_STATE(1996)] = 61845, + [SMALL_STATE(1997)] = 61878, + [SMALL_STATE(1998)] = 61911, + [SMALL_STATE(1999)] = 61942, + [SMALL_STATE(2000)] = 61983, + [SMALL_STATE(2001)] = 62016, + [SMALL_STATE(2002)] = 62060, + [SMALL_STATE(2003)] = 62120, + [SMALL_STATE(2004)] = 62152, + [SMALL_STATE(2005)] = 62198, + [SMALL_STATE(2006)] = 62258, + [SMALL_STATE(2007)] = 62290, + [SMALL_STATE(2008)] = 62328, + [SMALL_STATE(2009)] = 62360, + [SMALL_STATE(2010)] = 62398, + [SMALL_STATE(2011)] = 62436, + [SMALL_STATE(2012)] = 62474, + [SMALL_STATE(2013)] = 62503, + [SMALL_STATE(2014)] = 62534, + [SMALL_STATE(2015)] = 62589, + [SMALL_STATE(2016)] = 62622, + [SMALL_STATE(2017)] = 62651, + [SMALL_STATE(2018)] = 62704, + [SMALL_STATE(2019)] = 62733, + [SMALL_STATE(2020)] = 62766, + [SMALL_STATE(2021)] = 62795, + [SMALL_STATE(2022)] = 62828, + [SMALL_STATE(2023)] = 62857, + [SMALL_STATE(2024)] = 62886, + [SMALL_STATE(2025)] = 62919, + [SMALL_STATE(2026)] = 62948, + [SMALL_STATE(2027)] = 62981, + [SMALL_STATE(2028)] = 63010, + [SMALL_STATE(2029)] = 63053, + [SMALL_STATE(2030)] = 63106, + [SMALL_STATE(2031)] = 63135, + [SMALL_STATE(2032)] = 63168, + [SMALL_STATE(2033)] = 63209, + [SMALL_STATE(2034)] = 63237, + [SMALL_STATE(2035)] = 63265, + [SMALL_STATE(2036)] = 63293, + [SMALL_STATE(2037)] = 63321, + [SMALL_STATE(2038)] = 63349, + [SMALL_STATE(2039)] = 63377, + [SMALL_STATE(2040)] = 63405, + [SMALL_STATE(2041)] = 63433, + [SMALL_STATE(2042)] = 63463, + [SMALL_STATE(2043)] = 63491, + [SMALL_STATE(2044)] = 63519, + [SMALL_STATE(2045)] = 63547, + [SMALL_STATE(2046)] = 63575, + [SMALL_STATE(2047)] = 63603, + [SMALL_STATE(2048)] = 63631, + [SMALL_STATE(2049)] = 63659, + [SMALL_STATE(2050)] = 63703, + [SMALL_STATE(2051)] = 63731, + [SMALL_STATE(2052)] = 63759, + [SMALL_STATE(2053)] = 63787, + [SMALL_STATE(2054)] = 63815, + [SMALL_STATE(2055)] = 63843, + [SMALL_STATE(2056)] = 63873, + [SMALL_STATE(2057)] = 63901, + [SMALL_STATE(2058)] = 63929, + [SMALL_STATE(2059)] = 63957, + [SMALL_STATE(2060)] = 63985, + [SMALL_STATE(2061)] = 64013, + [SMALL_STATE(2062)] = 64041, + [SMALL_STATE(2063)] = 64069, + [SMALL_STATE(2064)] = 64097, + [SMALL_STATE(2065)] = 64125, + [SMALL_STATE(2066)] = 64153, + [SMALL_STATE(2067)] = 64181, + [SMALL_STATE(2068)] = 64209, + [SMALL_STATE(2069)] = 64237, + [SMALL_STATE(2070)] = 64265, + [SMALL_STATE(2071)] = 64293, + [SMALL_STATE(2072)] = 64322, + [SMALL_STATE(2073)] = 64351, + [SMALL_STATE(2074)] = 64382, + [SMALL_STATE(2075)] = 64411, + [SMALL_STATE(2076)] = 64440, + [SMALL_STATE(2077)] = 64469, + [SMALL_STATE(2078)] = 64498, + [SMALL_STATE(2079)] = 64533, + [SMALL_STATE(2080)] = 64562, + [SMALL_STATE(2081)] = 64591, + [SMALL_STATE(2082)] = 64620, + [SMALL_STATE(2083)] = 64649, + [SMALL_STATE(2084)] = 64681, + [SMALL_STATE(2085)] = 64727, + [SMALL_STATE(2086)] = 64759, + [SMALL_STATE(2087)] = 64791, + [SMALL_STATE(2088)] = 64821, + [SMALL_STATE(2089)] = 64853, + [SMALL_STATE(2090)] = 64885, + [SMALL_STATE(2091)] = 64917, + [SMALL_STATE(2092)] = 64949, + [SMALL_STATE(2093)] = 64981, + [SMALL_STATE(2094)] = 65013, + [SMALL_STATE(2095)] = 65045, + [SMALL_STATE(2096)] = 65077, + [SMALL_STATE(2097)] = 65105, + [SMALL_STATE(2098)] = 65149, + [SMALL_STATE(2099)] = 65181, + [SMALL_STATE(2100)] = 65210, + [SMALL_STATE(2101)] = 65253, + [SMALL_STATE(2102)] = 65290, + [SMALL_STATE(2103)] = 65319, + [SMALL_STATE(2104)] = 65362, + [SMALL_STATE(2105)] = 65405, + [SMALL_STATE(2106)] = 65448, + [SMALL_STATE(2107)] = 65491, + [SMALL_STATE(2108)] = 65534, + [SMALL_STATE(2109)] = 65562, + [SMALL_STATE(2110)] = 65590, + [SMALL_STATE(2111)] = 65614, + [SMALL_STATE(2112)] = 65648, + [SMALL_STATE(2113)] = 65676, + [SMALL_STATE(2114)] = 65716, + [SMALL_STATE(2115)] = 65756, + [SMALL_STATE(2116)] = 65794, + [SMALL_STATE(2117)] = 65822, + [SMALL_STATE(2118)] = 65862, + [SMALL_STATE(2119)] = 65900, + [SMALL_STATE(2120)] = 65940, + [SMALL_STATE(2121)] = 65978, + [SMALL_STATE(2122)] = 66018, + [SMALL_STATE(2123)] = 66058, + [SMALL_STATE(2124)] = 66082, + [SMALL_STATE(2125)] = 66110, + [SMALL_STATE(2126)] = 66148, + [SMALL_STATE(2127)] = 66176, + [SMALL_STATE(2128)] = 66204, + [SMALL_STATE(2129)] = 66242, + [SMALL_STATE(2130)] = 66282, + [SMALL_STATE(2131)] = 66322, + [SMALL_STATE(2132)] = 66350, + [SMALL_STATE(2133)] = 66378, + [SMALL_STATE(2134)] = 66402, + [SMALL_STATE(2135)] = 66436, + [SMALL_STATE(2136)] = 66474, + [SMALL_STATE(2137)] = 66502, + [SMALL_STATE(2138)] = 66530, + [SMALL_STATE(2139)] = 66570, + [SMALL_STATE(2140)] = 66598, + [SMALL_STATE(2141)] = 66622, + [SMALL_STATE(2142)] = 66652, + [SMALL_STATE(2143)] = 66682, + [SMALL_STATE(2144)] = 66720, + [SMALL_STATE(2145)] = 66750, + [SMALL_STATE(2146)] = 66778, + [SMALL_STATE(2147)] = 66806, + [SMALL_STATE(2148)] = 66836, + [SMALL_STATE(2149)] = 66874, + [SMALL_STATE(2150)] = 66912, + [SMALL_STATE(2151)] = 66950, + [SMALL_STATE(2152)] = 66978, + [SMALL_STATE(2153)] = 67002, + [SMALL_STATE(2154)] = 67040, + [SMALL_STATE(2155)] = 67078, + [SMALL_STATE(2156)] = 67118, + [SMALL_STATE(2157)] = 67146, + [SMALL_STATE(2158)] = 67169, + [SMALL_STATE(2159)] = 67210, + [SMALL_STATE(2160)] = 67233, + [SMALL_STATE(2161)] = 67274, + [SMALL_STATE(2162)] = 67297, + [SMALL_STATE(2163)] = 67338, + [SMALL_STATE(2164)] = 67361, + [SMALL_STATE(2165)] = 67398, + [SMALL_STATE(2166)] = 67421, + [SMALL_STATE(2167)] = 67458, + [SMALL_STATE(2168)] = 67481, + [SMALL_STATE(2169)] = 67518, + [SMALL_STATE(2170)] = 67541, + [SMALL_STATE(2171)] = 67564, + [SMALL_STATE(2172)] = 67587, + [SMALL_STATE(2173)] = 67618, + [SMALL_STATE(2174)] = 67641, + [SMALL_STATE(2175)] = 67664, + [SMALL_STATE(2176)] = 67687, + [SMALL_STATE(2177)] = 67710, + [SMALL_STATE(2178)] = 67733, + [SMALL_STATE(2179)] = 67756, + [SMALL_STATE(2180)] = 67779, + [SMALL_STATE(2181)] = 67802, + [SMALL_STATE(2182)] = 67825, + [SMALL_STATE(2183)] = 67848, + [SMALL_STATE(2184)] = 67871, + [SMALL_STATE(2185)] = 67894, + [SMALL_STATE(2186)] = 67927, + [SMALL_STATE(2187)] = 67962, + [SMALL_STATE(2188)] = 67985, + [SMALL_STATE(2189)] = 68008, + [SMALL_STATE(2190)] = 68031, + [SMALL_STATE(2191)] = 68054, + [SMALL_STATE(2192)] = 68077, + [SMALL_STATE(2193)] = 68108, + [SMALL_STATE(2194)] = 68143, + [SMALL_STATE(2195)] = 68166, + [SMALL_STATE(2196)] = 68207, + [SMALL_STATE(2197)] = 68230, + [SMALL_STATE(2198)] = 68261, + [SMALL_STATE(2199)] = 68292, + [SMALL_STATE(2200)] = 68315, + [SMALL_STATE(2201)] = 68350, + [SMALL_STATE(2202)] = 68387, + [SMALL_STATE(2203)] = 68422, + [SMALL_STATE(2204)] = 68453, + [SMALL_STATE(2205)] = 68476, + [SMALL_STATE(2206)] = 68499, + [SMALL_STATE(2207)] = 68522, + [SMALL_STATE(2208)] = 68545, + [SMALL_STATE(2209)] = 68568, + [SMALL_STATE(2210)] = 68591, + [SMALL_STATE(2211)] = 68622, + [SMALL_STATE(2212)] = 68645, + [SMALL_STATE(2213)] = 68681, + [SMALL_STATE(2214)] = 68719, + [SMALL_STATE(2215)] = 68757, + [SMALL_STATE(2216)] = 68795, + [SMALL_STATE(2217)] = 68825, + [SMALL_STATE(2218)] = 68863, + [SMALL_STATE(2219)] = 68887, + [SMALL_STATE(2220)] = 68911, + [SMALL_STATE(2221)] = 68939, + [SMALL_STATE(2222)] = 68977, + [SMALL_STATE(2223)] = 69001, + [SMALL_STATE(2224)] = 69029, + [SMALL_STATE(2225)] = 69061, + [SMALL_STATE(2226)] = 69095, + [SMALL_STATE(2227)] = 69127, + [SMALL_STATE(2228)] = 69159, + [SMALL_STATE(2229)] = 69191, + [SMALL_STATE(2230)] = 69221, + [SMALL_STATE(2231)] = 69255, + [SMALL_STATE(2232)] = 69283, + [SMALL_STATE(2233)] = 69315, + [SMALL_STATE(2234)] = 69339, + [SMALL_STATE(2235)] = 69377, + [SMALL_STATE(2236)] = 69407, + [SMALL_STATE(2237)] = 69439, + [SMALL_STATE(2238)] = 69469, + [SMALL_STATE(2239)] = 69507, + [SMALL_STATE(2240)] = 69539, + [SMALL_STATE(2241)] = 69565, + [SMALL_STATE(2242)] = 69603, + [SMALL_STATE(2243)] = 69629, + [SMALL_STATE(2244)] = 69667, + [SMALL_STATE(2245)] = 69705, + [SMALL_STATE(2246)] = 69743, + [SMALL_STATE(2247)] = 69771, + [SMALL_STATE(2248)] = 69809, + [SMALL_STATE(2249)] = 69835, + [SMALL_STATE(2250)] = 69867, + [SMALL_STATE(2251)] = 69895, + [SMALL_STATE(2252)] = 69927, + [SMALL_STATE(2253)] = 69965, + [SMALL_STATE(2254)] = 69997, + [SMALL_STATE(2255)] = 70029, + [SMALL_STATE(2256)] = 70067, + [SMALL_STATE(2257)] = 70099, + [SMALL_STATE(2258)] = 70137, + [SMALL_STATE(2259)] = 70175, + [SMALL_STATE(2260)] = 70203, + [SMALL_STATE(2261)] = 70227, + [SMALL_STATE(2262)] = 70255, + [SMALL_STATE(2263)] = 70287, + [SMALL_STATE(2264)] = 70322, + [SMALL_STATE(2265)] = 70357, + [SMALL_STATE(2266)] = 70384, + [SMALL_STATE(2267)] = 70419, + [SMALL_STATE(2268)] = 70454, + [SMALL_STATE(2269)] = 70489, + [SMALL_STATE(2270)] = 70524, + [SMALL_STATE(2271)] = 70545, + [SMALL_STATE(2272)] = 70580, + [SMALL_STATE(2273)] = 70615, + [SMALL_STATE(2274)] = 70650, + [SMALL_STATE(2275)] = 70685, + [SMALL_STATE(2276)] = 70720, + [SMALL_STATE(2277)] = 70741, + [SMALL_STATE(2278)] = 70776, + [SMALL_STATE(2279)] = 70805, + [SMALL_STATE(2280)] = 70830, + [SMALL_STATE(2281)] = 70865, + [SMALL_STATE(2282)] = 70900, + [SMALL_STATE(2283)] = 70935, + [SMALL_STATE(2284)] = 70970, + [SMALL_STATE(2285)] = 71005, + [SMALL_STATE(2286)] = 71040, + [SMALL_STATE(2287)] = 71075, + [SMALL_STATE(2288)] = 71096, + [SMALL_STATE(2289)] = 71121, + [SMALL_STATE(2290)] = 71154, + [SMALL_STATE(2291)] = 71189, + [SMALL_STATE(2292)] = 71222, + [SMALL_STATE(2293)] = 71257, + [SMALL_STATE(2294)] = 71290, + [SMALL_STATE(2295)] = 71325, + [SMALL_STATE(2296)] = 71360, + [SMALL_STATE(2297)] = 71395, + [SMALL_STATE(2298)] = 71430, + [SMALL_STATE(2299)] = 71463, + [SMALL_STATE(2300)] = 71498, + [SMALL_STATE(2301)] = 71533, + [SMALL_STATE(2302)] = 71568, + [SMALL_STATE(2303)] = 71603, + [SMALL_STATE(2304)] = 71638, + [SMALL_STATE(2305)] = 71673, + [SMALL_STATE(2306)] = 71708, + [SMALL_STATE(2307)] = 71743, + [SMALL_STATE(2308)] = 71778, + [SMALL_STATE(2309)] = 71813, + [SMALL_STATE(2310)] = 71846, + [SMALL_STATE(2311)] = 71881, + [SMALL_STATE(2312)] = 71916, + [SMALL_STATE(2313)] = 71951, + [SMALL_STATE(2314)] = 71972, + [SMALL_STATE(2315)] = 72007, + [SMALL_STATE(2316)] = 72042, + [SMALL_STATE(2317)] = 72067, + [SMALL_STATE(2318)] = 72097, + [SMALL_STATE(2319)] = 72129, + [SMALL_STATE(2320)] = 72161, + [SMALL_STATE(2321)] = 72193, + [SMALL_STATE(2322)] = 72225, + [SMALL_STATE(2323)] = 72257, + [SMALL_STATE(2324)] = 72289, + [SMALL_STATE(2325)] = 72315, + [SMALL_STATE(2326)] = 72343, + [SMALL_STATE(2327)] = 72375, + [SMALL_STATE(2328)] = 72407, + [SMALL_STATE(2329)] = 72437, + [SMALL_STATE(2330)] = 72469, + [SMALL_STATE(2331)] = 72491, + [SMALL_STATE(2332)] = 72523, + [SMALL_STATE(2333)] = 72555, + [SMALL_STATE(2334)] = 72587, + [SMALL_STATE(2335)] = 72619, + [SMALL_STATE(2336)] = 72651, + [SMALL_STATE(2337)] = 72681, + [SMALL_STATE(2338)] = 72713, + [SMALL_STATE(2339)] = 72743, + [SMALL_STATE(2340)] = 72765, + [SMALL_STATE(2341)] = 72795, + [SMALL_STATE(2342)] = 72821, + [SMALL_STATE(2343)] = 72843, + [SMALL_STATE(2344)] = 72869, + [SMALL_STATE(2345)] = 72897, + [SMALL_STATE(2346)] = 72929, + [SMALL_STATE(2347)] = 72961, + [SMALL_STATE(2348)] = 72993, + [SMALL_STATE(2349)] = 73025, + [SMALL_STATE(2350)] = 73055, + [SMALL_STATE(2351)] = 73087, + [SMALL_STATE(2352)] = 73109, + [SMALL_STATE(2353)] = 73141, + [SMALL_STATE(2354)] = 73169, + [SMALL_STATE(2355)] = 73195, + [SMALL_STATE(2356)] = 73223, + [SMALL_STATE(2357)] = 73255, + [SMALL_STATE(2358)] = 73287, + [SMALL_STATE(2359)] = 73319, + [SMALL_STATE(2360)] = 73351, + [SMALL_STATE(2361)] = 73383, + [SMALL_STATE(2362)] = 73413, + [SMALL_STATE(2363)] = 73443, + [SMALL_STATE(2364)] = 73473, + [SMALL_STATE(2365)] = 73503, + [SMALL_STATE(2366)] = 73525, + [SMALL_STATE(2367)] = 73557, + [SMALL_STATE(2368)] = 73579, + [SMALL_STATE(2369)] = 73611, + [SMALL_STATE(2370)] = 73643, + [SMALL_STATE(2371)] = 73671, + [SMALL_STATE(2372)] = 73703, + [SMALL_STATE(2373)] = 73735, + [SMALL_STATE(2374)] = 73767, + [SMALL_STATE(2375)] = 73799, + [SMALL_STATE(2376)] = 73828, + [SMALL_STATE(2377)] = 73857, + [SMALL_STATE(2378)] = 73886, + [SMALL_STATE(2379)] = 73915, + [SMALL_STATE(2380)] = 73936, + [SMALL_STATE(2381)] = 73965, + [SMALL_STATE(2382)] = 73986, + [SMALL_STATE(2383)] = 74015, + [SMALL_STATE(2384)] = 74042, + [SMALL_STATE(2385)] = 74063, + [SMALL_STATE(2386)] = 74092, + [SMALL_STATE(2387)] = 74113, + [SMALL_STATE(2388)] = 74142, + [SMALL_STATE(2389)] = 74165, + [SMALL_STATE(2390)] = 74190, + [SMALL_STATE(2391)] = 74211, + [SMALL_STATE(2392)] = 74240, + [SMALL_STATE(2393)] = 74269, + [SMALL_STATE(2394)] = 74292, + [SMALL_STATE(2395)] = 74315, + [SMALL_STATE(2396)] = 74338, + [SMALL_STATE(2397)] = 74367, + [SMALL_STATE(2398)] = 74388, + [SMALL_STATE(2399)] = 74415, + [SMALL_STATE(2400)] = 74444, + [SMALL_STATE(2401)] = 74467, + [SMALL_STATE(2402)] = 74496, + [SMALL_STATE(2403)] = 74525, + [SMALL_STATE(2404)] = 74548, + [SMALL_STATE(2405)] = 74573, + [SMALL_STATE(2406)] = 74596, + [SMALL_STATE(2407)] = 74625, + [SMALL_STATE(2408)] = 74654, + [SMALL_STATE(2409)] = 74681, + [SMALL_STATE(2410)] = 74710, + [SMALL_STATE(2411)] = 74739, + [SMALL_STATE(2412)] = 74768, + [SMALL_STATE(2413)] = 74797, + [SMALL_STATE(2414)] = 74826, + [SMALL_STATE(2415)] = 74855, + [SMALL_STATE(2416)] = 74876, + [SMALL_STATE(2417)] = 74905, + [SMALL_STATE(2418)] = 74934, + [SMALL_STATE(2419)] = 74957, + [SMALL_STATE(2420)] = 74986, + [SMALL_STATE(2421)] = 75015, + [SMALL_STATE(2422)] = 75044, + [SMALL_STATE(2423)] = 75073, + [SMALL_STATE(2424)] = 75102, + [SMALL_STATE(2425)] = 75131, + [SMALL_STATE(2426)] = 75154, + [SMALL_STATE(2427)] = 75181, + [SMALL_STATE(2428)] = 75210, + [SMALL_STATE(2429)] = 75239, + [SMALL_STATE(2430)] = 75264, + [SMALL_STATE(2431)] = 75285, + [SMALL_STATE(2432)] = 75314, + [SMALL_STATE(2433)] = 75343, + [SMALL_STATE(2434)] = 75364, + [SMALL_STATE(2435)] = 75393, + [SMALL_STATE(2436)] = 75416, + [SMALL_STATE(2437)] = 75445, + [SMALL_STATE(2438)] = 75474, + [SMALL_STATE(2439)] = 75503, + [SMALL_STATE(2440)] = 75526, + [SMALL_STATE(2441)] = 75553, + [SMALL_STATE(2442)] = 75574, + [SMALL_STATE(2443)] = 75603, + [SMALL_STATE(2444)] = 75632, + [SMALL_STATE(2445)] = 75661, + [SMALL_STATE(2446)] = 75690, + [SMALL_STATE(2447)] = 75711, + [SMALL_STATE(2448)] = 75734, + [SMALL_STATE(2449)] = 75757, + [SMALL_STATE(2450)] = 75778, + [SMALL_STATE(2451)] = 75801, + [SMALL_STATE(2452)] = 75830, + [SMALL_STATE(2453)] = 75853, + [SMALL_STATE(2454)] = 75882, + [SMALL_STATE(2455)] = 75911, + [SMALL_STATE(2456)] = 75940, + [SMALL_STATE(2457)] = 75963, + [SMALL_STATE(2458)] = 75992, + [SMALL_STATE(2459)] = 76021, + [SMALL_STATE(2460)] = 76040, + [SMALL_STATE(2461)] = 76069, + [SMALL_STATE(2462)] = 76098, + [SMALL_STATE(2463)] = 76119, + [SMALL_STATE(2464)] = 76144, + [SMALL_STATE(2465)] = 76171, + [SMALL_STATE(2466)] = 76192, + [SMALL_STATE(2467)] = 76221, + [SMALL_STATE(2468)] = 76250, + [SMALL_STATE(2469)] = 76271, + [SMALL_STATE(2470)] = 76290, + [SMALL_STATE(2471)] = 76311, + [SMALL_STATE(2472)] = 76340, + [SMALL_STATE(2473)] = 76369, + [SMALL_STATE(2474)] = 76398, + [SMALL_STATE(2475)] = 76427, + [SMALL_STATE(2476)] = 76456, + [SMALL_STATE(2477)] = 76474, + [SMALL_STATE(2478)] = 76500, + [SMALL_STATE(2479)] = 76524, + [SMALL_STATE(2480)] = 76546, + [SMALL_STATE(2481)] = 76568, + [SMALL_STATE(2482)] = 76592, + [SMALL_STATE(2483)] = 76614, + [SMALL_STATE(2484)] = 76632, + [SMALL_STATE(2485)] = 76650, + [SMALL_STATE(2486)] = 76668, + [SMALL_STATE(2487)] = 76686, + [SMALL_STATE(2488)] = 76712, + [SMALL_STATE(2489)] = 76730, + [SMALL_STATE(2490)] = 76756, + [SMALL_STATE(2491)] = 76778, + [SMALL_STATE(2492)] = 76796, + [SMALL_STATE(2493)] = 76814, + [SMALL_STATE(2494)] = 76832, + [SMALL_STATE(2495)] = 76858, + [SMALL_STATE(2496)] = 76876, + [SMALL_STATE(2497)] = 76894, + [SMALL_STATE(2498)] = 76912, + [SMALL_STATE(2499)] = 76938, + [SMALL_STATE(2500)] = 76964, + [SMALL_STATE(2501)] = 76982, + [SMALL_STATE(2502)] = 77000, + [SMALL_STATE(2503)] = 77022, + [SMALL_STATE(2504)] = 77048, + [SMALL_STATE(2505)] = 77074, + [SMALL_STATE(2506)] = 77098, + [SMALL_STATE(2507)] = 77116, + [SMALL_STATE(2508)] = 77142, + [SMALL_STATE(2509)] = 77160, + [SMALL_STATE(2510)] = 77186, + [SMALL_STATE(2511)] = 77206, + [SMALL_STATE(2512)] = 77230, + [SMALL_STATE(2513)] = 77256, + [SMALL_STATE(2514)] = 77282, + [SMALL_STATE(2515)] = 77308, + [SMALL_STATE(2516)] = 77334, + [SMALL_STATE(2517)] = 77360, + [SMALL_STATE(2518)] = 77386, + [SMALL_STATE(2519)] = 77412, + [SMALL_STATE(2520)] = 77438, + [SMALL_STATE(2521)] = 77464, + [SMALL_STATE(2522)] = 77488, + [SMALL_STATE(2523)] = 77514, + [SMALL_STATE(2524)] = 77540, + [SMALL_STATE(2525)] = 77564, + [SMALL_STATE(2526)] = 77582, + [SMALL_STATE(2527)] = 77606, + [SMALL_STATE(2528)] = 77632, + [SMALL_STATE(2529)] = 77658, + [SMALL_STATE(2530)] = 77684, + [SMALL_STATE(2531)] = 77710, + [SMALL_STATE(2532)] = 77736, + [SMALL_STATE(2533)] = 77762, + [SMALL_STATE(2534)] = 77788, + [SMALL_STATE(2535)] = 77814, + [SMALL_STATE(2536)] = 77840, + [SMALL_STATE(2537)] = 77866, + [SMALL_STATE(2538)] = 77892, + [SMALL_STATE(2539)] = 77918, + [SMALL_STATE(2540)] = 77944, + [SMALL_STATE(2541)] = 77970, + [SMALL_STATE(2542)] = 77996, + [SMALL_STATE(2543)] = 78022, + [SMALL_STATE(2544)] = 78048, + [SMALL_STATE(2545)] = 78074, + [SMALL_STATE(2546)] = 78098, + [SMALL_STATE(2547)] = 78124, + [SMALL_STATE(2548)] = 78148, + [SMALL_STATE(2549)] = 78174, + [SMALL_STATE(2550)] = 78200, + [SMALL_STATE(2551)] = 78226, + [SMALL_STATE(2552)] = 78250, + [SMALL_STATE(2553)] = 78274, + [SMALL_STATE(2554)] = 78292, + [SMALL_STATE(2555)] = 78318, + [SMALL_STATE(2556)] = 78338, + [SMALL_STATE(2557)] = 78356, + [SMALL_STATE(2558)] = 78374, + [SMALL_STATE(2559)] = 78398, + [SMALL_STATE(2560)] = 78424, + [SMALL_STATE(2561)] = 78448, + [SMALL_STATE(2562)] = 78468, + [SMALL_STATE(2563)] = 78486, + [SMALL_STATE(2564)] = 78506, + [SMALL_STATE(2565)] = 78530, + [SMALL_STATE(2566)] = 78548, + [SMALL_STATE(2567)] = 78566, + [SMALL_STATE(2568)] = 78584, + [SMALL_STATE(2569)] = 78610, + [SMALL_STATE(2570)] = 78636, + [SMALL_STATE(2571)] = 78660, + [SMALL_STATE(2572)] = 78682, + [SMALL_STATE(2573)] = 78706, + [SMALL_STATE(2574)] = 78732, + [SMALL_STATE(2575)] = 78758, + [SMALL_STATE(2576)] = 78780, + [SMALL_STATE(2577)] = 78798, + [SMALL_STATE(2578)] = 78816, + [SMALL_STATE(2579)] = 78842, + [SMALL_STATE(2580)] = 78868, + [SMALL_STATE(2581)] = 78894, + [SMALL_STATE(2582)] = 78916, + [SMALL_STATE(2583)] = 78942, + [SMALL_STATE(2584)] = 78968, + [SMALL_STATE(2585)] = 78994, + [SMALL_STATE(2586)] = 79017, + [SMALL_STATE(2587)] = 79040, + [SMALL_STATE(2588)] = 79057, + [SMALL_STATE(2589)] = 79076, + [SMALL_STATE(2590)] = 79099, + [SMALL_STATE(2591)] = 79118, + [SMALL_STATE(2592)] = 79141, + [SMALL_STATE(2593)] = 79164, + [SMALL_STATE(2594)] = 79187, + [SMALL_STATE(2595)] = 79206, + [SMALL_STATE(2596)] = 79229, + [SMALL_STATE(2597)] = 79252, + [SMALL_STATE(2598)] = 79273, + [SMALL_STATE(2599)] = 79296, + [SMALL_STATE(2600)] = 79319, + [SMALL_STATE(2601)] = 79340, + [SMALL_STATE(2602)] = 79363, + [SMALL_STATE(2603)] = 79386, + [SMALL_STATE(2604)] = 79409, + [SMALL_STATE(2605)] = 79432, + [SMALL_STATE(2606)] = 79453, + [SMALL_STATE(2607)] = 79476, + [SMALL_STATE(2608)] = 79499, + [SMALL_STATE(2609)] = 79522, + [SMALL_STATE(2610)] = 79545, + [SMALL_STATE(2611)] = 79566, + [SMALL_STATE(2612)] = 79589, + [SMALL_STATE(2613)] = 79612, + [SMALL_STATE(2614)] = 79635, + [SMALL_STATE(2615)] = 79658, + [SMALL_STATE(2616)] = 79681, + [SMALL_STATE(2617)] = 79702, + [SMALL_STATE(2618)] = 79719, + [SMALL_STATE(2619)] = 79742, + [SMALL_STATE(2620)] = 79763, + [SMALL_STATE(2621)] = 79786, + [SMALL_STATE(2622)] = 79809, + [SMALL_STATE(2623)] = 79832, + [SMALL_STATE(2624)] = 79855, + [SMALL_STATE(2625)] = 79878, + [SMALL_STATE(2626)] = 79901, + [SMALL_STATE(2627)] = 79924, + [SMALL_STATE(2628)] = 79947, + [SMALL_STATE(2629)] = 79970, + [SMALL_STATE(2630)] = 79993, + [SMALL_STATE(2631)] = 80014, + [SMALL_STATE(2632)] = 80037, + [SMALL_STATE(2633)] = 80060, + [SMALL_STATE(2634)] = 80083, + [SMALL_STATE(2635)] = 80106, + [SMALL_STATE(2636)] = 80129, + [SMALL_STATE(2637)] = 80152, + [SMALL_STATE(2638)] = 80175, + [SMALL_STATE(2639)] = 80198, + [SMALL_STATE(2640)] = 80221, + [SMALL_STATE(2641)] = 80244, + [SMALL_STATE(2642)] = 80267, + [SMALL_STATE(2643)] = 80290, + [SMALL_STATE(2644)] = 80313, + [SMALL_STATE(2645)] = 80336, + [SMALL_STATE(2646)] = 80357, + [SMALL_STATE(2647)] = 80378, + [SMALL_STATE(2648)] = 80401, + [SMALL_STATE(2649)] = 80424, + [SMALL_STATE(2650)] = 80447, + [SMALL_STATE(2651)] = 80470, + [SMALL_STATE(2652)] = 80493, + [SMALL_STATE(2653)] = 80512, + [SMALL_STATE(2654)] = 80535, + [SMALL_STATE(2655)] = 80558, + [SMALL_STATE(2656)] = 80581, + [SMALL_STATE(2657)] = 80604, + [SMALL_STATE(2658)] = 80627, + [SMALL_STATE(2659)] = 80648, + [SMALL_STATE(2660)] = 80671, + [SMALL_STATE(2661)] = 80694, + [SMALL_STATE(2662)] = 80717, + [SMALL_STATE(2663)] = 80740, + [SMALL_STATE(2664)] = 80763, + [SMALL_STATE(2665)] = 80786, + [SMALL_STATE(2666)] = 80809, + [SMALL_STATE(2667)] = 80832, + [SMALL_STATE(2668)] = 80855, + [SMALL_STATE(2669)] = 80878, + [SMALL_STATE(2670)] = 80897, + [SMALL_STATE(2671)] = 80920, + [SMALL_STATE(2672)] = 80943, + [SMALL_STATE(2673)] = 80966, + [SMALL_STATE(2674)] = 80989, + [SMALL_STATE(2675)] = 81012, + [SMALL_STATE(2676)] = 81035, + [SMALL_STATE(2677)] = 81058, + [SMALL_STATE(2678)] = 81077, + [SMALL_STATE(2679)] = 81100, + [SMALL_STATE(2680)] = 81117, + [SMALL_STATE(2681)] = 81140, + [SMALL_STATE(2682)] = 81163, + [SMALL_STATE(2683)] = 81182, + [SMALL_STATE(2684)] = 81205, + [SMALL_STATE(2685)] = 81224, + [SMALL_STATE(2686)] = 81243, + [SMALL_STATE(2687)] = 81262, + [SMALL_STATE(2688)] = 81285, + [SMALL_STATE(2689)] = 81308, + [SMALL_STATE(2690)] = 81331, + [SMALL_STATE(2691)] = 81354, + [SMALL_STATE(2692)] = 81377, + [SMALL_STATE(2693)] = 81400, + [SMALL_STATE(2694)] = 81423, + [SMALL_STATE(2695)] = 81446, + [SMALL_STATE(2696)] = 81465, + [SMALL_STATE(2697)] = 81488, + [SMALL_STATE(2698)] = 81511, + [SMALL_STATE(2699)] = 81534, + [SMALL_STATE(2700)] = 81557, + [SMALL_STATE(2701)] = 81580, + [SMALL_STATE(2702)] = 81603, + [SMALL_STATE(2703)] = 81626, + [SMALL_STATE(2704)] = 81647, + [SMALL_STATE(2705)] = 81670, + [SMALL_STATE(2706)] = 81693, + [SMALL_STATE(2707)] = 81716, + [SMALL_STATE(2708)] = 81739, + [SMALL_STATE(2709)] = 81762, + [SMALL_STATE(2710)] = 81785, + [SMALL_STATE(2711)] = 81804, + [SMALL_STATE(2712)] = 81827, + [SMALL_STATE(2713)] = 81850, + [SMALL_STATE(2714)] = 81873, + [SMALL_STATE(2715)] = 81896, + [SMALL_STATE(2716)] = 81917, + [SMALL_STATE(2717)] = 81940, + [SMALL_STATE(2718)] = 81963, + [SMALL_STATE(2719)] = 81986, + [SMALL_STATE(2720)] = 82005, + [SMALL_STATE(2721)] = 82028, + [SMALL_STATE(2722)] = 82051, + [SMALL_STATE(2723)] = 82074, + [SMALL_STATE(2724)] = 82097, + [SMALL_STATE(2725)] = 82120, + [SMALL_STATE(2726)] = 82143, + [SMALL_STATE(2727)] = 82166, + [SMALL_STATE(2728)] = 82189, + [SMALL_STATE(2729)] = 82212, + [SMALL_STATE(2730)] = 82235, + [SMALL_STATE(2731)] = 82258, + [SMALL_STATE(2732)] = 82279, + [SMALL_STATE(2733)] = 82298, + [SMALL_STATE(2734)] = 82321, + [SMALL_STATE(2735)] = 82340, + [SMALL_STATE(2736)] = 82363, + [SMALL_STATE(2737)] = 82386, + [SMALL_STATE(2738)] = 82409, + [SMALL_STATE(2739)] = 82432, + [SMALL_STATE(2740)] = 82455, + [SMALL_STATE(2741)] = 82478, + [SMALL_STATE(2742)] = 82501, + [SMALL_STATE(2743)] = 82524, + [SMALL_STATE(2744)] = 82545, + [SMALL_STATE(2745)] = 82568, + [SMALL_STATE(2746)] = 82591, + [SMALL_STATE(2747)] = 82614, + [SMALL_STATE(2748)] = 82637, + [SMALL_STATE(2749)] = 82660, + [SMALL_STATE(2750)] = 82683, + [SMALL_STATE(2751)] = 82704, + [SMALL_STATE(2752)] = 82727, + [SMALL_STATE(2753)] = 82750, + [SMALL_STATE(2754)] = 82773, + [SMALL_STATE(2755)] = 82796, + [SMALL_STATE(2756)] = 82819, + [SMALL_STATE(2757)] = 82842, + [SMALL_STATE(2758)] = 82859, + [SMALL_STATE(2759)] = 82882, + [SMALL_STATE(2760)] = 82903, + [SMALL_STATE(2761)] = 82926, + [SMALL_STATE(2762)] = 82949, + [SMALL_STATE(2763)] = 82972, + [SMALL_STATE(2764)] = 82993, + [SMALL_STATE(2765)] = 83016, + [SMALL_STATE(2766)] = 83039, + [SMALL_STATE(2767)] = 83062, + [SMALL_STATE(2768)] = 83085, + [SMALL_STATE(2769)] = 83108, + [SMALL_STATE(2770)] = 83127, + [SMALL_STATE(2771)] = 83148, + [SMALL_STATE(2772)] = 83169, + [SMALL_STATE(2773)] = 83192, + [SMALL_STATE(2774)] = 83215, + [SMALL_STATE(2775)] = 83234, + [SMALL_STATE(2776)] = 83251, + [SMALL_STATE(2777)] = 83274, + [SMALL_STATE(2778)] = 83293, + [SMALL_STATE(2779)] = 83316, + [SMALL_STATE(2780)] = 83335, + [SMALL_STATE(2781)] = 83358, + [SMALL_STATE(2782)] = 83381, + [SMALL_STATE(2783)] = 83404, + [SMALL_STATE(2784)] = 83427, + [SMALL_STATE(2785)] = 83450, + [SMALL_STATE(2786)] = 83471, + [SMALL_STATE(2787)] = 83494, + [SMALL_STATE(2788)] = 83517, + [SMALL_STATE(2789)] = 83540, + [SMALL_STATE(2790)] = 83559, + [SMALL_STATE(2791)] = 83582, + [SMALL_STATE(2792)] = 83605, + [SMALL_STATE(2793)] = 83628, + [SMALL_STATE(2794)] = 83651, + [SMALL_STATE(2795)] = 83670, + [SMALL_STATE(2796)] = 83693, + [SMALL_STATE(2797)] = 83712, + [SMALL_STATE(2798)] = 83731, + [SMALL_STATE(2799)] = 83750, + [SMALL_STATE(2800)] = 83773, + [SMALL_STATE(2801)] = 83796, + [SMALL_STATE(2802)] = 83815, + [SMALL_STATE(2803)] = 83838, + [SMALL_STATE(2804)] = 83859, + [SMALL_STATE(2805)] = 83880, + [SMALL_STATE(2806)] = 83899, + [SMALL_STATE(2807)] = 83922, + [SMALL_STATE(2808)] = 83945, + [SMALL_STATE(2809)] = 83968, + [SMALL_STATE(2810)] = 83987, + [SMALL_STATE(2811)] = 84006, + [SMALL_STATE(2812)] = 84025, + [SMALL_STATE(2813)] = 84048, + [SMALL_STATE(2814)] = 84071, + [SMALL_STATE(2815)] = 84094, + [SMALL_STATE(2816)] = 84117, + [SMALL_STATE(2817)] = 84138, + [SMALL_STATE(2818)] = 84161, + [SMALL_STATE(2819)] = 84184, + [SMALL_STATE(2820)] = 84207, + [SMALL_STATE(2821)] = 84230, + [SMALL_STATE(2822)] = 84253, + [SMALL_STATE(2823)] = 84276, + [SMALL_STATE(2824)] = 84299, + [SMALL_STATE(2825)] = 84320, + [SMALL_STATE(2826)] = 84341, + [SMALL_STATE(2827)] = 84364, + [SMALL_STATE(2828)] = 84387, + [SMALL_STATE(2829)] = 84410, + [SMALL_STATE(2830)] = 84431, + [SMALL_STATE(2831)] = 84454, + [SMALL_STATE(2832)] = 84477, + [SMALL_STATE(2833)] = 84496, + [SMALL_STATE(2834)] = 84519, + [SMALL_STATE(2835)] = 84542, + [SMALL_STATE(2836)] = 84561, + [SMALL_STATE(2837)] = 84584, + [SMALL_STATE(2838)] = 84607, + [SMALL_STATE(2839)] = 84626, + [SMALL_STATE(2840)] = 84649, + [SMALL_STATE(2841)] = 84672, + [SMALL_STATE(2842)] = 84695, + [SMALL_STATE(2843)] = 84718, + [SMALL_STATE(2844)] = 84741, + [SMALL_STATE(2845)] = 84764, + [SMALL_STATE(2846)] = 84787, + [SMALL_STATE(2847)] = 84807, + [SMALL_STATE(2848)] = 84827, + [SMALL_STATE(2849)] = 84843, + [SMALL_STATE(2850)] = 84863, + [SMALL_STATE(2851)] = 84883, + [SMALL_STATE(2852)] = 84903, + [SMALL_STATE(2853)] = 84919, + [SMALL_STATE(2854)] = 84939, + [SMALL_STATE(2855)] = 84955, + [SMALL_STATE(2856)] = 84975, + [SMALL_STATE(2857)] = 84991, + [SMALL_STATE(2858)] = 85007, + [SMALL_STATE(2859)] = 85023, + [SMALL_STATE(2860)] = 85043, + [SMALL_STATE(2861)] = 85059, + [SMALL_STATE(2862)] = 85075, + [SMALL_STATE(2863)] = 85095, + [SMALL_STATE(2864)] = 85115, + [SMALL_STATE(2865)] = 85131, + [SMALL_STATE(2866)] = 85151, + [SMALL_STATE(2867)] = 85171, + [SMALL_STATE(2868)] = 85191, + [SMALL_STATE(2869)] = 85211, + [SMALL_STATE(2870)] = 85227, + [SMALL_STATE(2871)] = 85243, + [SMALL_STATE(2872)] = 85263, + [SMALL_STATE(2873)] = 85283, + [SMALL_STATE(2874)] = 85299, + [SMALL_STATE(2875)] = 85319, + [SMALL_STATE(2876)] = 85335, + [SMALL_STATE(2877)] = 85353, + [SMALL_STATE(2878)] = 85373, + [SMALL_STATE(2879)] = 85393, + [SMALL_STATE(2880)] = 85413, + [SMALL_STATE(2881)] = 85429, + [SMALL_STATE(2882)] = 85449, + [SMALL_STATE(2883)] = 85469, + [SMALL_STATE(2884)] = 85485, + [SMALL_STATE(2885)] = 85505, + [SMALL_STATE(2886)] = 85525, + [SMALL_STATE(2887)] = 85541, + [SMALL_STATE(2888)] = 85559, + [SMALL_STATE(2889)] = 85579, + [SMALL_STATE(2890)] = 85599, + [SMALL_STATE(2891)] = 85619, + [SMALL_STATE(2892)] = 85639, + [SMALL_STATE(2893)] = 85659, + [SMALL_STATE(2894)] = 85677, + [SMALL_STATE(2895)] = 85695, + [SMALL_STATE(2896)] = 85713, + [SMALL_STATE(2897)] = 85733, + [SMALL_STATE(2898)] = 85753, + [SMALL_STATE(2899)] = 85773, + [SMALL_STATE(2900)] = 85793, + [SMALL_STATE(2901)] = 85813, + [SMALL_STATE(2902)] = 85833, + [SMALL_STATE(2903)] = 85853, + [SMALL_STATE(2904)] = 85873, + [SMALL_STATE(2905)] = 85893, + [SMALL_STATE(2906)] = 85913, + [SMALL_STATE(2907)] = 85933, + [SMALL_STATE(2908)] = 85953, + [SMALL_STATE(2909)] = 85973, + [SMALL_STATE(2910)] = 85993, + [SMALL_STATE(2911)] = 86013, + [SMALL_STATE(2912)] = 86033, + [SMALL_STATE(2913)] = 86053, + [SMALL_STATE(2914)] = 86073, + [SMALL_STATE(2915)] = 86093, + [SMALL_STATE(2916)] = 86113, + [SMALL_STATE(2917)] = 86133, + [SMALL_STATE(2918)] = 86151, + [SMALL_STATE(2919)] = 86171, + [SMALL_STATE(2920)] = 86191, + [SMALL_STATE(2921)] = 86211, + [SMALL_STATE(2922)] = 86227, + [SMALL_STATE(2923)] = 86247, + [SMALL_STATE(2924)] = 86265, + [SMALL_STATE(2925)] = 86281, + [SMALL_STATE(2926)] = 86301, + [SMALL_STATE(2927)] = 86321, + [SMALL_STATE(2928)] = 86341, + [SMALL_STATE(2929)] = 86359, + [SMALL_STATE(2930)] = 86379, + [SMALL_STATE(2931)] = 86399, + [SMALL_STATE(2932)] = 86419, + [SMALL_STATE(2933)] = 86435, + [SMALL_STATE(2934)] = 86451, + [SMALL_STATE(2935)] = 86471, + [SMALL_STATE(2936)] = 86491, + [SMALL_STATE(2937)] = 86511, + [SMALL_STATE(2938)] = 86527, + [SMALL_STATE(2939)] = 86547, + [SMALL_STATE(2940)] = 86567, + [SMALL_STATE(2941)] = 86587, + [SMALL_STATE(2942)] = 86605, + [SMALL_STATE(2943)] = 86625, + [SMALL_STATE(2944)] = 86645, + [SMALL_STATE(2945)] = 86661, + [SMALL_STATE(2946)] = 86681, + [SMALL_STATE(2947)] = 86697, + [SMALL_STATE(2948)] = 86717, + [SMALL_STATE(2949)] = 86737, + [SMALL_STATE(2950)] = 86755, + [SMALL_STATE(2951)] = 86771, + [SMALL_STATE(2952)] = 86791, + [SMALL_STATE(2953)] = 86807, + [SMALL_STATE(2954)] = 86827, + [SMALL_STATE(2955)] = 86845, + [SMALL_STATE(2956)] = 86861, + [SMALL_STATE(2957)] = 86881, + [SMALL_STATE(2958)] = 86901, + [SMALL_STATE(2959)] = 86917, + [SMALL_STATE(2960)] = 86937, + [SMALL_STATE(2961)] = 86957, + [SMALL_STATE(2962)] = 86977, + [SMALL_STATE(2963)] = 86997, + [SMALL_STATE(2964)] = 87017, + [SMALL_STATE(2965)] = 87037, + [SMALL_STATE(2966)] = 87057, + [SMALL_STATE(2967)] = 87077, + [SMALL_STATE(2968)] = 87097, + [SMALL_STATE(2969)] = 87117, + [SMALL_STATE(2970)] = 87135, + [SMALL_STATE(2971)] = 87155, + [SMALL_STATE(2972)] = 87175, + [SMALL_STATE(2973)] = 87193, + [SMALL_STATE(2974)] = 87211, + [SMALL_STATE(2975)] = 87231, + [SMALL_STATE(2976)] = 87251, + [SMALL_STATE(2977)] = 87269, + [SMALL_STATE(2978)] = 87289, + [SMALL_STATE(2979)] = 87309, + [SMALL_STATE(2980)] = 87329, + [SMALL_STATE(2981)] = 87347, + [SMALL_STATE(2982)] = 87363, + [SMALL_STATE(2983)] = 87383, + [SMALL_STATE(2984)] = 87401, + [SMALL_STATE(2985)] = 87421, + [SMALL_STATE(2986)] = 87441, + [SMALL_STATE(2987)] = 87461, + [SMALL_STATE(2988)] = 87481, + [SMALL_STATE(2989)] = 87501, + [SMALL_STATE(2990)] = 87517, + [SMALL_STATE(2991)] = 87533, + [SMALL_STATE(2992)] = 87553, + [SMALL_STATE(2993)] = 87571, + [SMALL_STATE(2994)] = 87591, + [SMALL_STATE(2995)] = 87609, + [SMALL_STATE(2996)] = 87629, + [SMALL_STATE(2997)] = 87649, + [SMALL_STATE(2998)] = 87669, + [SMALL_STATE(2999)] = 87689, + [SMALL_STATE(3000)] = 87707, + [SMALL_STATE(3001)] = 87727, + [SMALL_STATE(3002)] = 87747, + [SMALL_STATE(3003)] = 87767, + [SMALL_STATE(3004)] = 87787, + [SMALL_STATE(3005)] = 87805, + [SMALL_STATE(3006)] = 87825, + [SMALL_STATE(3007)] = 87845, + [SMALL_STATE(3008)] = 87865, + [SMALL_STATE(3009)] = 87885, + [SMALL_STATE(3010)] = 87905, + [SMALL_STATE(3011)] = 87925, + [SMALL_STATE(3012)] = 87945, + [SMALL_STATE(3013)] = 87961, + [SMALL_STATE(3014)] = 87981, + [SMALL_STATE(3015)] = 88001, + [SMALL_STATE(3016)] = 88021, + [SMALL_STATE(3017)] = 88041, + [SMALL_STATE(3018)] = 88061, + [SMALL_STATE(3019)] = 88081, + [SMALL_STATE(3020)] = 88097, + [SMALL_STATE(3021)] = 88117, + [SMALL_STATE(3022)] = 88137, + [SMALL_STATE(3023)] = 88157, + [SMALL_STATE(3024)] = 88177, + [SMALL_STATE(3025)] = 88197, + [SMALL_STATE(3026)] = 88217, + [SMALL_STATE(3027)] = 88233, + [SMALL_STATE(3028)] = 88249, + [SMALL_STATE(3029)] = 88269, + [SMALL_STATE(3030)] = 88289, + [SMALL_STATE(3031)] = 88309, + [SMALL_STATE(3032)] = 88329, + [SMALL_STATE(3033)] = 88349, + [SMALL_STATE(3034)] = 88367, + [SMALL_STATE(3035)] = 88387, + [SMALL_STATE(3036)] = 88403, + [SMALL_STATE(3037)] = 88423, + [SMALL_STATE(3038)] = 88439, + [SMALL_STATE(3039)] = 88459, + [SMALL_STATE(3040)] = 88479, + [SMALL_STATE(3041)] = 88497, + [SMALL_STATE(3042)] = 88515, + [SMALL_STATE(3043)] = 88535, + [SMALL_STATE(3044)] = 88555, + [SMALL_STATE(3045)] = 88575, + [SMALL_STATE(3046)] = 88595, + [SMALL_STATE(3047)] = 88611, + [SMALL_STATE(3048)] = 88627, + [SMALL_STATE(3049)] = 88647, + [SMALL_STATE(3050)] = 88667, + [SMALL_STATE(3051)] = 88687, + [SMALL_STATE(3052)] = 88707, + [SMALL_STATE(3053)] = 88727, + [SMALL_STATE(3054)] = 88745, + [SMALL_STATE(3055)] = 88765, + [SMALL_STATE(3056)] = 88783, + [SMALL_STATE(3057)] = 88799, + [SMALL_STATE(3058)] = 88819, + [SMALL_STATE(3059)] = 88839, + [SMALL_STATE(3060)] = 88857, + [SMALL_STATE(3061)] = 88877, + [SMALL_STATE(3062)] = 88897, + [SMALL_STATE(3063)] = 88917, + [SMALL_STATE(3064)] = 88935, + [SMALL_STATE(3065)] = 88955, + [SMALL_STATE(3066)] = 88971, + [SMALL_STATE(3067)] = 88991, + [SMALL_STATE(3068)] = 89011, + [SMALL_STATE(3069)] = 89031, + [SMALL_STATE(3070)] = 89051, + [SMALL_STATE(3071)] = 89069, + [SMALL_STATE(3072)] = 89089, + [SMALL_STATE(3073)] = 89107, + [SMALL_STATE(3074)] = 89125, + [SMALL_STATE(3075)] = 89145, + [SMALL_STATE(3076)] = 89163, + [SMALL_STATE(3077)] = 89179, + [SMALL_STATE(3078)] = 89195, + [SMALL_STATE(3079)] = 89215, + [SMALL_STATE(3080)] = 89235, + [SMALL_STATE(3081)] = 89255, + [SMALL_STATE(3082)] = 89275, + [SMALL_STATE(3083)] = 89291, + [SMALL_STATE(3084)] = 89311, + [SMALL_STATE(3085)] = 89331, + [SMALL_STATE(3086)] = 89351, + [SMALL_STATE(3087)] = 89367, + [SMALL_STATE(3088)] = 89387, + [SMALL_STATE(3089)] = 89407, + [SMALL_STATE(3090)] = 89423, + [SMALL_STATE(3091)] = 89443, + [SMALL_STATE(3092)] = 89463, + [SMALL_STATE(3093)] = 89479, + [SMALL_STATE(3094)] = 89495, + [SMALL_STATE(3095)] = 89511, + [SMALL_STATE(3096)] = 89531, + [SMALL_STATE(3097)] = 89551, + [SMALL_STATE(3098)] = 89571, + [SMALL_STATE(3099)] = 89591, + [SMALL_STATE(3100)] = 89609, + [SMALL_STATE(3101)] = 89625, + [SMALL_STATE(3102)] = 89643, + [SMALL_STATE(3103)] = 89659, + [SMALL_STATE(3104)] = 89675, + [SMALL_STATE(3105)] = 89695, + [SMALL_STATE(3106)] = 89715, + [SMALL_STATE(3107)] = 89735, + [SMALL_STATE(3108)] = 89751, + [SMALL_STATE(3109)] = 89767, + [SMALL_STATE(3110)] = 89785, + [SMALL_STATE(3111)] = 89805, + [SMALL_STATE(3112)] = 89825, + [SMALL_STATE(3113)] = 89845, + [SMALL_STATE(3114)] = 89865, + [SMALL_STATE(3115)] = 89885, + [SMALL_STATE(3116)] = 89905, + [SMALL_STATE(3117)] = 89925, + [SMALL_STATE(3118)] = 89945, + [SMALL_STATE(3119)] = 89963, + [SMALL_STATE(3120)] = 89983, + [SMALL_STATE(3121)] = 90003, + [SMALL_STATE(3122)] = 90021, + [SMALL_STATE(3123)] = 90041, + [SMALL_STATE(3124)] = 90061, + [SMALL_STATE(3125)] = 90081, + [SMALL_STATE(3126)] = 90101, + [SMALL_STATE(3127)] = 90121, + [SMALL_STATE(3128)] = 90141, + [SMALL_STATE(3129)] = 90159, + [SMALL_STATE(3130)] = 90179, + [SMALL_STATE(3131)] = 90199, + [SMALL_STATE(3132)] = 90219, + [SMALL_STATE(3133)] = 90235, + [SMALL_STATE(3134)] = 90255, + [SMALL_STATE(3135)] = 90273, + [SMALL_STATE(3136)] = 90293, + [SMALL_STATE(3137)] = 90313, + [SMALL_STATE(3138)] = 90333, + [SMALL_STATE(3139)] = 90351, + [SMALL_STATE(3140)] = 90371, + [SMALL_STATE(3141)] = 90387, + [SMALL_STATE(3142)] = 90407, + [SMALL_STATE(3143)] = 90425, + [SMALL_STATE(3144)] = 90445, + [SMALL_STATE(3145)] = 90465, + [SMALL_STATE(3146)] = 90485, + [SMALL_STATE(3147)] = 90505, + [SMALL_STATE(3148)] = 90525, + [SMALL_STATE(3149)] = 90545, + [SMALL_STATE(3150)] = 90565, + [SMALL_STATE(3151)] = 90585, + [SMALL_STATE(3152)] = 90605, + [SMALL_STATE(3153)] = 90621, + [SMALL_STATE(3154)] = 90641, + [SMALL_STATE(3155)] = 90661, + [SMALL_STATE(3156)] = 90681, + [SMALL_STATE(3157)] = 90698, + [SMALL_STATE(3158)] = 90715, + [SMALL_STATE(3159)] = 90732, + [SMALL_STATE(3160)] = 90749, + [SMALL_STATE(3161)] = 90766, + [SMALL_STATE(3162)] = 90783, + [SMALL_STATE(3163)] = 90800, + [SMALL_STATE(3164)] = 90815, + [SMALL_STATE(3165)] = 90832, + [SMALL_STATE(3166)] = 90849, + [SMALL_STATE(3167)] = 90866, + [SMALL_STATE(3168)] = 90883, + [SMALL_STATE(3169)] = 90900, + [SMALL_STATE(3170)] = 90917, + [SMALL_STATE(3171)] = 90932, + [SMALL_STATE(3172)] = 90949, + [SMALL_STATE(3173)] = 90966, + [SMALL_STATE(3174)] = 90983, + [SMALL_STATE(3175)] = 91000, + [SMALL_STATE(3176)] = 91017, + [SMALL_STATE(3177)] = 91034, + [SMALL_STATE(3178)] = 91049, + [SMALL_STATE(3179)] = 91066, + [SMALL_STATE(3180)] = 91083, + [SMALL_STATE(3181)] = 91100, + [SMALL_STATE(3182)] = 91115, + [SMALL_STATE(3183)] = 91132, + [SMALL_STATE(3184)] = 91147, + [SMALL_STATE(3185)] = 91162, + [SMALL_STATE(3186)] = 91179, + [SMALL_STATE(3187)] = 91196, + [SMALL_STATE(3188)] = 91213, + [SMALL_STATE(3189)] = 91228, + [SMALL_STATE(3190)] = 91245, + [SMALL_STATE(3191)] = 91262, + [SMALL_STATE(3192)] = 91277, + [SMALL_STATE(3193)] = 91294, + [SMALL_STATE(3194)] = 91311, + [SMALL_STATE(3195)] = 91328, + [SMALL_STATE(3196)] = 91345, + [SMALL_STATE(3197)] = 91362, + [SMALL_STATE(3198)] = 91379, + [SMALL_STATE(3199)] = 91396, + [SMALL_STATE(3200)] = 91411, + [SMALL_STATE(3201)] = 91428, + [SMALL_STATE(3202)] = 91445, + [SMALL_STATE(3203)] = 91462, + [SMALL_STATE(3204)] = 91479, + [SMALL_STATE(3205)] = 91496, + [SMALL_STATE(3206)] = 91513, + [SMALL_STATE(3207)] = 91528, + [SMALL_STATE(3208)] = 91545, + [SMALL_STATE(3209)] = 91562, + [SMALL_STATE(3210)] = 91579, + [SMALL_STATE(3211)] = 91596, + [SMALL_STATE(3212)] = 91613, + [SMALL_STATE(3213)] = 91630, + [SMALL_STATE(3214)] = 91647, + [SMALL_STATE(3215)] = 91664, + [SMALL_STATE(3216)] = 91679, + [SMALL_STATE(3217)] = 91694, + [SMALL_STATE(3218)] = 91711, + [SMALL_STATE(3219)] = 91728, + [SMALL_STATE(3220)] = 91743, + [SMALL_STATE(3221)] = 91758, + [SMALL_STATE(3222)] = 91775, + [SMALL_STATE(3223)] = 91790, + [SMALL_STATE(3224)] = 91807, + [SMALL_STATE(3225)] = 91822, + [SMALL_STATE(3226)] = 91839, + [SMALL_STATE(3227)] = 91856, + [SMALL_STATE(3228)] = 91873, + [SMALL_STATE(3229)] = 91890, + [SMALL_STATE(3230)] = 91907, + [SMALL_STATE(3231)] = 91924, + [SMALL_STATE(3232)] = 91941, + [SMALL_STATE(3233)] = 91958, + [SMALL_STATE(3234)] = 91975, + [SMALL_STATE(3235)] = 91990, + [SMALL_STATE(3236)] = 92007, + [SMALL_STATE(3237)] = 92024, + [SMALL_STATE(3238)] = 92041, + [SMALL_STATE(3239)] = 92056, + [SMALL_STATE(3240)] = 92073, + [SMALL_STATE(3241)] = 92090, + [SMALL_STATE(3242)] = 92107, + [SMALL_STATE(3243)] = 92124, + [SMALL_STATE(3244)] = 92141, + [SMALL_STATE(3245)] = 92156, + [SMALL_STATE(3246)] = 92173, + [SMALL_STATE(3247)] = 92190, + [SMALL_STATE(3248)] = 92207, + [SMALL_STATE(3249)] = 92224, + [SMALL_STATE(3250)] = 92241, + [SMALL_STATE(3251)] = 92258, + [SMALL_STATE(3252)] = 92275, + [SMALL_STATE(3253)] = 92292, + [SMALL_STATE(3254)] = 92309, + [SMALL_STATE(3255)] = 92326, + [SMALL_STATE(3256)] = 92343, + [SMALL_STATE(3257)] = 92360, + [SMALL_STATE(3258)] = 92375, + [SMALL_STATE(3259)] = 92390, + [SMALL_STATE(3260)] = 92405, + [SMALL_STATE(3261)] = 92422, + [SMALL_STATE(3262)] = 92439, + [SMALL_STATE(3263)] = 92456, + [SMALL_STATE(3264)] = 92473, + [SMALL_STATE(3265)] = 92490, + [SMALL_STATE(3266)] = 92507, + [SMALL_STATE(3267)] = 92524, + [SMALL_STATE(3268)] = 92541, + [SMALL_STATE(3269)] = 92558, + [SMALL_STATE(3270)] = 92573, + [SMALL_STATE(3271)] = 92588, + [SMALL_STATE(3272)] = 92605, + [SMALL_STATE(3273)] = 92620, + [SMALL_STATE(3274)] = 92637, + [SMALL_STATE(3275)] = 92654, + [SMALL_STATE(3276)] = 92671, + [SMALL_STATE(3277)] = 92688, + [SMALL_STATE(3278)] = 92705, + [SMALL_STATE(3279)] = 92720, + [SMALL_STATE(3280)] = 92737, + [SMALL_STATE(3281)] = 92754, + [SMALL_STATE(3282)] = 92771, + [SMALL_STATE(3283)] = 92788, + [SMALL_STATE(3284)] = 92805, + [SMALL_STATE(3285)] = 92822, + [SMALL_STATE(3286)] = 92839, + [SMALL_STATE(3287)] = 92856, + [SMALL_STATE(3288)] = 92873, + [SMALL_STATE(3289)] = 92890, + [SMALL_STATE(3290)] = 92907, + [SMALL_STATE(3291)] = 92924, + [SMALL_STATE(3292)] = 92941, + [SMALL_STATE(3293)] = 92958, + [SMALL_STATE(3294)] = 92975, + [SMALL_STATE(3295)] = 92992, + [SMALL_STATE(3296)] = 93009, + [SMALL_STATE(3297)] = 93026, + [SMALL_STATE(3298)] = 93041, + [SMALL_STATE(3299)] = 93058, + [SMALL_STATE(3300)] = 93075, + [SMALL_STATE(3301)] = 93090, + [SMALL_STATE(3302)] = 93107, + [SMALL_STATE(3303)] = 93124, + [SMALL_STATE(3304)] = 93141, + [SMALL_STATE(3305)] = 93156, + [SMALL_STATE(3306)] = 93173, + [SMALL_STATE(3307)] = 93190, + [SMALL_STATE(3308)] = 93207, + [SMALL_STATE(3309)] = 93224, + [SMALL_STATE(3310)] = 93241, + [SMALL_STATE(3311)] = 93258, + [SMALL_STATE(3312)] = 93273, + [SMALL_STATE(3313)] = 93290, + [SMALL_STATE(3314)] = 93307, + [SMALL_STATE(3315)] = 93324, + [SMALL_STATE(3316)] = 93341, + [SMALL_STATE(3317)] = 93356, + [SMALL_STATE(3318)] = 93373, + [SMALL_STATE(3319)] = 93390, + [SMALL_STATE(3320)] = 93407, + [SMALL_STATE(3321)] = 93424, + [SMALL_STATE(3322)] = 93441, + [SMALL_STATE(3323)] = 93456, + [SMALL_STATE(3324)] = 93473, + [SMALL_STATE(3325)] = 93490, + [SMALL_STATE(3326)] = 93507, + [SMALL_STATE(3327)] = 93522, + [SMALL_STATE(3328)] = 93539, + [SMALL_STATE(3329)] = 93556, + [SMALL_STATE(3330)] = 93573, + [SMALL_STATE(3331)] = 93590, + [SMALL_STATE(3332)] = 93607, + [SMALL_STATE(3333)] = 93624, + [SMALL_STATE(3334)] = 93639, + [SMALL_STATE(3335)] = 93656, + [SMALL_STATE(3336)] = 93673, + [SMALL_STATE(3337)] = 93690, + [SMALL_STATE(3338)] = 93707, + [SMALL_STATE(3339)] = 93724, + [SMALL_STATE(3340)] = 93739, + [SMALL_STATE(3341)] = 93756, + [SMALL_STATE(3342)] = 93771, + [SMALL_STATE(3343)] = 93788, + [SMALL_STATE(3344)] = 93805, + [SMALL_STATE(3345)] = 93822, + [SMALL_STATE(3346)] = 93839, + [SMALL_STATE(3347)] = 93856, + [SMALL_STATE(3348)] = 93873, + [SMALL_STATE(3349)] = 93888, + [SMALL_STATE(3350)] = 93905, + [SMALL_STATE(3351)] = 93922, + [SMALL_STATE(3352)] = 93939, + [SMALL_STATE(3353)] = 93956, + [SMALL_STATE(3354)] = 93973, + [SMALL_STATE(3355)] = 93990, + [SMALL_STATE(3356)] = 94007, + [SMALL_STATE(3357)] = 94024, + [SMALL_STATE(3358)] = 94041, + [SMALL_STATE(3359)] = 94058, + [SMALL_STATE(3360)] = 94075, + [SMALL_STATE(3361)] = 94092, + [SMALL_STATE(3362)] = 94107, + [SMALL_STATE(3363)] = 94124, + [SMALL_STATE(3364)] = 94139, + [SMALL_STATE(3365)] = 94156, + [SMALL_STATE(3366)] = 94171, + [SMALL_STATE(3367)] = 94188, + [SMALL_STATE(3368)] = 94205, + [SMALL_STATE(3369)] = 94222, + [SMALL_STATE(3370)] = 94239, + [SMALL_STATE(3371)] = 94254, + [SMALL_STATE(3372)] = 94271, + [SMALL_STATE(3373)] = 94286, + [SMALL_STATE(3374)] = 94303, + [SMALL_STATE(3375)] = 94320, + [SMALL_STATE(3376)] = 94337, + [SMALL_STATE(3377)] = 94354, + [SMALL_STATE(3378)] = 94371, + [SMALL_STATE(3379)] = 94388, + [SMALL_STATE(3380)] = 94403, + [SMALL_STATE(3381)] = 94420, + [SMALL_STATE(3382)] = 94437, + [SMALL_STATE(3383)] = 94452, + [SMALL_STATE(3384)] = 94469, + [SMALL_STATE(3385)] = 94486, + [SMALL_STATE(3386)] = 94503, + [SMALL_STATE(3387)] = 94520, + [SMALL_STATE(3388)] = 94537, + [SMALL_STATE(3389)] = 94554, + [SMALL_STATE(3390)] = 94571, + [SMALL_STATE(3391)] = 94586, + [SMALL_STATE(3392)] = 94603, + [SMALL_STATE(3393)] = 94618, + [SMALL_STATE(3394)] = 94635, + [SMALL_STATE(3395)] = 94652, + [SMALL_STATE(3396)] = 94669, + [SMALL_STATE(3397)] = 94686, + [SMALL_STATE(3398)] = 94701, + [SMALL_STATE(3399)] = 94718, + [SMALL_STATE(3400)] = 94735, + [SMALL_STATE(3401)] = 94752, + [SMALL_STATE(3402)] = 94769, + [SMALL_STATE(3403)] = 94786, + [SMALL_STATE(3404)] = 94803, + [SMALL_STATE(3405)] = 94820, + [SMALL_STATE(3406)] = 94837, + [SMALL_STATE(3407)] = 94854, + [SMALL_STATE(3408)] = 94871, + [SMALL_STATE(3409)] = 94888, + [SMALL_STATE(3410)] = 94903, + [SMALL_STATE(3411)] = 94920, + [SMALL_STATE(3412)] = 94935, + [SMALL_STATE(3413)] = 94950, + [SMALL_STATE(3414)] = 94967, + [SMALL_STATE(3415)] = 94982, + [SMALL_STATE(3416)] = 94999, + [SMALL_STATE(3417)] = 95014, + [SMALL_STATE(3418)] = 95031, + [SMALL_STATE(3419)] = 95048, + [SMALL_STATE(3420)] = 95065, + [SMALL_STATE(3421)] = 95082, + [SMALL_STATE(3422)] = 95099, + [SMALL_STATE(3423)] = 95116, + [SMALL_STATE(3424)] = 95133, + [SMALL_STATE(3425)] = 95150, + [SMALL_STATE(3426)] = 95167, + [SMALL_STATE(3427)] = 95184, + [SMALL_STATE(3428)] = 95201, + [SMALL_STATE(3429)] = 95216, + [SMALL_STATE(3430)] = 95233, + [SMALL_STATE(3431)] = 95250, + [SMALL_STATE(3432)] = 95267, + [SMALL_STATE(3433)] = 95284, + [SMALL_STATE(3434)] = 95301, + [SMALL_STATE(3435)] = 95318, + [SMALL_STATE(3436)] = 95333, + [SMALL_STATE(3437)] = 95350, + [SMALL_STATE(3438)] = 95367, + [SMALL_STATE(3439)] = 95384, + [SMALL_STATE(3440)] = 95401, + [SMALL_STATE(3441)] = 95418, + [SMALL_STATE(3442)] = 95435, + [SMALL_STATE(3443)] = 95452, + [SMALL_STATE(3444)] = 95469, + [SMALL_STATE(3445)] = 95486, + [SMALL_STATE(3446)] = 95503, + [SMALL_STATE(3447)] = 95520, + [SMALL_STATE(3448)] = 95535, + [SMALL_STATE(3449)] = 95550, + [SMALL_STATE(3450)] = 95567, + [SMALL_STATE(3451)] = 95584, + [SMALL_STATE(3452)] = 95599, + [SMALL_STATE(3453)] = 95616, + [SMALL_STATE(3454)] = 95633, + [SMALL_STATE(3455)] = 95650, + [SMALL_STATE(3456)] = 95667, + [SMALL_STATE(3457)] = 95684, + [SMALL_STATE(3458)] = 95701, + [SMALL_STATE(3459)] = 95716, + [SMALL_STATE(3460)] = 95730, + [SMALL_STATE(3461)] = 95744, + [SMALL_STATE(3462)] = 95758, + [SMALL_STATE(3463)] = 95772, + [SMALL_STATE(3464)] = 95786, + [SMALL_STATE(3465)] = 95800, + [SMALL_STATE(3466)] = 95814, + [SMALL_STATE(3467)] = 95828, + [SMALL_STATE(3468)] = 95842, + [SMALL_STATE(3469)] = 95856, + [SMALL_STATE(3470)] = 95870, + [SMALL_STATE(3471)] = 95884, + [SMALL_STATE(3472)] = 95898, + [SMALL_STATE(3473)] = 95912, + [SMALL_STATE(3474)] = 95926, + [SMALL_STATE(3475)] = 95940, + [SMALL_STATE(3476)] = 95954, + [SMALL_STATE(3477)] = 95968, + [SMALL_STATE(3478)] = 95982, + [SMALL_STATE(3479)] = 95996, + [SMALL_STATE(3480)] = 96010, + [SMALL_STATE(3481)] = 96024, + [SMALL_STATE(3482)] = 96038, + [SMALL_STATE(3483)] = 96052, + [SMALL_STATE(3484)] = 96066, + [SMALL_STATE(3485)] = 96080, + [SMALL_STATE(3486)] = 96094, + [SMALL_STATE(3487)] = 96108, + [SMALL_STATE(3488)] = 96122, + [SMALL_STATE(3489)] = 96136, + [SMALL_STATE(3490)] = 96150, + [SMALL_STATE(3491)] = 96164, + [SMALL_STATE(3492)] = 96178, + [SMALL_STATE(3493)] = 96192, + [SMALL_STATE(3494)] = 96206, + [SMALL_STATE(3495)] = 96220, + [SMALL_STATE(3496)] = 96234, + [SMALL_STATE(3497)] = 96248, + [SMALL_STATE(3498)] = 96262, + [SMALL_STATE(3499)] = 96276, + [SMALL_STATE(3500)] = 96290, + [SMALL_STATE(3501)] = 96304, + [SMALL_STATE(3502)] = 96318, + [SMALL_STATE(3503)] = 96332, + [SMALL_STATE(3504)] = 96346, + [SMALL_STATE(3505)] = 96360, + [SMALL_STATE(3506)] = 96374, + [SMALL_STATE(3507)] = 96388, + [SMALL_STATE(3508)] = 96402, + [SMALL_STATE(3509)] = 96416, + [SMALL_STATE(3510)] = 96430, + [SMALL_STATE(3511)] = 96444, + [SMALL_STATE(3512)] = 96458, + [SMALL_STATE(3513)] = 96472, + [SMALL_STATE(3514)] = 96486, + [SMALL_STATE(3515)] = 96500, + [SMALL_STATE(3516)] = 96514, + [SMALL_STATE(3517)] = 96528, + [SMALL_STATE(3518)] = 96542, + [SMALL_STATE(3519)] = 96556, + [SMALL_STATE(3520)] = 96570, + [SMALL_STATE(3521)] = 96584, + [SMALL_STATE(3522)] = 96598, + [SMALL_STATE(3523)] = 96612, + [SMALL_STATE(3524)] = 96626, + [SMALL_STATE(3525)] = 96640, + [SMALL_STATE(3526)] = 96654, + [SMALL_STATE(3527)] = 96668, + [SMALL_STATE(3528)] = 96682, + [SMALL_STATE(3529)] = 96696, + [SMALL_STATE(3530)] = 96710, + [SMALL_STATE(3531)] = 96724, + [SMALL_STATE(3532)] = 96738, + [SMALL_STATE(3533)] = 96752, + [SMALL_STATE(3534)] = 96766, + [SMALL_STATE(3535)] = 96780, + [SMALL_STATE(3536)] = 96794, + [SMALL_STATE(3537)] = 96808, + [SMALL_STATE(3538)] = 96822, + [SMALL_STATE(3539)] = 96836, + [SMALL_STATE(3540)] = 96850, + [SMALL_STATE(3541)] = 96864, + [SMALL_STATE(3542)] = 96878, + [SMALL_STATE(3543)] = 96892, + [SMALL_STATE(3544)] = 96906, + [SMALL_STATE(3545)] = 96920, + [SMALL_STATE(3546)] = 96934, + [SMALL_STATE(3547)] = 96948, + [SMALL_STATE(3548)] = 96962, + [SMALL_STATE(3549)] = 96976, + [SMALL_STATE(3550)] = 96990, + [SMALL_STATE(3551)] = 97004, + [SMALL_STATE(3552)] = 97018, + [SMALL_STATE(3553)] = 97032, + [SMALL_STATE(3554)] = 97046, + [SMALL_STATE(3555)] = 97060, + [SMALL_STATE(3556)] = 97074, + [SMALL_STATE(3557)] = 97088, + [SMALL_STATE(3558)] = 97102, + [SMALL_STATE(3559)] = 97116, + [SMALL_STATE(3560)] = 97130, + [SMALL_STATE(3561)] = 97144, + [SMALL_STATE(3562)] = 97158, + [SMALL_STATE(3563)] = 97172, + [SMALL_STATE(3564)] = 97186, + [SMALL_STATE(3565)] = 97200, + [SMALL_STATE(3566)] = 97214, + [SMALL_STATE(3567)] = 97228, + [SMALL_STATE(3568)] = 97242, + [SMALL_STATE(3569)] = 97256, + [SMALL_STATE(3570)] = 97270, + [SMALL_STATE(3571)] = 97284, + [SMALL_STATE(3572)] = 97298, + [SMALL_STATE(3573)] = 97312, + [SMALL_STATE(3574)] = 97326, + [SMALL_STATE(3575)] = 97340, + [SMALL_STATE(3576)] = 97354, + [SMALL_STATE(3577)] = 97368, + [SMALL_STATE(3578)] = 97382, + [SMALL_STATE(3579)] = 97396, + [SMALL_STATE(3580)] = 97410, + [SMALL_STATE(3581)] = 97424, + [SMALL_STATE(3582)] = 97438, + [SMALL_STATE(3583)] = 97452, + [SMALL_STATE(3584)] = 97466, + [SMALL_STATE(3585)] = 97480, + [SMALL_STATE(3586)] = 97494, + [SMALL_STATE(3587)] = 97508, + [SMALL_STATE(3588)] = 97522, + [SMALL_STATE(3589)] = 97536, + [SMALL_STATE(3590)] = 97550, + [SMALL_STATE(3591)] = 97564, + [SMALL_STATE(3592)] = 97578, + [SMALL_STATE(3593)] = 97592, + [SMALL_STATE(3594)] = 97606, + [SMALL_STATE(3595)] = 97620, + [SMALL_STATE(3596)] = 97634, + [SMALL_STATE(3597)] = 97648, + [SMALL_STATE(3598)] = 97662, + [SMALL_STATE(3599)] = 97676, + [SMALL_STATE(3600)] = 97690, + [SMALL_STATE(3601)] = 97704, + [SMALL_STATE(3602)] = 97718, + [SMALL_STATE(3603)] = 97732, + [SMALL_STATE(3604)] = 97746, + [SMALL_STATE(3605)] = 97760, + [SMALL_STATE(3606)] = 97774, + [SMALL_STATE(3607)] = 97788, + [SMALL_STATE(3608)] = 97802, + [SMALL_STATE(3609)] = 97816, + [SMALL_STATE(3610)] = 97830, + [SMALL_STATE(3611)] = 97844, + [SMALL_STATE(3612)] = 97858, + [SMALL_STATE(3613)] = 97872, + [SMALL_STATE(3614)] = 97886, + [SMALL_STATE(3615)] = 97900, + [SMALL_STATE(3616)] = 97914, + [SMALL_STATE(3617)] = 97928, + [SMALL_STATE(3618)] = 97942, + [SMALL_STATE(3619)] = 97956, + [SMALL_STATE(3620)] = 97970, + [SMALL_STATE(3621)] = 97984, + [SMALL_STATE(3622)] = 97998, + [SMALL_STATE(3623)] = 98012, + [SMALL_STATE(3624)] = 98026, + [SMALL_STATE(3625)] = 98040, + [SMALL_STATE(3626)] = 98054, + [SMALL_STATE(3627)] = 98068, + [SMALL_STATE(3628)] = 98082, + [SMALL_STATE(3629)] = 98096, + [SMALL_STATE(3630)] = 98110, + [SMALL_STATE(3631)] = 98124, + [SMALL_STATE(3632)] = 98138, + [SMALL_STATE(3633)] = 98152, + [SMALL_STATE(3634)] = 98166, + [SMALL_STATE(3635)] = 98180, + [SMALL_STATE(3636)] = 98194, + [SMALL_STATE(3637)] = 98208, + [SMALL_STATE(3638)] = 98222, + [SMALL_STATE(3639)] = 98236, + [SMALL_STATE(3640)] = 98250, + [SMALL_STATE(3641)] = 98264, + [SMALL_STATE(3642)] = 98278, + [SMALL_STATE(3643)] = 98292, + [SMALL_STATE(3644)] = 98306, + [SMALL_STATE(3645)] = 98320, + [SMALL_STATE(3646)] = 98334, + [SMALL_STATE(3647)] = 98348, + [SMALL_STATE(3648)] = 98362, + [SMALL_STATE(3649)] = 98376, + [SMALL_STATE(3650)] = 98390, + [SMALL_STATE(3651)] = 98404, + [SMALL_STATE(3652)] = 98418, + [SMALL_STATE(3653)] = 98432, + [SMALL_STATE(3654)] = 98446, + [SMALL_STATE(3655)] = 98460, + [SMALL_STATE(3656)] = 98474, + [SMALL_STATE(3657)] = 98488, + [SMALL_STATE(3658)] = 98502, + [SMALL_STATE(3659)] = 98516, + [SMALL_STATE(3660)] = 98530, + [SMALL_STATE(3661)] = 98544, + [SMALL_STATE(3662)] = 98558, + [SMALL_STATE(3663)] = 98572, + [SMALL_STATE(3664)] = 98586, + [SMALL_STATE(3665)] = 98600, + [SMALL_STATE(3666)] = 98614, + [SMALL_STATE(3667)] = 98628, + [SMALL_STATE(3668)] = 98642, + [SMALL_STATE(3669)] = 98656, + [SMALL_STATE(3670)] = 98670, + [SMALL_STATE(3671)] = 98684, + [SMALL_STATE(3672)] = 98698, + [SMALL_STATE(3673)] = 98712, + [SMALL_STATE(3674)] = 98726, + [SMALL_STATE(3675)] = 98740, + [SMALL_STATE(3676)] = 98754, + [SMALL_STATE(3677)] = 98768, + [SMALL_STATE(3678)] = 98782, + [SMALL_STATE(3679)] = 98796, + [SMALL_STATE(3680)] = 98810, + [SMALL_STATE(3681)] = 98824, + [SMALL_STATE(3682)] = 98838, + [SMALL_STATE(3683)] = 98852, + [SMALL_STATE(3684)] = 98866, + [SMALL_STATE(3685)] = 98880, + [SMALL_STATE(3686)] = 98894, + [SMALL_STATE(3687)] = 98908, + [SMALL_STATE(3688)] = 98922, + [SMALL_STATE(3689)] = 98936, + [SMALL_STATE(3690)] = 98950, + [SMALL_STATE(3691)] = 98964, + [SMALL_STATE(3692)] = 98978, + [SMALL_STATE(3693)] = 98992, + [SMALL_STATE(3694)] = 99006, + [SMALL_STATE(3695)] = 99020, + [SMALL_STATE(3696)] = 99034, + [SMALL_STATE(3697)] = 99048, + [SMALL_STATE(3698)] = 99062, + [SMALL_STATE(3699)] = 99076, + [SMALL_STATE(3700)] = 99090, + [SMALL_STATE(3701)] = 99104, + [SMALL_STATE(3702)] = 99118, + [SMALL_STATE(3703)] = 99132, + [SMALL_STATE(3704)] = 99146, + [SMALL_STATE(3705)] = 99160, + [SMALL_STATE(3706)] = 99174, + [SMALL_STATE(3707)] = 99188, + [SMALL_STATE(3708)] = 99202, + [SMALL_STATE(3709)] = 99216, + [SMALL_STATE(3710)] = 99230, + [SMALL_STATE(3711)] = 99244, + [SMALL_STATE(3712)] = 99258, + [SMALL_STATE(3713)] = 99272, + [SMALL_STATE(3714)] = 99286, + [SMALL_STATE(3715)] = 99300, + [SMALL_STATE(3716)] = 99314, + [SMALL_STATE(3717)] = 99328, + [SMALL_STATE(3718)] = 99342, + [SMALL_STATE(3719)] = 99356, + [SMALL_STATE(3720)] = 99370, + [SMALL_STATE(3721)] = 99384, + [SMALL_STATE(3722)] = 99398, + [SMALL_STATE(3723)] = 99412, + [SMALL_STATE(3724)] = 99426, + [SMALL_STATE(3725)] = 99440, + [SMALL_STATE(3726)] = 99454, + [SMALL_STATE(3727)] = 99468, + [SMALL_STATE(3728)] = 99482, + [SMALL_STATE(3729)] = 99496, + [SMALL_STATE(3730)] = 99510, + [SMALL_STATE(3731)] = 99524, + [SMALL_STATE(3732)] = 99538, + [SMALL_STATE(3733)] = 99552, + [SMALL_STATE(3734)] = 99566, + [SMALL_STATE(3735)] = 99580, + [SMALL_STATE(3736)] = 99594, + [SMALL_STATE(3737)] = 99608, + [SMALL_STATE(3738)] = 99622, + [SMALL_STATE(3739)] = 99636, + [SMALL_STATE(3740)] = 99650, + [SMALL_STATE(3741)] = 99664, + [SMALL_STATE(3742)] = 99678, + [SMALL_STATE(3743)] = 99692, + [SMALL_STATE(3744)] = 99706, + [SMALL_STATE(3745)] = 99720, + [SMALL_STATE(3746)] = 99734, + [SMALL_STATE(3747)] = 99748, + [SMALL_STATE(3748)] = 99762, + [SMALL_STATE(3749)] = 99776, + [SMALL_STATE(3750)] = 99790, + [SMALL_STATE(3751)] = 99804, + [SMALL_STATE(3752)] = 99818, + [SMALL_STATE(3753)] = 99832, + [SMALL_STATE(3754)] = 99846, + [SMALL_STATE(3755)] = 99860, + [SMALL_STATE(3756)] = 99874, + [SMALL_STATE(3757)] = 99888, + [SMALL_STATE(3758)] = 99902, + [SMALL_STATE(3759)] = 99916, + [SMALL_STATE(3760)] = 99930, + [SMALL_STATE(3761)] = 99944, + [SMALL_STATE(3762)] = 99958, + [SMALL_STATE(3763)] = 99972, + [SMALL_STATE(3764)] = 99986, + [SMALL_STATE(3765)] = 100000, + [SMALL_STATE(3766)] = 100014, + [SMALL_STATE(3767)] = 100028, + [SMALL_STATE(3768)] = 100042, + [SMALL_STATE(3769)] = 100056, + [SMALL_STATE(3770)] = 100070, + [SMALL_STATE(3771)] = 100084, + [SMALL_STATE(3772)] = 100098, + [SMALL_STATE(3773)] = 100112, + [SMALL_STATE(3774)] = 100126, + [SMALL_STATE(3775)] = 100140, + [SMALL_STATE(3776)] = 100154, + [SMALL_STATE(3777)] = 100168, + [SMALL_STATE(3778)] = 100182, + [SMALL_STATE(3779)] = 100186, + [SMALL_STATE(3780)] = 100190, + [SMALL_STATE(3781)] = 100194, + [SMALL_STATE(3782)] = 100198, + [SMALL_STATE(3783)] = 100202, + [SMALL_STATE(3784)] = 100206, }; 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(2353), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [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(2739), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), [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(1552), - [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(2579), - [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(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(1532), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2732), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(158), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(249), [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(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(3194), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2114), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), - [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(3580), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3186), - [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(2739), - [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(3476), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2015), - [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(2431), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3520), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3588), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3538), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2090), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1911), - [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(2129), - [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(3241), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2760), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1473), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2635), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3551), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2048), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [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(1637), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3375), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3452), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1101), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3191), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2827), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3621), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1919), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2141), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2638), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2055), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [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(3447), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [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(1593), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [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(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), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(71), [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(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(3480), - [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(2633), - [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(2738), - [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(3582), - [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(3634), - [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(2633), - [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(2662), - [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(3480), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [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(3436), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [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(2738), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [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(2628), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [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(1795), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [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), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(72), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3540), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(154), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(103), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(108), + [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), + [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1100), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(158), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(144), [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(11), - [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(1532), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(221), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(12), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(290), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1545), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(249), [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(810), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(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(3194), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3435), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2534), - [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(2687), - [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(1428), - [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), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(877), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3375), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3592), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2574), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2603), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1409), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1508), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(843), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1060), [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(187), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2696), - [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(2957), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2625), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2598), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(365), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3001), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2842), [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3241), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2720), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1473), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2635), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1425), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1530), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3551), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1530), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3581), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [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(1524), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3160), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2599), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1491), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2731), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1424), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1544), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3460), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1544), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3543), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(177), [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [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(1479), - [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(1699), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 208), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [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(1816), - [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(1703), - [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(1890), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [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(1782), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [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(1440), - [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(1518), - [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(1416), - [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(1525), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [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(2068), - [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(1437), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [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(3209), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [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(1532), - [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(3194), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), - [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2534), - [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(2687), - [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(1428), - [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(2696), - [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(2957), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2625), - [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(3241), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2720), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1473), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2635), - [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), - [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3551), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3581), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [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(2736), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [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(2373), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [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}}, 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(1681), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [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(2466), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [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(2521), - [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(2552), - [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(2553), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [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, 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(2125), - [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(2025), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [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 = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2075), - [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(2309), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3319), - [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(3108), - [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(1556), - [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(3411), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2742), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), - [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(2389), - [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2397), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2587), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2587), - [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(1970), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [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(3583), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [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(3254), - [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(2793), - [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(3513), - [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(3264), - [2410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3391), - [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2447), - [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2326), - [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2298), - [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3426), - [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3392), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3173), - [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(3431), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2015), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), - [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3432), - [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), - [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3434), - [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2903), - [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), - [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1933), - [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), - [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2067), - [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [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(3254), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [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(2165), - [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_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}}, 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(3091), - [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(2178), - [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(2912), - [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(2174), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [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(3296), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [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(3152), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [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(3325), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [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(2965), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [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(2105), - [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(2104), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [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(2130), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [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(2118), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [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(2565), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [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(2580), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [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(2643), - [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(3411), - [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(2533), - [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(3303), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [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(3485), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [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(2111), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [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(2697), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [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(2727), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [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(2604), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [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(2375), - [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(2781), - [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}}, REDUCE(sym_arguments, 6, 0, 0), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 153), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 153), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 157), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 157), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 159), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 159), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 160), - [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 160), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), - [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_removed_trait_bound, 2, 0, 0), - [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 183), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 183), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 41), - [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 41), - [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 134), - [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 134), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), - [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 209), - [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 209), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 210), - [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 210), - [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), - [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), - [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), - [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 209), - [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 209), - [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), - [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 113), - [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 113), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 209), - [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 209), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), - [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [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_struct_expression, 2, 0, 11), - [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), - [3994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [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}}, SHIFT(2443), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2691), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 133), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 133), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3376), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(158), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(249), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3375), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3592), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2574), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2603), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1508), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1060), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2842), + [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3160), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2731), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1544), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 34), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 34), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 44), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 44), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 45), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 153), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 153), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 32), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 32), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 254), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 254), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 83), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 83), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 125), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 125), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 39), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 39), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 182), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 182), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2097), + [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3348), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(839), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3065), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1116), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3273), + [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2705), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), + [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2743), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), + [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 126), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 126), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 196), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 251), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 251), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 252), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 252), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 206), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 206), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 253), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 253), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 121), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 121), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 138), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 138), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 215), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 215), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 257), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 257), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 220), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 220), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 222), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 222), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 260), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 260), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 261), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 261), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 232), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 232), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 233), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 233), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 265), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 265), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 266), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 266), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 273), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 273), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 274), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 274), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 243), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 243), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 275), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 275), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 263), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 263), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 276), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 276), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 245), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 245), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 246), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 246), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 277), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 277), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 278), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 278), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 251), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 251), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 279), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 279), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 280), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 280), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 282), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 282), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 283), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 283), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 267), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 267), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 284), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 284), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 285), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 285), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 286), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 286), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 277), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 277), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 287), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 287), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 280), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 280), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 289), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 289), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 139), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 139), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 290), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 290), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 291), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 291), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 287), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 287), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 292), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 292), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 121), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 121), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 140), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 140), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 118), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 118), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 148), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 148), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 149), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 149), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 143), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 143), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 145), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 145), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 143), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 143), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 150), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 150), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 145), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 145), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 143), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 143), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 145), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 145), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 151), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 151), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 152), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 33), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 33), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 121), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 121), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 122), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 122), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 123), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 123), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 81), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 81), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 128), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 128), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 86), + [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 86), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 122), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 122), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 165), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 165), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 166), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 166), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 37), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 37), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 128), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 128), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 38), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 38), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 131), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 131), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 179), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 179), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 180), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 180), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 40), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 40), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 184), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 184), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 80), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 80), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 189), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 189), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 138), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 138), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 139), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 139), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 140), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 140), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 192), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 192), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 33), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 33), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 33), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 33), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 33), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 33), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 43), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 248), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 248), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 199), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 199), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 200), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 200), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 148), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 148), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 184), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 184), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 194), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 194), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 50), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 145), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 145), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 194), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 194), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 202), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 202), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 250), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 194), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 194), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 203), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 203), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 206), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 206), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 207), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 207), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 133), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 133), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 118), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 118), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 212), + [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 212), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 33), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 33), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 215), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 215), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 79), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 79), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 81), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 81), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 216), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 216), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 82), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 82), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 166), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 166), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 218), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 218), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 86), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 86), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 89), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 89), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 174), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 174), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 33), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 33), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 79), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 79), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 79), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 79), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 79), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 79), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 226), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 226), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 80), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 80), + [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3391), + [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1114), + [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), + [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2316), + [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3666), + [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), + [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3381), + [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3679), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), + [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3122), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3680), + [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), + [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), + [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2279), + [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1930), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3695), + [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 121), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 121), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 229), + [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 229), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), + [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), + [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), + [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 212), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 212), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 190), + [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 190), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 232), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 232), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 233), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 233), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 234), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 234), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), + [2976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), + [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), + [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), + [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 241), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 241), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 199), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 199), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 242), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 242), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 243), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 243), + [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), + [3012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), + [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 145), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 145), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 202), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 202), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 245), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 245), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 246), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 246), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 247), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 247), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 190), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 190), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), + [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 182), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 182), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 182), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 126), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 126), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 126), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 47), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), + [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 48), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 48), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 135), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 135), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 154), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 154), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 211), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 211), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 185), + [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 185), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), + [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), + [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), + [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), + [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 41), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 41), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 49), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 158), + [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 158), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), + [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), + [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 86), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 90), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 90), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), + [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 134), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 134), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2789), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3246), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 164), [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 256), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 145), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 195), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 180), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 162), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 196), - [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 212), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 213), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 125), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [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(1642), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 125), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 116), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [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(2348), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [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(2775), - [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(2447), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [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(2614), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [4737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), - [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [4773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), - [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), - [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), - [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(81), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [5063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(863), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [5172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2447), - [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2295), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 36), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 229), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 264), - [5491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), - [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 229), - [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), - [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 264), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [5608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2020), - [5611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(377), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), - [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 184), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 118), - [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 184), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 154), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 207), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [5849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 117), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [6003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3052), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), - [6090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2205), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), - [6167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(451), - [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 185), - [6186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 185), SHIFT_REPEAT(832), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 155), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 230), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 186), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2282), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 182), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 256), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 197), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 213), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 146), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 126), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 126), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [4538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), + [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 35), + [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 46), REDUCE(sym_scoped_type_identifier, 3, 0, 47), + [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [4929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [5062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2288), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 36), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 230), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 264), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 264), + [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 36), + [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 186), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), + [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 230), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 186), + [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 119), + [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), + [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2025), + [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(257), + [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 155), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 209), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), + [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [6017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 118), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), + [6168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 187), SHIFT_REPEAT(791), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 188), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), + [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2370), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 254), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), - [6374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3042), - [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(398), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3336), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2277), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(782), - [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 208), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [6547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(881), - [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 170), - [6556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1909), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 126), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [6629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2102), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), - [6668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 255), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 211), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [6726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 158), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [6844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [6862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [7018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [7072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [7084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 181), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [7328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [7336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [7362] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), - [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2308), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 210), + [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 172), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(292), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2230), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), + [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 42), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3194), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), + [6556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(948), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 84), + [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 231), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 127), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2130), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2274), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 255), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 40), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [6730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 212), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [6784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [6800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 159), + [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 85), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 160), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 38), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [7034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), + [7036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [7058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7062] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 183), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [7154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [7178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -200163,10 +202080,10 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_float_literal] = true, }, [7] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token__line_doc_content] = true, }, [8] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, [9] = { [ts_external_token_raw_string_literal_content] = true, diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index e02ead59..d254ba18 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -266,6 +266,31 @@ fn triples(a: impl B) -> impl Iterator { (primitive_type)))))) (block))) +================================================================================ +Impl with lifetimes first +================================================================================ + +fn foo<'a>(x: impl 'a + Clone) {} + +-------------------------------------------------------------------------------- + +(source_file + (function_item + (identifier) + (type_parameters + (lifetime_parameter + (lifetime + (identifier)))) + (parameters + (parameter + (identifier) + (abstract_type + (bounded_type + (lifetime + (identifier)) + (type_identifier))))) + (block))) + ================================================================================ Functions with precise capture syntax ================================================================================